Changeset 269:25d42404b5b7
- Timestamp:
- 12/12/10 02:35:24 (2 years ago)
- Branch:
- default
- Files:
-
- 17 added
- 23 edited
-
cyclope/apps/articles/dbgettext_registration.py (modified) (1 diff)
-
cyclope/apps/newsletter/__init__.py (added)
-
cyclope/apps/newsletter/admin.py (added)
-
cyclope/apps/newsletter/frontend_views.py (added)
-
cyclope/apps/newsletter/migrations/0001_initial.py (added)
-
cyclope/apps/newsletter/migrations/__init__.py (added)
-
cyclope/apps/newsletter/models.py (added)
-
cyclope/apps/newsletter/search_indexes.py (added)
-
cyclope/apps/newsletter/templates/admin/newsletter_change_form.html (added)
-
cyclope/apps/newsletter/templates/newsletter/mail_sent.html (added)
-
cyclope/apps/newsletter/templates/newsletter/send_failed.html (added)
-
cyclope/apps/newsletter/urls.py (added)
-
cyclope/apps/newsletter/views.py (added)
-
cyclope/core/collections/admin.py (modified) (2 diffs)
-
cyclope/core/collections/models.py (modified) (1 diff)
-
cyclope/core/frontend/__init__.py (modified) (2 diffs)
-
cyclope/core/frontend/sites.py (modified) (1 diff)
-
cyclope/dashboard.py (modified) (1 diff)
-
cyclope/default_settings.py (modified) (3 diffs)
-
cyclope/default_urls.py (modified) (2 diffs)
-
cyclope/locale/es/LC_MESSAGES/django.mo (modified) (previous)
-
cyclope/locale/es/LC_MESSAGES/django.po (modified) (25 diffs)
-
cyclope/locale/fr/LC_MESSAGES/django.mo (added)
-
cyclope/locale/fr/LC_MESSAGES/django.po (added)
-
cyclope/locale/it/LC_MESSAGES/django.mo (modified) (previous)
-
cyclope/locale/it/LC_MESSAGES/django.po (modified) (24 diffs)
-
cyclope/locale/pt/LC_MESSAGES/django.mo (modified) (previous)
-
cyclope/locale/pt/LC_MESSAGES/django.po (modified) (24 diffs)
-
cyclope/media/css/admin_tools_theming.css (modified) (1 diff)
-
cyclope/migrations/0012_auto__add_field_sitesettings_newsletter_collection.py (added)
-
cyclope/models.py (modified) (2 diffs)
-
cyclope/templates/admin/change_list.html (modified) (1 diff)
-
cyclope/templates/cyclope/themes/neutronica/__init__.py (modified) (1 diff)
-
cyclope/templates/cyclope/themes/neutronica/newsletter.html (added)
-
cyclope/templates/search/indexes/newsletter/newsletter_text.txt (added)
-
cyclope/templatetags/layout.py (modified) (1 diff)
-
cyclope/utils/__init__.py (modified) (1 diff)
-
cyclope/views.py (modified) (1 diff)
-
demo/cyclope_project/db/site.db (modified) (previous)
-
demo/cyclope_project/media/filebrowser (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cyclope/apps/articles/dbgettext_registration.py
r219 r269 3 3 from django.db.models import get_model 4 4 5 #from cyclope.apps.articles.models import Article6 5 from models import Article 7 6 -
cyclope/core/collections/admin.py
r265 r269 79 79 # to allow for a collapsible sub-level 80 80 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'>")) 82 82 categories = Category.tree.filter(collection=collection) 83 83 for category in categories: … … 94 94 'display': _('All')} 95 95 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, 97 100 'query_string': cl.get_query_string({self.lookup_kwarg: val}), 98 101 'display': display} -
cyclope/core/collections/models.py
r232 r269 111 111 verbose_name = _('category') 112 112 verbose_name_plural = _('categories') 113 113 get_latest_by = "pk" 114 114 115 mptt.register(Category) 115 116 -
cyclope/core/frontend/__init__.py
r261 r269 85 85 host_template = template_for_request(request) 86 86 87 req_context = RequestContext(request, {'host_template': host_template,87 req_context = RequestContext(request, {'host_template': host_template, 88 88 'region_view': inline}) 89 89 … … 91 91 if not content_object: 92 92 content_object = self.model.objects.get(slug=slug) 93 # response = self.get_response(request, host_template, content_object)94 93 response = self.get_response(request, req_context, content_object) 95 94 else: 96 95 response = self.get_response(request, req_context) 97 # response = self.get_response(request, host_template)98 96 99 97 # inline will be True if the view was called from a region templatetag -
cyclope/core/frontend/sites.py
r268 r269 184 184 """View of a layout with no specific content associated""" 185 185 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 190 187 t = loader.get_template(template) 191 188 c = RequestContext(request) -
cyclope/dashboard.py
r263 r269 173 173 'cyclope.models.SiteSettings', 174 174 'contact_form.models.ContactFormSettings', 175 'cyclope.apps.newsletter.models.Newsletter', 175 176 ])) 176 177 -
cyclope/default_settings.py
r264 r269 82 82 'haystack', 83 83 84 'cyclope', 84 85 'cyclope.core.collections', 85 86 'cyclope.core.captcha_comments', … … 90 91 'cyclope.apps.forum', 91 92 'cyclope.apps.newsletter', 92 'cyclope',93 93 94 94 'admin_tools', … … 102 102 'django.contrib.sites', 103 103 'django.contrib.humanize', 104 'django.contrib.databrowse',105 104 'django.contrib.admin', 106 105 'django.contrib.comments', -
cyclope/default_urls.py
r219 r269 63 63 {'form_class': AdminSettingsContactFormWithCaptcha}, 64 64 name='contact_form'), 65 (r'^contact/', include('contact_form.urls')), 65 66 url(r'^search/', search_view_factory( 66 67 view_class=SearchView, 67 68 results_per_page=cyc_settings.CYCLOPE_PAGINATION['TEASER'], 68 69 ), name='haystack_search'), 69 (r'^contact/', include('contact_form.urls')),70 70 url(r'^rss/category/(?P<slug>[\w-]+)/$', CategoryFeed(), 71 71 name='category_feed'), … … 74 74 url(r'^rss/(?P<object_name>[\w-]+)/$', ContentTypeFeed(), 75 75 name='content_type_feed'), 76 (r'^newsletter/', include('cyclope.apps.newsletter.urls')), 76 77 ) 77 78 -
cyclope/locale/es/LC_MESSAGES/django.po
r253 r269 5 5 "Project-Id-Version: PACKAGE VERSION\n" 6 6 "Report-Msgid-Bugs-To: \n" 7 "POT-Creation-Date: 2010-1 1-24 21:40-0300\n"7 "POT-Creation-Date: 2010-12-12 02:32-0300\n" 8 8 "PO-Revision-Date: 2010-10-29 22:16\n" 9 9 "Last-Translator: <a@a.com>\n" … … 28 28 msgstr "Administración del sitio" 29 29 30 #: dashboard.py:100 30 #: dashboard.py:45 31 msgid "Quick links" 32 msgstr "Enlaces rápidos" 33 34 #: dashboard.py:51 35 msgid "Browse media files" 36 msgstr "Explorar archivos" 37 38 #: dashboard.py:54 39 msgid "Return to site" 40 msgstr "Volver al sitio" 41 42 #: dashboard.py:73 31 43 msgid "Content" 32 44 msgstr "Contenidos" 33 45 34 #: dashboard.py: 10646 #: dashboard.py:79 35 47 msgid "Create, delete or modify content for your website" 36 48 msgstr "Crea, borra o modifica el contenido del sitio web" 37 49 38 #: dashboard.py: 10950 #: dashboard.py:82 39 51 msgid "Main" 40 52 msgstr "Principal" 41 53 42 #: dashboard.py: 11654 #: dashboard.py:89 43 55 msgid "Multimedia Library" 44 56 msgstr "Biblioteca Multimedia" 45 57 46 #: dashboard.py:1 2858 #: dashboard.py:101 47 59 msgid "Authors and Sources" 48 60 msgstr "AutorÃas y Fuentes" 49 61 50 #: dashboard.py:1 3562 #: dashboard.py:108 51 63 msgid "Polls" 52 64 msgstr "Encuestas" 53 65 54 #: dashboard.py:1 46apps/articles/templates/articles/article_detail.html:3766 #: dashboard.py:119 apps/articles/templates/articles/article_detail.html:37 55 67 #: apps/polls/templates/polls/poll_detail.html:34 56 #: core/collections/templates/collections/category_list_as_forum.html:1 368 #: core/collections/templates/collections/category_list_as_forum.html:15 57 69 msgid "Comments" 58 70 msgstr "Comentarios" 59 71 60 #: dashboard.py:1 4872 #: dashboard.py:121 61 73 msgid "Review and moderate user comments" 62 74 msgstr "Revisa y modera los comentarios recibidos" 63 75 64 #: dashboard.py:1 5776 #: dashboard.py:130 65 77 msgid "Categorization" 66 78 msgstr "Categorización" 67 79 68 #: dashboard.py:1 6380 #: dashboard.py:136 69 81 msgid "Classify the content in your website" 70 82 msgstr "Clasifica el contenido de tu sitio" 71 83 72 #: dashboard.py:1 6684 #: dashboard.py:139 73 85 msgid "Collections" 74 86 msgstr "Colecciones" 75 87 76 #: dashboard.py:1 7388 #: dashboard.py:146 77 89 msgid "Tagging" 78 90 msgstr "Etiquetado" 79 91 80 #: dashboard.py:1 8192 #: dashboard.py:154 81 93 msgid "Site structure" 82 94 msgstr "Estructura del sitio" 83 95 84 #: dashboard.py:1 8396 #: dashboard.py:156 85 97 msgid "Modify the menus and site layouts" 86 98 msgstr "Administra los menúes y la disposición del contenido" 87 99 88 #: dashboard.py:1 94100 #: dashboard.py:167 89 101 msgid "Global settings" 90 102 msgstr "Configuración global" 91 103 92 #: dashboard.py: 207104 #: dashboard.py:181 93 105 msgid "Advanced" 94 106 msgstr "Avanzado" 95 107 96 #: dashboard.py: 213108 #: dashboard.py:187 97 109 msgid "Advanced configuration" 98 110 msgstr "Configuración avanzada" 99 111 100 #: dashboard.py: 216112 #: dashboard.py:190 101 113 msgid "Auth" 102 114 msgstr "Permisos" 103 115 104 #: dashboard.py: 222116 #: dashboard.py:196 105 117 msgid "Registration" 106 118 msgstr "Registro" 107 119 108 #: dashboard.py:2 28120 #: dashboard.py:202 109 121 msgid "Sites" 110 122 msgstr "Sitios" 111 123 112 #: dashboard.py:2 39124 #: dashboard.py:213 113 125 msgid "Recent Actions" 114 126 msgstr "Acciones Recientes" 115 127 116 #: default_settings.py:166 128 #: dashboard.py:222 129 msgid "Cyclope 3 community and support" 130 msgstr "Comunidad y soporte de Cyclope 3" 131 132 #: dashboard.py:229 133 msgid "Official website" 134 msgstr "Sitio web oficial" 135 136 #: dashboard.py:234 137 msgid "Tutorials" 138 msgstr "Tutoriales" 139 140 #: default_settings.py:169 117 141 msgid "Admin Thumbnail" 118 142 msgstr "Miniatura para sitio de administración" 119 143 120 #: default_settings.py:1 68144 #: default_settings.py:171 121 145 msgid "Thumbnail (140px)" 122 146 msgstr "Imagen miniatura (140px)" 123 147 124 #: default_settings.py:17 0148 #: default_settings.py:173 125 149 msgid "Small (300px)" 126 150 msgstr "Pequeña (300px)" 127 151 128 #: default_settings.py:17 2152 #: default_settings.py:175 129 153 msgid "Medium (460px)" 130 154 msgstr "Mediana (460px)" 131 155 132 #: default_settings.py:17 4156 #: default_settings.py:177 133 157 msgid "Big (620px)" 134 158 msgstr "Grande (620px)" 135 159 136 #: default_settings.py:17 6160 #: default_settings.py:179 137 161 msgid "Cropped (60x60px)" 138 162 msgstr "Cortada (60x60px)" 139 163 140 #: default_settings.py:1 78164 #: default_settings.py:181 141 165 msgid "Cropped Thumbnail (140x140px)" 142 166 msgstr "Miniatura cortada (140x140px)" … … 150 174 msgstr "Vista" 151 175 152 #: forms.py:74 core/collections/admin.py:1 05176 #: forms.py:74 core/collections/admin.py:115 153 177 msgid "Parent" 154 178 msgstr "Padre" … … 201 225 msgstr "lista de items raÃz para el Menú seleccionado" 202 226 203 #: frontend_views.py:6 6227 #: frontend_views.py:62 204 228 msgid "flat list of all items for the selected Menu" 205 229 msgstr "lista sin jerarquÃa de los items del Menú" 206 230 207 #: frontend_views.py:8 6231 #: frontend_views.py:81 208 232 msgid "hierarchical list of the items in the selected menu" 209 233 msgstr "lista jerarquizada de los items del menú" 210 234 211 #: frontend_views.py:1 40235 #: frontend_views.py:134 212 236 msgid "list view of children of the current menu item" 213 237 msgstr "lista de los hijos del item de menú que se encuentre seleccionado" 214 238 215 #: frontend_views.py:16 8239 #: frontend_views.py:161 216 240 msgid "expanded hierarchical list of all collection and menus" 217 241 msgstr "lista de todas las categorÃas y menúes" 218 242 219 #: models.py: 59243 #: models.py:60 220 244 msgid "templating theme" 221 245 msgstr "tema de la plantilla" 222 246 223 #: models.py:6 1247 #: models.py:62 224 248 msgid "default layout" 225 249 msgstr "esquema por defecto" 226 250 227 #: models.py:6 3 models.py:289251 #: models.py:64 models.py:293 228 252 msgid "allow comments" 229 253 msgstr "permitir comentarios" 230 254 231 #: models.py:6 5 models.py:292255 #: models.py:66 models.py:296 232 256 msgid "enabled" 233 257 msgstr "habilitado" 234 258 235 #: models.py:6 6 models.py:293259 #: models.py:67 models.py:297 236 260 msgid "disabled" 237 261 msgstr "deshabilitado" 238 262 239 #: models.py: 69263 #: models.py:70 240 264 msgid "global title" 241 265 msgstr "titulo global" 242 266 243 #: models.py:7 1267 #: models.py:72 244 268 msgid "keywords" 245 269 msgstr "palabras clave" 246 270 247 #: models.py:7 2apps/medialibrary/models.py:37 apps/polls/models.py:36271 #: models.py:73 apps/medialibrary/models.py:37 apps/polls/models.py:36 248 272 #: core/collections/models.py:53 core/collections/models.py:83 249 273 msgid "description" 250 274 msgstr "descripción" 251 275 252 #: models.py:78 models.py:79 276 #: models.py:75 277 msgid "newsletter collection" 278 msgstr "colección para boletines" 279 280 #: models.py:76 281 msgid "" 282 "This is the collection that will group the contents for your newsletters." 283 msgstr "" 284 "Esta es la colección que agrupará los contenidos a enviar en los boletines." 285 286 #: models.py:82 models.py:83 253 287 msgid "site settings" 254 288 msgstr "configuración del sitio" 255 289 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 258 293 msgid "name" 259 294 msgstr "nombre" 260 295 261 #: models.py:9 0296 #: models.py:94 262 297 msgid "main menu" 263 298 msgstr "menu principal" 264 299 265 #: models.py:1 07 models.py:116300 #: models.py:111 models.py:120 266 301 msgid "menu" 267 302 msgstr "menú" 268 303 269 #: models.py:1 08304 #: models.py:112 270 305 msgid "menus" 271 306 msgstr "menúes" 272 307 273 #: models.py:1 19core/collections/models.py:80308 #: models.py:123 core/collections/models.py:80 274 309 msgid "parent" 275 310 msgstr "relacionado" 276 311 277 #: models.py:12 0core/collections/models.py:81312 #: models.py:124 core/collections/models.py:81 278 313 msgid "children" 279 314 msgstr "hijo" 280 315 281 #: models.py:12 4316 #: models.py:128 282 317 msgid "site home" 283 318 msgstr "página de inicio" 284 319 285 #: models.py:12 5320 #: models.py:129 286 321 msgid "custom URL" 287 322 msgstr "URL personalizada" 288 323 289 #: models.py:1 29 models.py:241324 #: models.py:133 models.py:245 apps/newsletter/models.py:42 290 325 msgid "layout" 291 326 msgstr "esquema" 292 327 293 #: models.py:13 1328 #: models.py:135 294 329 msgid "Persistent layout" 295 330 msgstr "Esquema persistente" 296 331 297 #: models.py:13 2332 #: models.py:136 298 333 msgid "" 299 334 "If the layout is marked as persistent it will be in use until the user " … … 303 338 "usuario seleccione otro item de menú que especifique un esquema diferente" 304 339 305 #: models.py:1 36 models.py:211340 #: models.py:140 models.py:215 306 341 msgid "type" 307 342 msgstr "tipo" 308 343 309 #: models.py:1 38 models.py:219344 #: models.py:142 models.py:223 310 345 msgid "object" 311 346 msgstr "objeto" 312 347 313 #: models.py:14 4 models.py:213348 #: models.py:148 models.py:217 314 349 msgid "view" 315 350 msgstr "vista" 316 351 317 #: models.py: 198352 #: models.py:202 318 353 msgid "menu item" 319 354 msgstr "item de menú" 320 355 321 #: models.py: 199356 #: models.py:203 322 357 msgid "menu items" 323 358 msgstr "items de menú" 324 359 325 #: models.py:2 07360 #: models.py:211 326 361 msgid "region" 327 362 msgstr "región" 328 363 329 #: models.py:2 16364 #: models.py:220 330 365 msgid "weight" 331 366 msgstr "peso" 332 367 333 #: models.py:23 5368 #: models.py:239 334 369 msgid "layout template" 335 370 msgstr "plantilla para este esquema" 336 371 337 #: models.py:24 2372 #: models.py:246 338 373 msgid "layouts" 339 374 msgstr "esquemas" 340 375 341 #: models.py:2 49 models.py:254 core/collections/models.py:144376 #: models.py:253 models.py:258 core/collections/models.py:145 342 377 msgid "content type" 343 378 msgstr "tipo de contenido" 344 379 345 #: models.py:2 69380 #: models.py:273 346 381 msgid "related content" 347 382 msgstr "contenido relacionado" 348 383 349 #: models.py:27 0384 #: models.py:274 350 385 msgid "related contents" 351 386 msgstr "contenidos relacionados" 352 387 353 #: models.py:28 0388 #: models.py:284 354 389 msgid "tags" 355 390 msgstr "etiquetas" 356 391 357 #: models.py:28 1392 #: models.py:285 358 393 msgid "published" 359 394 msgstr "publicar" 360 395 361 #: models.py:28 5396 #: models.py:289 362 397 msgid "creation date" 363 398 msgstr "fecha de creación" 364 399 365 #: models.py:2 87400 #: models.py:291 366 401 msgid "modification date" 367 402 msgstr "fecha de modificación" 368 403 369 #: models.py:29 1404 #: models.py:295 370 405 msgid "default" 371 406 msgstr "por defecto" 372 407 373 #: models.py:3 37408 #: models.py:341 374 409 msgid "translations" 375 410 msgstr "traducciones" 376 411 377 #: models.py:35 5 models.py:390 models.py:400apps/medialibrary/models.py:47412 #: models.py:359 models.py:394 models.py:404 apps/medialibrary/models.py:47 378 413 #: apps/medialibrary/models.py:82 apps/medialibrary/models.py:95 379 414 #: apps/medialibrary/models.py:108 apps/medialibrary/models.py:121 … … 382 417 msgstr "imagen" 383 418 384 #: models.py:3 58419 #: models.py:362 385 420 msgid "origin" 386 421 msgstr "origen" 387 422 388 #: models.py:36 0423 #: models.py:364 389 424 msgid "notes" 390 425 msgstr "notas" 391 426 392 #: models.py:36 2core/collections/models.py:52427 #: models.py:366 core/collections/models.py:52 393 428 msgid "content types" 394 429 msgstr "tipos de contenido" 395 430 396 #: models.py:36 3431 #: models.py:367 397 432 msgid "Select the content types this author is related to." 398 433 msgstr "Seleccione los tipos de contenido que corresponden a esta autorÃa" 399 434 400 #: models.py:3 69apps/articles/models.py:46 apps/forum/models.py:38435 #: models.py:373 apps/articles/models.py:46 apps/forum/models.py:38 401 436 #: apps/medialibrary/models.py:35 402 437 msgid "author" 403 438 msgstr "autorÃa" 404 439 405 #: models.py:37 0440 #: models.py:374 406 441 msgid "authors" 407 442 msgstr "autorÃas" 408 443 409 #: models.py:3 78444 #: models.py:382 410 445 msgid "link" 411 446 msgstr "enlace" 412 447 413 #: models.py:38 4apps/articles/models.py:47448 #: models.py:388 apps/articles/models.py:47 414 449 msgid "source" 415 450 msgstr "fuente" 416 451 417 #: models.py:38 5452 #: models.py:389 418 453 msgid "sources" 419 454 msgstr "fuentes" 420 455 421 #: models.py: 396456 #: models.py:400 422 457 msgid "Thumbnail Image" 423 458 msgstr "Imagen miniatura" 424 459 425 #: models.py:40 1460 #: models.py:405 426 461 msgid "images" 427 462 msgstr "imágenes" 428 463 429 #: models.py:4 07464 #: models.py:411 430 465 msgid "avatar" 431 466 msgstr "tu imagen" 432 467 433 #: models.py:4 09468 #: models.py:413 434 469 msgid "city" 435 470 msgstr "ciudad" 436 471 437 #: models.py:41 0472 #: models.py:414 438 473 msgid "about myself" 439 474 msgstr "sobre mÃ" 440 475 441 #: models.py:41 3476 #: models.py:417 442 477 msgid "public" 443 478 msgstr "público" 444 479 445 #: models.py:41 4480 #: models.py:418 446 481 msgid "Choose whether your profile info should be publicly visible or not" 447 482 msgstr "Elije si deseas que tu información de perfil sea pública" 448 483 449 #: settings.py: 90484 #: settings.py:89 450 485 msgid "You need to set the CYCLOPE_PROJECT_PATH in your settings file." 451 486 msgstr "Debe establecer un valor para CYCLOPE_PROJECT_PATH en settings.py" … … 478 513 msgid "detailed view of the selected Article" 479 514 msgstr "vista detallada del ArtÃculo seleccionado" 515 516 #: apps/articles/frontend_views.py:51 517 msgid "list of Article teasers" 518 msgstr "lista de resúmenes de ArtÃculos" 519 520 #: apps/articles/frontend_views.py:67 521 msgid "list of Article labeled icons" 522 msgstr "lista de iconos con nombre" 480 523 481 524 #: apps/articles/models.py:39 … … 579 622 msgstr "vista detallada del Tema seleccionado" 580 623 581 #: apps/forum/frontend_views.py:6 4624 #: apps/forum/frontend_views.py:63 582 625 msgid "create a new topic in the Forum selected" 583 626 msgstr "crear un nuevo tema en el foro seleccionado" … … 609 652 msgstr "Respuestas" 610 653 611 #: apps/medialibrary/frontend_views.py:4 4654 #: apps/medialibrary/frontend_views.py:43 612 655 msgid "detailed view of the selected Picture" 613 656 msgstr "vista detallada de la Imagen seleccionada" 614 657 615 #: apps/medialibrary/frontend_views.py:5 2658 #: apps/medialibrary/frontend_views.py:51 616 659 msgid "detailed view of the selected Audio Track" 617 660 msgstr "vista detallada de la Pista de Audio seleccionada" 618 661 619 #: apps/medialibrary/frontend_views.py: 60662 #: apps/medialibrary/frontend_views.py:59 620 663 msgid "detailed view of the selected Movie Clip" 621 664 msgstr "vista detallada del Video seleccionado" 622 665 623 #: apps/medialibrary/frontend_views.py:6 8666 #: apps/medialibrary/frontend_views.py:67 624 667 msgid "detailed view of the selected Document" 625 668 msgstr "vista detallada del Documento seleccionado" 626 669 627 #: apps/medialibrary/frontend_views.py:7 6670 #: apps/medialibrary/frontend_views.py:75 628 671 msgid "detailed view of the selected File" 629 672 msgstr "vista detallada del Archivo seleccionado" 630 673 631 #: apps/medialibrary/frontend_views.py:8 4674 #: apps/medialibrary/frontend_views.py:83 632 675 msgid "detailed view of the selected External Content" 633 676 msgstr "vista detallada del Contenido Externo seleccionado" 634 677 635 #: apps/medialibrary/frontend_views.py:9 2678 #: apps/medialibrary/frontend_views.py:91 636 679 msgid "detailed view of the selected Flash Movie" 637 680 msgstr "vista detallada del elemento Flash seleccionado" … … 741 784 msgstr "pantalla completa (en ventana nueva)" 742 785 786 #: apps/newsletter/admin.py:34 787 msgid "Current content category" 788 msgstr "CategorÃa de los contenidos" 789 790 #: apps/newsletter/admin.py:35 791 msgid "" 792 "This is the category which groups the content that will be sent with the " 793 "newsletter." 794 msgstr "" 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 799 msgid "show the current content for the selected Newsletter" 800 msgstr "mostrar el contenido actual del Newsletter elejido" 801 802 #: apps/newsletter/frontend_views.py:32 803 msgid "show the header text of the selected Newsletter" 804 msgstr "mostrar el encabezado del BoletÃn seleccionado" 805 806 #: apps/newsletter/models.py:38 807 msgid "sent date" 808 msgstr "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 817 msgid "header" 818 msgstr "encabezado" 819 820 #: apps/newsletter/models.py:43 821 msgid "sender" 822 msgstr "remitente" 823 824 #: apps/newsletter/models.py:44 825 msgid "test recipients" 826 msgstr "destinatarios de prueba" 827 828 #: apps/newsletter/models.py:45 829 msgid "recipients" 830 msgstr "destinatarios" 831 832 #: apps/newsletter/models.py:51 833 msgid "newsletter" 834 msgstr "boletÃn" 835 836 #: apps/newsletter/models.py:52 837 msgid "newsletters" 838 msgstr "boletines" 839 840 #: apps/newsletter/templates/admin/newsletter_change_form.html:7 841 msgid "Preview" 842 msgstr "Vista preliminar" 843 844 #: apps/newsletter/templates/admin/newsletter_change_form.html:8 845 msgid "Send test" 846 msgstr "Enviar prueba" 847 848 #: apps/newsletter/templates/admin/newsletter_change_form.html:9 849 msgid "Send e-mail" 850 msgstr "Enviar correo" 851 852 #: apps/newsletter/templates/newsletter/mail_sent.html:5 853 msgid "The e-mail has been sent for newsletter " 854 msgstr "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 858 msgid "Return to newsletter admin" 859 msgstr "Volver a la administración del boletÃn" 860 861 #: apps/newsletter/templates/newsletter/send_failed.html:6 862 msgid "The e-mail for newsletter" 863 msgstr "El correo para el boletÃn " 864 865 #: apps/newsletter/templates/newsletter/send_failed.html:7 866 msgid "could not be sent." 867 msgstr "no pudo ser enviado." 868 869 #: apps/newsletter/templates/newsletter/send_failed.html:9 870 msgid "You should try again later or contact your administrator." 871 msgstr "Intente más tarde o comunÃquese con su administrador." 872 743 873 #: apps/polls/frontend_views.py:39 744 874 msgid "Poll submission form" 745 875 msgstr "Formulario de envÃo de encuesta" 746 876 747 #: apps/polls/frontend_views.py:7 8877 #: apps/polls/frontend_views.py:74 748 878 msgid "detailed view of the selected Poll" 749 879 msgstr "vista detallada de la Encuesta" … … 822 952 msgstr "Sitio web o Blog" 823 953 824 #: core/collections/admin.py: 87templates/rosetta/pofile.html:59954 #: core/collections/admin.py:94 templates/rosetta/pofile.html:59 825 955 msgid "All" 826 956 msgstr "Todos" 827 957 828 #: core/collections/admin.py: 94 core/collections/models.py:112829 #: core/collections/models.py:17 4958 #: core/collections/admin.py:104 core/collections/models.py:112 959 #: core/collections/models.py:175 830 960 msgid "categories" 831 961 msgstr "categorÃas" 832 962 833 #: core/collections/admin.py:1 03963 #: core/collections/admin.py:113 834 964 msgid "Description" 835 965 msgstr "Descrición" 836 966 837 #: core/collections/admin.py:1 18967 #: core/collections/admin.py:128 838 968 msgid "Extra info" 839 969 msgstr "Información extra" 840 970 841 #: core/collections/admin.py:1 38971 #: core/collections/admin.py:148 842 972 msgid "Collection" 843 973 msgstr "Colección" 844 974 845 #: core/collections/admin.py:1 40975 #: core/collections/admin.py:150 846 976 msgid "Category" 847 977 msgstr "CategorÃa" 848 978 849 #: core/collections/admin.py:1 88979 #: core/collections/admin.py:198 850 980 msgid "Default category listing view" 851 981 msgstr "Vista por defecto para listados" … … 855 985 msgstr "lista de items raÃz para la CategorÃa seleccionada" 856 986 857 #: core/collections/frontend_views.py:5 9987 #: core/collections/frontend_views.py:58 858 988 msgid "default view for the Collection" 859 989 msgstr "vista por defecto para la Colección" 860 990 861 #: core/collections/frontend_views.py:7 9991 #: core/collections/frontend_views.py:78 862 992 msgid "teaser list of Category members" 863 993 msgstr "lista de resúmenes de miembros de una CategorÃa" 864 994 865 #: core/collections/frontend_views.py:12 5995 #: core/collections/frontend_views.py:122 866 996 msgid "Labeled icon list of Category members" 867 997 msgstr "lista de iconos con nombre de los miembros de una CategorÃa" 868 998 869 #: core/collections/frontend_views.py:13 7999 #: core/collections/frontend_views.py:134 870 1000 msgid "simplified teaser list of Category members" 871 1001 msgstr "lista simplificada de resúmenes de miembros de una CategorÃa" 872 1002 873 #: core/collections/frontend_views.py:1 621003 #: core/collections/frontend_views.py:156 874 1004 msgid "teaser list of the root Categories of a Collection" 875 1005 msgstr "lista de resúmenes de las CategorÃas raÃz de una Colección" 876 1006 877 #: core/collections/frontend_views.py:1 841007 #: core/collections/frontend_views.py:176 878 1008 msgid "hierarchical list of Categories in a Collection" 879 1009 msgstr "lista jerarquizada de las Categorias de una Colección" 880 1010 881 #: core/collections/frontend_views.py:2 501011 #: core/collections/frontend_views.py:241 882 1012 msgid "hierarchical list of Categories that will show an icon list on click" 883 1013 msgstr "lista jerarquizada de las Categorias que llevará a una vista de Ãconos" 884 1014 885 #: core/collections/frontend_views.py:2 611015 #: core/collections/frontend_views.py:252 886 1016 msgid "list of Category members as forum view" 887 1017 msgstr "listar la CategorÃa como un foro" … … 915 1045 msgstr "activo" 916 1046 917 #: core/collections/models.py:111 core/collections/models.py:14 11047 #: core/collections/models.py:111 core/collections/models.py:142 918 1048 msgid "category" 919 1049 msgstr "categorÃa" 920 1050 921 #: core/collections/models.py:16 41051 #: core/collections/models.py:165 922 1052 msgid "categorization" 923 1053 msgstr "Categorización" 924 1054 925 #: core/collections/models.py:16 51055 #: core/collections/models.py:166 926 1056 msgid "categorizations" 927 1057 msgstr "Categorizaciones" 928 1058 929 #: core/collections/models.py:18 11059 #: core/collections/models.py:182 930 1060 msgid "is orphan" 931 1061 msgstr "sin categorizar" … … 935 1065 msgstr "CategorÃas" 936 1066 937 #: core/collections/templates/collections/category_list_as_forum.html: 91067 #: core/collections/templates/collections/category_list_as_forum.html:10 938 1068 msgid "Create a new topic" 939 1069 msgstr "Crear nuevo tema" 940 1070 941 #: core/collections/templates/collections/category_list_as_forum.html:1 21071 #: core/collections/templates/collections/category_list_as_forum.html:14 942 1072 msgid "Name" 943 1073 msgstr "Nombre" 944 1074 945 #: core/collections/templates/collections/category_list_as_forum.html:1 41075 #: core/collections/templates/collections/category_list_as_forum.html:16 946 1076 msgid "Created" 947 1077 msgstr "Creado" 948 1078 949 #: core/collections/templates/collections/category_list_as_forum.html:1 51079 #: core/collections/templates/collections/category_list_as_forum.html:17 950 1080 msgid "Last comment" 951 1081 msgstr "Ãltimo comentario" 952 1082 953 #: core/collections/templates/collections/category_list_as_forum.html:2 2954 #: core/collections/templates/collections/category_list_as_forum.html:2 31083 #: core/collections/templates/collections/category_list_as_forum.html:25 1084 #: core/collections/templates/collections/category_list_as_forum.html:27 955 1085 msgid "by" 956 1086 msgstr "por" 957 1087 958 #: core/frontend/__init__.py:1 501088 #: core/frontend/__init__.py:162 959 1089 #, python-format 960 1090 msgid "No default view has been set for %s" 961 1091 msgstr "No hay una vista por defecto para %s" 962 1092 963 #: core/frontend/__init__.py:1 531093 #: core/frontend/__init__.py:165 964 1094 #, python-format 965 1095 msgid "You can set only one default view for %s" 966 1096 msgstr "Puedes definir solo una vista por defecto para %s" 967 1097 968 #: core/frontend/sites.py:1 491098 #: core/frontend/sites.py:156 969 1099 msgid "You need to create you site settings" 970 1100 msgstr "Tu sitio aún no ha sido configurado" 971 1101 972 #: core/frontend/sites.py:1 541102 #: core/frontend/sites.py:161 973 1103 msgid "You need to select a layout for the site" 974 1104 msgstr "Debe seleccionar un esquema para el sitio" 975 1105 976 #: core/frontend/sites.py:16 01106 #: core/frontend/sites.py:167 977 1107 msgid "The site home page has not been set." 978 1108 msgstr "La página de inicio no ha sido establecida." 979 1109 980 #: core/frontend/sites.py:17 11110 #: core/frontend/sites.py:178 981 1111 msgid "No content object selected" 982 1112 msgstr "No ha seleccionado contenido" … … 986 1116 msgstr "Administración de Cyclope" 987 1117 988 #: templates/admin/change_form.html:21 templates/admin/change_list.html: 421118 #: templates/admin/change_form.html:21 templates/admin/change_list.html:62 989 1119 #: templates/rosetta/pofile.html:46 990 1120 msgid "Home" … … 1003 1133 msgstr "Ver en el sitio" 1004 1134 1005 #: templates/admin/change_form.html:41 templates/admin/change_list.html: 761135 #: templates/admin/change_form.html:41 templates/admin/change_list.html:96 1006 1136 msgid "Please correct the error below." 1007 1137 msgid_plural "Please correct the errors below." … … 1009 1139 msgstr[1] "Por favor corrija los errores detallados" 1010 1140 1011 #: templates/admin/change_list.html: 581141 #: templates/admin/change_list.html:78 1012 1142 #, python-format 1013 1143 msgid "" … … 1018 1148 "listado de %(plural_name)s." 1019 1149 1020 #: templates/admin/change_list.html: 681150 #: templates/admin/change_list.html:88 1021 1151 #, python-format 1022 1152 msgid "Add %(name)s" 1023 1153 msgstr "Agregar %(name)s" 1024 1154 1025 #: templates/admin/change_list.html: 871155 #: templates/admin/change_list.html:107 1026 1156 #: templates/admin/feincms/tree_editor.html:140 1027 1157 #: templates/admin/polls/change_list.html:7 1028 1158 msgid "Filter" 1029 1159 msgstr "Filtro" 1160 1161 #: templates/admin/filter.html:2 1162 #, python-format 1163 msgid " By %(filter_title)s " 1164 msgstr " Por %(filter_title)s " 1030 1165 1031 1166 #: templates/admin/articles/change_list.html:6 … … 1123 1258 msgstr "siguiente" 1124 1259 1125 #: templates/cyclope/site_map.html: 51260 #: templates/cyclope/site_map.html:6 1126 1261 msgid "Site map" 1127 1262 msgstr "Mapa del sitio" … … 1144 1279 msgid "One sidebar" 1145 1280 msgstr "Una barra lateral" 1146 1147 #: templates/cyclope/themes/neutrona/__init__.py:191148 #: templates/cyclope/themes/neutrona/__init__.py:311149 #: templates/cyclope/themes/neutronica/__init__.py:191150 #: templates/cyclope/themes/neutronica/__init__.py:311151 #: templates/cyclope/themes/neutronica/__init__.py:431152 msgid "header"1153 msgstr "encabezado"1154 1281 1155 1282 #: templates/cyclope/themes/neutrona/__init__.py:20 … … 1165 1292 #: templates/cyclope/themes/neutronica/__init__.py:34 1166 1293 #: templates/cyclope/themes/neutronica/__init__.py:44 1294 #: templates/cyclope/themes/neutronica/__init__.py:60 1167 1295 msgid "before content" 1168 1296 msgstr "antes del contenido" … … 1173 1301 #: templates/cyclope/themes/neutronica/__init__.py:35 1174 1302 #: templates/cyclope/themes/neutronica/__init__.py:45 1303 #: templates/cyclope/themes/neutronica/__init__.py:61 1175 1304 msgid "after content" 1176 1305 msgstr "después del contenido" … … 1181 1310 #: templates/cyclope/themes/neutronica/__init__.py:36 1182 1311 #: templates/cyclope/themes/neutronica/__init__.py:46 1312 #: templates/cyclope/themes/neutronica/__init__.py:62 1183 1313 msgid "footer" 1184 1314 msgstr "pie de página" … … 1220 1350 msgid "No sidebars" 1221 1351 msgstr "Sin barras laterales" 1352 1353 #: templates/cyclope/themes/neutronica/__init__.py:57 1354 msgid "Newsletter" 1355 msgstr "BoletÃn" 1222 1356 1223 1357 #: templates/profiles/edit_profile.html:8 … … 1461 1595 #~ msgstr "Portugués" 1462 1596 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 1469 1597 #~ msgid "detailed view of the selected Product" 1470 1598 #~ msgstr "vista detallada del Producto seleccionado" -
cyclope/locale/it/LC_MESSAGES/django.po
r252 r269 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2010-1 1-24 15:49-0300\n"11 "POT-Creation-Date: 2010-12-12 02:32-0300\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 31 31 msgstr "" 32 32 33 #: dashboard.py:100 33 #: dashboard.py:45 34 msgid "Quick links" 35 msgstr "" 36 37 #: dashboard.py:51 38 msgid "Browse media files" 39 msgstr "" 40 41 #: dashboard.py:54 42 msgid "Return to site" 43 msgstr "" 44 45 #: dashboard.py:73 34 46 msgid "Content" 35 47 msgstr "" 36 48 37 #: dashboard.py: 10649 #: dashboard.py:79 38 50 msgid "Create, delete or modify content for your website" 39 51 msgstr "" 40 52 41 #: dashboard.py: 10953 #: dashboard.py:82 42 54 msgid "Main" 43 55 msgstr "" 44 56 45 #: dashboard.py: 11657 #: dashboard.py:89 46 58 msgid "Multimedia Library" 47 59 msgstr "" 48 60 49 #: dashboard.py:1 2861 #: dashboard.py:101 50 62 msgid "Authors and Sources" 51 63 msgstr "" 52 64 53 #: dashboard.py:1 3565 #: dashboard.py:108 54 66 msgid "Polls" 55 67 msgstr "" 56 68 57 #: dashboard.py:1 46apps/articles/templates/articles/article_detail.html:3769 #: dashboard.py:119 apps/articles/templates/articles/article_detail.html:37 58 70 #: apps/polls/templates/polls/poll_detail.html:34 59 #: core/collections/templates/collections/category_list_as_forum.html:1 371 #: core/collections/templates/collections/category_list_as_forum.html:15 60 72 msgid "Comments" 61 73 msgstr "" 62 74 63 #: dashboard.py:1 4875 #: dashboard.py:121 64 76 msgid "Review and moderate user comments" 65 77 msgstr "" 66 78 67 #: dashboard.py:1 5779 #: dashboard.py:130 68 80 msgid "Categorization" 69 81 msgstr "" 70 82 71 #: dashboard.py:1 6383 #: dashboard.py:136 72 84 msgid "Classify the content in your website" 73 85 msgstr "" 74 86 75 #: dashboard.py:1 6687 #: dashboard.py:139 76 88 msgid "Collections" 77 89 msgstr "" 78 90 79 #: dashboard.py:1 7391 #: dashboard.py:146 80 92 msgid "Tagging" 81 93 msgstr "" 82 94 95 #: dashboard.py:154 96 msgid "Site structure" 97 msgstr "" 98 99 #: dashboard.py:156 100 msgid "Modify the menus and site layouts" 101 msgstr "" 102 103 #: dashboard.py:167 104 msgid "Global settings" 105 msgstr "" 106 83 107 #: dashboard.py:181 84 msgid "Site structure"85 msgstr ""86 87 #: dashboard.py:18388 msgid "Modify the menus and site layouts"89 msgstr ""90 91 #: dashboard.py:19492 msgid "Global settings"93 msgstr ""94 95 #: dashboard.py:20796 108 msgid "Advanced" 97 109 msgstr "" 98 110 111 #: dashboard.py:187 112 msgid "Advanced configuration" 113 msgstr "" 114 115 #: dashboard.py:190 116 msgid "Auth" 117 msgstr "" 118 119 #: dashboard.py:196 120 msgid "Registration" 121 msgstr "" 122 123 #: dashboard.py:202 124 msgid "Sites" 125 msgstr "" 126 99 127 #: dashboard.py:213 100 msgid "Advanced configuration" 101 msgstr "" 102 103 #: dashboard.py:216 104 msgid "Auth" 128 msgid "Recent Actions" 105 129 msgstr "" 106 130 107 131 #: 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 132 msgid "Cyclope 3 community and support" 133 msgstr "" 134 135 #: dashboard.py:229 136 msgid "Official website" 137 msgstr "" 138 139 #: dashboard.py:234 140 msgid "Tutorials" 141 msgstr "" 142 143 #: default_settings.py:169 132 144 msgid "Admin Thumbnail" 133 145 msgstr "" 134 146 135 #: default_settings.py:1 69147 #: default_settings.py:171 136 148 msgid "Thumbnail (140px)" 137 149 msgstr "" 138 150 139 #: default_settings.py:17 1151 #: default_settings.py:173 140 152 msgid "Small (300px)" 141 153 msgstr "" 142 154 143 #: default_settings.py:17 3155 #: default_settings.py:175 144 156 msgid "Medium (460px)" 145 157 msgstr "" 146 158 147 #: default_settings.py:17 5159 #: default_settings.py:177 148 160 msgid "Big (620px)" 149 161 msgstr "" 150 162 151 #: default_settings.py:17 7163 #: default_settings.py:179 152 164 msgid "Cropped (60x60px)" 153 165 msgstr "" 154 166 155 #: default_settings.py:1 79167 #: default_settings.py:181 156 168 msgid "Cropped Thumbnail (140x140px)" 157 169 msgstr "" … … 165 177 msgstr "" 166 178 167 #: forms.py:74 core/collections/admin.py:1 05179 #: forms.py:74 core/collections/admin.py:115 168 180 msgid "Parent" 169 181 msgstr "" … … 216 228 msgstr "" 217 229 218 #: frontend_views.py:6 6230 #: frontend_views.py:62 219 231 msgid "flat list of all items for the selected Menu" 220 232 msgstr "" 221 233 222 #: frontend_views.py:8 6234 #: frontend_views.py:81 223 235 msgid "hierarchical list of the items in the selected menu" 224 236 msgstr "" 225 237 226 #: frontend_views.py:1 40238 #: frontend_views.py:134 227 239 msgid "list view of children of the current menu item" 228 240 msgstr "" 229 241 230 #: frontend_views.py:16 8242 #: frontend_views.py:161 231 243 msgid "expanded hierarchical list of all collection and menus" 232 244 msgstr "" 233 245 234 #: models.py: 59246 #: models.py:60 235 247 msgid "templating theme" 236 248 msgstr "" 237 249 238 #: models.py:6 1250 #: models.py:62 239 251 msgid "default layout" 240 252 msgstr "" 241 253 242 #: models.py:6 3 models.py:289254 #: models.py:64 models.py:293 243 255 msgid "allow comments" 244 256 msgstr "" 245 257 246 #: models.py:6 5 models.py:292258 #: models.py:66 models.py:296 247 259 msgid "enabled" 248 260 msgstr "" 249 261 250 #: models.py:6 6 models.py:293262 #: models.py:67 models.py:297 251 263 msgid "disabled" 252 264 msgstr "" 253 265 254 #: models.py: 69266 #: models.py:70 255 267 msgid "global title" 256 268 msgstr "" 257 269 258 #: models.py:7 1270 #: models.py:72 259 271 msgid "keywords" 260 272 msgstr "" 261 273 262 #: models.py:7 2apps/medialibrary/models.py:37 apps/polls/models.py:36274 #: models.py:73 apps/medialibrary/models.py:37 apps/polls/models.py:36 263 275 #: core/collections/models.py:53 core/collections/models.py:83 264 276 msgid "description" 265 277 msgstr "" 266 278 267 #: models.py:78 models.py:79 279 #: models.py:75 280 msgid "newsletter collection" 281 msgstr "" 282 283 #: models.py:76 284 msgid "" 285 "This is the collection that will group the contents for your newsletters." 286 msgstr "" 287 288 #: models.py:82 models.py:83 268 289 msgid "site settings" 269 290 msgstr "" 270 291 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 273 295 msgid "name" 274 296 msgstr "" 275 297 276 #: models.py:9 0298 #: models.py:94 277 299 msgid "main menu" 278 300 msgstr "" 279 301 280 #: models.py:1 07 models.py:116302 #: models.py:111 models.py:120 281 303 msgid "menu" 282 304 msgstr "" 283 305 284 #: models.py:1 08306 #: models.py:112 285 307 msgid "menus" 286 308 msgstr "" 287 309 288 #: models.py:1 19core/collections/models.py:80310 #: models.py:123 core/collections/models.py:80 289 311 msgid "parent" 290 312 msgstr "" 291 313 292 #: models.py:12 0core/collections/models.py:81314 #: models.py:124 core/collections/models.py:81 293 315 msgid "children" 294 316 msgstr "" 295 317 296 #: models.py:12 4318 #: models.py:128 297 319 msgid "site home" 298 320 msgstr "" 299 321 300 #: models.py:12 5322 #: models.py:129 301 323 msgid "custom URL" 302 324 msgstr "" 303 325 304 #: models.py:1 29 models.py:241326 #: models.py:133 models.py:245 apps/newsletter/models.py:42 305 327 msgid "layout" 306 328 msgstr "" 307 329 308 #: models.py:13 1330 #: models.py:135 309 331 msgid "Persistent layout" 310 332 msgstr "" 311 333 312 #: models.py:13 2334 #: models.py:136 313 335 msgid "" 314 336 "If the layout is marked as persistent it will be in use until the user " … … 316 338 msgstr "" 317 339 318 #: models.py:1 36 models.py:211340 #: models.py:140 models.py:215 319 341 msgid "type" 320 342 msgstr "" 321 343 322 #: models.py:1 38 models.py:219344 #: models.py:142 models.py:223 323 345 msgid "object" 324 346 msgstr "" 325 347 326 #: models.py:14 4 models.py:213348 #: models.py:148 models.py:217 327 349 msgid "view" 328 350 msgstr "" 329 351 330 #: models.py: 198352 #: models.py:202 331 353 msgid "menu item" 332 354 msgstr "" 333 355 334 #: models.py: 199356 #: models.py:203 335 357 msgid "menu items" 336 358 msgstr "" 337 359 338 #: models.py:2 07360 #: models.py:211 339 361 msgid "region" 340 362 msgstr "" 341 363 342 #: models.py:2 16364 #: models.py:220 343 365 msgid "weight" 344 366 msgstr "" 345 367 346 #: models.py:23 5368 #: models.py:239 347 369 msgid "layout template" 348 370 msgstr "" 349 371 350 #: models.py:24 2372 #: models.py:246 351 373 msgid "layouts" 352 374 msgstr "" 353 375 354 #: models.py:2 49 models.py:254 core/collections/models.py:144376 #: models.py:253 models.py:258 core/collections/models.py:145 355 377 msgid "content type" 356 378 msgstr "" 357 379 358 #: models.py:2 69380 #: models.py:273 359 381 msgid "related content" 360 382 msgstr "" 361 383 362 #: models.py:27 0384 #: models.py:274 363 385 msgid "related contents" 364 386 msgstr "" 365 387 366 #: models.py:28 0388 #: models.py:284 367 389 msgid "tags" 368 390 msgstr "" 369 391 370 #: models.py:28 1392 #: models.py:285 371 393 msgid "published" 372 394 msgstr "" 373 395 374 #: models.py:28 5396 #: models.py:289 375 397 msgid "creation date" 376 398 msgstr "" 377 399 378 #: models.py:2 87400 #: models.py:291 379 401 msgid "modification date" 380 402 msgstr "" 381 403 382 #: models.py:29 1404 #: models.py:295 383 405 msgid "default" 384 406 msgstr "" 385 407 386 #: models.py:3 37408 #: models.py:341 387 409 msgid "translations" 388 410 msgstr "" 389 411 390 #: models.py:35 5 models.py:390 models.py:400apps/medialibrary/models.py:47412 #: models.py:359 models.py:394 models.py:404 apps/medialibrary/models.py:47 391 413 #: apps/medialibrary/models.py:82 apps/medialibrary/models.py:95 392 414 #: apps/medialibrary/models.py:108 apps/medialibrary/models.py:121 … … 395 417 msgstr "" 396 418 397 #: models.py:3 58419 #: models.py:362 398 420 msgid "origin" 399 421 msgstr "" 400 422 401 #: models.py:36 0423 #: models.py:364 402 424 msgid "notes" 403 425 msgstr "" 404 426 405 #: models.py:36 2core/collections/models.py:52427 #: models.py:366 core/collections/models.py:52 406 428 msgid "content types" 407 429 msgstr "" 408 430 409 #: models.py:36 3431 #: models.py:367 410 432 msgid "Select the content types this author is related to." 411 433 msgstr "" 412 434 413 #: models.py:3 69apps/articles/models.py:46 apps/forum/models.py:38435 #: models.py:373 apps/articles/models.py:46 apps/forum/models.py:38 414 436 #: apps/medialibrary/models.py:35 415 437 msgid "author" 416 438 msgstr "" 417 439 418 #: models.py:37 0440 #: models.py:374 419 441 msgid "authors" 420 442 msgstr "" 421 443 422 #: models.py:3 78444 #: models.py:382 423 445 msgid "link" 424 446 msgstr "" 425 447 426 #: models.py:38 4apps/articles/models.py:47448 #: models.py:388 apps/articles/models.py:47 427 449 msgid "source" 428 450 msgstr "" 429 451 430 #: models.py:38 5452 #: models.py:389 431 453 msgid "sources" 432 454 msgstr "" 433 455 434 #: models.py: 396456 #: models.py:400 435 457 msgid "Thumbnail Image" 436 458 msgstr "" 437 459 438 #: models.py:40 1460 #: models.py:405 439 461 msgid "images" 440 462 msgstr "" 441 463 442 #: models.py:4 07464 #: models.py:411 443 465 msgid "avatar" 444 466 msgstr "" 445 467 446 #: models.py:4 09468 #: models.py:413 447 469 msgid "city" 448 470 msgstr "" 449 471 450 #: models.py:41 0472 #: models.py:414 451 473 msgid "about myself" 452 474 msgstr "" 453 475 454 #: models.py:41 3476 #: models.py:417 455 477 msgid "public" 456 478 msgstr "" 457 479 458 #: models.py:41 4480 #: models.py:418 459 481 msgid "Choose whether your profile info should be publicly visible or not" 460 482 msgstr "" 461 483 462 #: settings.py: 90484 #: settings.py:89 463 485 msgid "You need to set the CYCLOPE_PROJECT_PATH in your settings file." 464 486 msgstr "" … … 490 512 #: apps/articles/frontend_views.py:34 491 513 msgid "detailed view of the selected Article" 514 msgstr "" 515 516 #: apps/articles/frontend_views.py:51 517 msgid "list of Article teasers" 518 msgstr "" 519 520 #: apps/articles/frontend_views.py:67 521 msgid "list of Article labeled icons" 492 522 msgstr "" 493 523 … … 592 622 msgstr "" 593 623 594 #: apps/forum/frontend_views.py:6 4624 #: apps/forum/frontend_views.py:63 595 625 msgid "create a new topic in the Forum selected" 596 626 msgstr "" … … 622 652 msgstr "" 623 653 624 #: apps/medialibrary/frontend_views.py:4 4654 #: apps/medialibrary/frontend_views.py:43 625 655 msgid "detailed view of the selected Picture" 626 656 msgstr "" 627 657 628 #: apps/medialibrary/frontend_views.py:5 2658 #: apps/medialibrary/frontend_views.py:51 629 659 msgid "detailed view of the selected Audio Track" 630 660 msgstr "" 631 661 632 #: apps/medialibrary/frontend_views.py: 60662 #: apps/medialibrary/frontend_views.py:59 633 663 msgid "detailed view of the selected Movie Clip" 634 664 msgstr "" 635 665 636 #: apps/medialibrary/frontend_views.py:6 8666 #: apps/medialibrary/frontend_views.py:67 637 667 msgid "detailed view of the selected Document" 638 668 msgstr "" 639 669 640 #: apps/medialibrary/frontend_views.py:7 6670 #: apps/medialibrary/frontend_views.py:75 641 671 msgid "detailed view of the selected File" 642 672 msgstr "" 643 673 644 #: apps/medialibrary/frontend_views.py:8 4674 #: apps/medialibrary/frontend_views.py:83 645 675 msgid "detailed view of the selected External Content" 646 676 msgstr "" 647 677 648 #: apps/medialibrary/frontend_views.py:9 2678 #: apps/medialibrary/frontend_views.py:91 649 679 msgid "detailed view of the selected Flash Movie" 650 680 msgstr "" … … 754 784 msgstr "" 755 785 786 #: apps/newsletter/admin.py:34 787 msgid "Current content category" 788 msgstr "" 789 790 #: apps/newsletter/admin.py:35 791 msgid "" 792 "This is the category which groups the content that will be sent with the " 793 "newsletter." 794 msgstr "" 795 796 #: apps/newsletter/frontend_views.py:13 797 msgid "show the current content for the selected Newsletter" 798 msgstr "" 799 800 #: apps/newsletter/frontend_views.py:32 801 msgid "show the header text of the selected Newsletter" 802 msgstr "" 803 804 #: apps/newsletter/models.py:38 805 msgid "sent date" 806 msgstr "" 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 815 msgid "header" 816 msgstr "" 817 818 #: apps/newsletter/models.py:43 819 msgid "sender" 820 msgstr "" 821 822 #: apps/newsletter/models.py:44 823 msgid "test recipients" 824 msgstr "" 825 826 #: apps/newsletter/models.py:45 827 msgid "recipients" 828 msgstr "" 829 830 #: apps/newsletter/models.py:51 831 msgid "newsletter" 832 msgstr "" 833 834 #: apps/newsletter/models.py:52 835 msgid "newsletters" 836 msgstr "" 837 838 #: apps/newsletter/templates/admin/newsletter_change_form.html:7 839 msgid "Preview" 840 msgstr "" 841 842 #: apps/newsletter/templates/admin/newsletter_change_form.html:8 843 msgid "Send test" 844 msgstr "" 845 846 #: apps/newsletter/templates/admin/newsletter_change_form.html:9 847 msgid "Send e-mail" 848 msgstr "" 849 850 #: apps/newsletter/templates/newsletter/mail_sent.html:5 851 msgid "The e-mail has been sent for newsletter " 852 msgstr "" 853 854 #: apps/newsletter/templates/newsletter/mail_sent.html:6 855 #: apps/newsletter/templates/newsletter/send_failed.html:11 856 msgid "Return to newsletter admin" 857 msgstr "" 858 859 #: apps/newsletter/templates/newsletter/send_failed.html:6 860 msgid "The e-mail for newsletter" 861 msgstr "" 862 863 #: apps/newsletter/templates/newsletter/send_failed.html:7 864 msgid "could not be sent." 865 msgstr "" 866 867 #: apps/newsletter/templates/newsletter/send_failed.html:9 868 msgid "You should try again later or contact your administrator." 869 msgstr "" 870 756 871 #: apps/polls/frontend_views.py:39 757 872 msgid "Poll submission form" 758 873 msgstr "" 759 874 760 #: apps/polls/frontend_views.py:7 8875 #: apps/polls/frontend_views.py:74 761 876 msgid "detailed view of the selected Poll" 762 877 msgstr "" … … 835 950 msgstr "" 836 951 837 #: core/collections/admin.py: 87templates/rosetta/pofile.html:59952 #: core/collections/admin.py:94 templates/rosetta/pofile.html:59 838 953 msgid "All" 839 954 msgstr "" 840 955 841 #: core/collections/admin.py: 94 core/collections/models.py:112842 #: core/collections/models.py:17 4956 #: core/collections/admin.py:104 core/collections/models.py:112 957 #: core/collections/models.py:175 843 958 msgid "categories" 844 959 msgstr "" 845 960 846 #: core/collections/admin.py:1 03961 #: core/collections/admin.py:113 847 962 msgid "Description" 848 963 msgstr "" 849 964 850 #: core/collections/admin.py:1 18965 #: core/collections/admin.py:128 851 966 msgid "Extra info" 852 967 msgstr "" 853 968 854 #: core/collections/admin.py:1 38969 #: core/collections/admin.py:148 855 970 msgid "Collection" 856 971 msgstr "" 857 972 858 #: core/collections/admin.py:1 40973 #: core/collections/admin.py:150 859 974 msgid "Category" 860 975 msgstr "" 861 976 862 #: core/collections/admin.py:1 88977 #: core/collections/admin.py:198 863 978 msgid "Default category listing view" 864 979 msgstr "" … … 868 983 msgstr "" 869 984 870 #: core/collections/frontend_views.py:5 9985 #: core/collections/frontend_views.py:58 871 986 msgid "default view for the Collection" 872 987 msgstr "" 873 988 874 #: core/collections/frontend_views.py:7 9989 #: core/collections/frontend_views.py:78 875 990 msgid "teaser list of Category members" 876 991 msgstr "" 877 992 878 #: core/collections/frontend_views.py:12 5993 #: core/collections/frontend_views.py:122 879 994 msgid "Labeled icon list of Category members" 880 995 msgstr "" 881 996 882 #: core/collections/frontend_views.py:13 7997 #: core/collections/frontend_views.py:134 883 998 msgid "simplified teaser list of Category members" 884 999 msgstr "" 885 1000 886 #: core/collections/frontend_views.py:1 621001 #: core/collections/frontend_views.py:156 887 1002 msgid "teaser list of the root Categories of a Collection" 888 1003 msgstr "" 889 1004 890 #: core/collections/frontend_views.py:1 841005 #: core/collections/frontend_views.py:176 891 1006 msgid "hierarchical list of Categories in a Collection" 892 1007 msgstr "" 893 1008 894 #: core/collections/frontend_views.py:2 501009 #: core/collections/frontend_views.py:241 895 1010 msgid "hierarchical list of Categories that will show an icon list on click" 896 1011 msgstr "" 897 1012 898 #: core/collections/frontend_views.py:2 611013 #: core/collections/frontend_views.py:252 899 1014 msgid "list of Category members as forum view" 900 1015 msgstr "" … … 928 1043 msgstr "" 929 1044 930 #: core/collections/models.py:111 core/collections/models.py:14 11045 #: core/collections/models.py:111 core/collections/models.py:142 931 1046 msgid "category" 932 1047 msgstr "" 933 1048 934 #: core/collections/models.py:16 41049 #: core/collections/models.py:165 935 1050 msgid "categorization" 936 1051 msgstr "" 937 1052 938 #: core/collections/models.py:16 51053 #: core/collections/models.py:166 939 1054 msgid "categorizations" 940 1055 msgstr "" 941 1056 942 #: core/collections/models.py:18 11057 #: core/collections/models.py:182 943 1058 msgid "is orphan" 944 1059 msgstr "" … … 948 1063 msgstr "" 949 1064 950 #: core/collections/templates/collections/category_list_as_forum.html: 91065 #: core/collections/templates/collections/category_list_as_forum.html:10 951 1066 msgid "Create a new topic" 952 1067 msgstr "" 953 1068 954 #: core/collections/templates/collections/category_list_as_forum.html:1 21069 #: core/collections/templates/collections/category_list_as_forum.html:14 955 1070 msgid "Name" 956 1071 msgstr "" 957 1072 958 #: core/collections/templates/collections/category_list_as_forum.html:1 41073 #: core/collections/templates/collections/category_list_as_forum.html:16 959 1074 msgid "Created" 960 1075 msgstr "" 961 1076 962 #: core/collections/templates/collections/category_list_as_forum.html:1 51077 #: core/collections/templates/collections/category_list_as_forum.html:17 963 1078 msgid "Last comment" 964 1079 msgstr "" 965 1080 966 #: core/collections/templates/collections/category_list_as_forum.html:2 2967 #: core/collections/templates/collections/category_list_as_forum.html:2 31081 #: core/collections/templates/collections/category_list_as_forum.html:25 1082 #: core/collections/templates/collections/category_list_as_forum.html:27 968 1083 msgid "by" 969 1084 msgstr "" 970 1085 971 #: core/frontend/__init__.py:1 501086 #: core/frontend/__init__.py:162 972 1087 #, python-format 973 1088 msgid "No default view has been set for %s" 974 1089 msgstr "" 975 1090 976 #: core/frontend/__init__.py:1 531091 #: core/frontend/__init__.py:165 977 1092 #, python-format 978 1093 msgid "You can set only one default view for %s" 979 1094 msgstr "" 980 1095 981 #: core/frontend/sites.py:1 491096 #: core/frontend/sites.py:156 982 1097 msgid "You need to create you site settings" 983 1098 msgstr "" 984 1099 985 #: core/frontend/sites.py:1 541100 #: core/frontend/sites.py:161 986 1101 msgid "You need to select a layout for the site" 987 1102 msgstr "" 988 1103 989 #: core/frontend/sites.py:16 01104 #: core/frontend/sites.py:167 990 1105 msgid "The site home page has not been set." 991 1106 msgstr "" 992 1107 993 #: core/frontend/sites.py:17 11108 #: core/frontend/sites.py:178 994 1109 msgid "No content object selected" 995 1110 msgstr "" … … 999 1114 msgstr "" 1000 1115 1001 #: templates/admin/change_form.html:21 templates/admin/change_list.html: 421116 #: templates/admin/change_form.html:21 templates/admin/change_list.html:62 1002 1117 #: templates/rosetta/pofile.html:46 1003 1118 msgid "Home" … … 1016 1131 msgstr "" 1017 1132 1018 #: templates/admin/change_form.html:41 templates/admin/change_list.html: 761133 #: templates/admin/change_form.html:41 templates/admin/change_list.html:96 1019 1134 msgid "Please correct the error below." 1020 1135 msgid_plural "Please correct the errors below." … … 1022 1137 msgstr[1] "" 1023 1138 1024 #: templates/admin/change_list.html: 581139 #: templates/admin/change_list.html:78 1025 1140 #, python-format 1026 1141 msgid "" … … 1029 1144 msgstr "" 1030 1145 1031 #: templates/admin/change_list.html: 681146 #: templates/admin/change_list.html:88 1032 1147 #, python-format 1033 1148 msgid "Add %(name)s" 1034 1149 msgstr "" 1035 1150 1036 #: templates/admin/change_list.html: 871151 #: templates/admin/change_list.html:107 1037 1152 #: templates/admin/feincms/tree_editor.html:140 1038 1153 #: templates/admin/polls/change_list.html:7 1039 1154 msgid "Filter" 1155 msgstr "" 1156 1157 #: templates/admin/filter.html:2 1158 #, python-format 1159 msgid " By %(filter_title)s " 1040 1160 msgstr "" 1041 1161 … … 1128 1248 msgstr "" 1129 1249 1130 #: templates/cyclope/site_map.html: 51250 #: templates/cyclope/site_map.html:6 1131 1251 msgid "Site map" 1132 1252 msgstr "" … … 1147 1267 #: templates/cyclope/themes/neutronica/__init__.py:17 1148 1268 msgid "One sidebar" 1149 msgstr ""1150 1151 #: templates/cyclope/themes/neutrona/__init__.py:191152 #: templates/cyclope/themes/neutrona/__init__.py:311153 #: templates/cyclope/themes/neutronica/__init__.py:191154 #: templates/cyclope/themes/neutronica/__init__.py:311155 #: templates/cyclope/themes/neutronica/__init__.py:431156 msgid "header"1157 1269 msgstr "" 1158 1270 … … 1169 1281 #: templates/cyclope/themes/neutronica/__init__.py:34 1170 1282 #: templates/cyclope/themes/neutronica/__init__.py:44 1283 #: templates/cyclope/themes/neutronica/__init__.py:60 1171 1284 msgid "before content" 1172 1285 msgstr "" … … 1177 1290 #: templates/cyclope/themes/neutronica/__init__.py:35 1178 1291 #: templates/cyclope/themes/neutronica/__init__.py:45 1292 #: templates/cyclope/themes/neutronica/__init__.py:61 1179 1293 msgid "after content" 1180 1294 msgstr "" … … 1185 1299 #: templates/cyclope/themes/neutronica/__init__.py:36 1186 1300 #: templates/cyclope/themes/neutronica/__init__.py:46 1301 #: templates/cyclope/themes/neutronica/__init__.py:62 1187 1302 msgid "footer" 1188 1303 msgstr "" … … 1223 1338 #: templates/cyclope/themes/neutronica/__init__.py:41 1224 1339 msgid "No sidebars" 1340 msgstr "" 1341 1342 #: templates/cyclope/themes/neutronica/__init__.py:57 1343 msgid "Newsletter" 1225 1344 msgstr "" 1226 1345 -
cyclope/locale/pt/LC_MESSAGES/django.po
r252 r269 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2010-1 1-24 15:49-0300\n"11 "POT-Creation-Date: 2010-12-12 02:32-0300\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 30 30 msgstr "" 31 31 32 #: dashboard.py:100 32 #: dashboard.py:45 33 msgid "Quick links" 34 msgstr "" 35 36 #: dashboard.py:51 37 msgid "Browse media files" 38 msgstr "" 39 40 #: dashboard.py:54 41 msgid "Return to site" 42 msgstr "" 43 44 #: dashboard.py:73 33 45 msgid "Content" 34 46 msgstr "" 35 47 36 #: dashboard.py: 10648 #: dashboard.py:79 37 49 msgid "Create, delete or modify content for your website" 38 50 msgstr "" 39 51 40 #: dashboard.py: 10952 #: dashboard.py:82 41 53 msgid "Main" 42 54 msgstr "" 43 55 44 #: dashboard.py: 11656 #: dashboard.py:89 45 57 msgid "Multimedia Library" 46 58 msgstr "" 47 59 48 #: dashboard.py:1 2860 #: dashboard.py:101 49 61 msgid "Authors and Sources" 50 62 msgstr "" 51 63 52 #: dashboard.py:1 3564 #: dashboard.py:108 53 65 msgid "Polls" 54 66 msgstr "" 55 67 56 #: dashboard.py:1 46apps/articles/templates/articles/article_detail.html:3768 #: dashboard.py:119 apps/articles/templates/articles/article_detail.html:37 57 69 #: apps/polls/templates/polls/poll_detail.html:34 58 #: core/collections/templates/collections/category_list_as_forum.html:1 370 #: core/collections/templates/collections/category_list_as_forum.html:15 59 71 msgid "Comments" 60 72 msgstr "" 61 73 62 #: dashboard.py:1 4874 #: dashboard.py:121 63 75 msgid "Review and moderate user comments" 64 76 msgstr "" 65 77 66 #: dashboard.py:1 5778 #: dashboard.py:130 67 79 msgid "Categorization" 68 80 msgstr "" 69 81 70 #: dashboard.py:1 6382 #: dashboard.py:136 71 83 msgid "Classify the content in your website" 72 84 msgstr "" 73 85 74 #: dashboard.py:1 6686 #: dashboard.py:139 75 87 msgid "Collections" 76 88 msgstr "" 77 89 78 #: dashboard.py:1 7390 #: dashboard.py:146 79 91 msgid "Tagging" 80 92 msgstr "" 81 93 94 #: dashboard.py:154 95 msgid "Site structure" 96 msgstr "" 97 98 #: dashboard.py:156 99 msgid "Modify the menus and site layouts" 100 msgstr "" 101 102 #: dashboard.py:167 103 msgid "Global settings" 104 msgstr "" 105 82 106 #: dashboard.py:181 83 msgid "Site structure"84 msgstr ""85 86 #: dashboard.py:18387 msgid "Modify the menus and site layouts"88 msgstr ""89 90 #: dashboard.py:19491 msgid "Global settings"92 msgstr ""93 94 #: dashboard.py:20795 107 msgid "Advanced" 96 108 msgstr "" 97 109 110 #: dashboard.py:187 111 msgid "Advanced configuration" 112 msgstr "" 113 114 #: dashboard.py:190 115 msgid "Auth" 116 msgstr "" 117 118 #: dashboard.py:196 119 msgid "Registration" 120 msgstr "" 121 122 #: dashboard.py:202 123 msgid "Sites" 124 msgstr "" 125 98 126 #: dashboard.py:213 99 msgid "Advanced configuration" 100 msgstr "" 101 102 #: dashboard.py:216 103 msgid "Auth" 127 msgid "Recent Actions" 104 128 msgstr "" 105 129 106 130 #: 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 131 msgid "Cyclope 3 community and support" 132 msgstr "" 133 134 #: dashboard.py:229 135 msgid "Official website" 136 msgstr "" 137 138 #: dashboard.py:234 139 msgid "Tutorials" 140 msgstr "" 141 142 #: default_settings.py:169 131 143 msgid "Admin Thumbnail" 132 144 msgstr "" 133 145 134 #: default_settings.py:1 69146 #: default_settings.py:171 135 147 msgid "Thumbnail (140px)" 136 148 msgstr "" 137 149 138 #: default_settings.py:17 1150 #: default_settings.py:173 139 151 msgid "Small (300px)" 140 152 msgstr "" 141 153 142 #: default_settings.py:17 3154 #: default_settings.py:175 143 155 msgid "Medium (460px)" 144 156 msgstr "" 145 157 146 #: default_settings.py:17 5158 #: default_settings.py:177 147 159 msgid "Big (620px)" 148 160 msgstr "" 149 161 150 #: default_settings.py:17 7162 #: default_settings.py:179 151 163 msgid "Cropped (60x60px)" 152 164 msgstr "" 153 165 154 #: default_settings.py:1 79166 #: default_settings.py:181 155 167 msgid "Cropped Thumbnail (140x140px)" 156 168 msgstr "" … … 164 176 msgstr "" 165 177 166 #: forms.py:74 core/collections/admin.py:1 05178 #: forms.py:74 core/collections/admin.py:115 167 179 msgid "Parent" 168 180 msgstr "" … … 215 227 msgstr "" 216 228 217 #: frontend_views.py:6 6229 #: frontend_views.py:62 218 230 msgid "flat list of all items for the selected Menu" 219 231 msgstr "" 220 232 221 #: frontend_views.py:8 6233 #: frontend_views.py:81 222 234 msgid "hierarchical list of the items in the selected menu" 223 235 msgstr "" 224 236 225 #: frontend_views.py:1 40237 #: frontend_views.py:134 226 238 msgid "list view of children of the current menu item" 227 239 msgstr "" 228 240 229 #: frontend_views.py:16 8241 #: frontend_views.py:161 230 242 msgid "expanded hierarchical list of all collection and menus" 231 243 msgstr "" 232 244 233 #: models.py: 59245 #: models.py:60 234 246 msgid "templating theme" 235 247 msgstr "" 236 248 237 #: models.py:6 1249 #: models.py:62 238 250 msgid "default layout" 239 251 msgstr "" 240 252 241 #: models.py:6 3 models.py:289253 #: models.py:64 models.py:293 242 254 msgid "allow comments" 243 255 msgstr "" 244 256 245 #: models.py:6 5 models.py:292257 #: models.py:66 models.py:296 246 258 msgid "enabled" 247 259 msgstr "" 248 260 249 #: models.py:6 6 models.py:293261 #: models.py:67 models.py:297 250 262 msgid "disabled" 251 263 msgstr "" 252 264 253 #: models.py: 69265 #: models.py:70 254 266 msgid "global title" 255 267 msgstr "" 256 268 257 #: models.py:7 1269 #: models.py:72 258 270 msgid "keywords" 259 271 msgstr "" 260 272 261 #: models.py:7 2apps/medialibrary/models.py:37 apps/polls/models.py:36273 #: models.py:73 apps/medialibrary/models.py:37 apps/polls/models.py:36 262 274 #: core/collections/models.py:53 core/collections/models.py:83 263 275 msgid "description" 264 276 msgstr "" 265 277 266 #: models.py:78 models.py:79 278 #: models.py:75 279 msgid "newsletter collection" 280 msgstr "" 281 282 #: models.py:76 283 msgid "" 284 "This is the collection that will group the contents for your newsletters." 285 msgstr "" 286 287 #: models.py:82 models.py:83 267 288 msgid "site settings" 268 289 msgstr "" 269 290 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 272 294 msgid "name" 273 295 msgstr "" 274 296 275 #: models.py:9 0297 #: models.py:94 276 298 msgid "main menu" 277 299 msgstr "" 278 300 279 #: models.py:1 07 models.py:116301 #: models.py:111 models.py:120 280 302 msgid "menu" 281 303 msgstr "" 282 304 283 #: models.py:1 08305 #: models.py:112 284 306 msgid "menus" 285 307 msgstr "" 286 308 287 #: models.py:1 19core/collections/models.py:80309 #: models.py:123 core/collections/models.py:80 288 310 msgid "parent" 289 311 msgstr "" 290 312 291 #: models.py:12 0core/collections/models.py:81313 #: models.py:124 core/collections/models.py:81 292 314 msgid "children" 293 315 msgstr "" 294 316 295 #: models.py:12 4317 #: models.py:128 296 318 msgid "site home" 297 319 msgstr "" 298 320 299 #: models.py:12 5321 #: models.py:129 300 322 msgid "custom URL" 301 323 msgstr "" 302 324 303 #: models.py:1 29 models.py:241325 #: models.py:133 models.py:245 apps/newsletter/models.py:42 304 326 msgid "layout" 305 327 msgstr "" 306 328 307 #: models.py:13 1329 #: models.py:135 308 330 msgid "Persistent layout" 309 331 msgstr "" 310 332 311 #: models.py:13 2333 #: models.py:136 312 334 msgid "" 313 335 "If the layout is marked as persistent it will be in use until the user " … … 315 337 msgstr "" 316 338 317 #: models.py:1 36 models.py:211339 #: models.py:140 models.py:215 318 340 msgid "type" 319 341 msgstr "" 320 342 321 #: models.py:1 38 models.py:219343 #: models.py:142 models.py:223 322 344 msgid "object" 323 345 msgstr "" 324 346 325 #: models.py:14 4 models.py:213347 #: models.py:148 models.py:217 326 348 msgid "view" 327 349 msgstr "" 328 350 329 #: models.py: 198351 #: models.py:202 330 352 msgid "menu item" 331 353 msgstr "" 332 354 333 #: models.py: 199355 #: models.py:203 334 356 msgid "menu items" 335 357 msgstr "" 336 358 337 #: models.py:2 07359 #: models.py:211 338 360 msgid "region" 339 361 msgstr "" 340 362 341 #: models.py:2 16363 #: models.py:220 342 364 msgid "weight" 343 365 msgstr "" 344 366 345 #: models.py:23 5367 #: models.py:239 346 368 msgid "layout template" 347 369 msgstr "" 348 370 349 #: models.py:24 2371 #: models.py:246 350 372 msgid "layouts" 351 373 msgstr "" 352 374 353 #: models.py:2 49 models.py:254 core/collections/models.py:144375 #: models.py:253 models.py:258 core/collections/models.py:145 354 376 msgid "content type" 355 377 msgstr "" 356 378 357 #: models.py:2 69379 #: models.py:273 358 380 msgid "related content" 359 381 msgstr "" 360 382 361 #: models.py:27 0383 #: models.py:274 362 384 msgid "related contents" 363 385 msgstr "" 364 386 365 #: models.py:28 0387 #: models.py:284 366 388 msgid "tags" 367 389 msgstr "" 368 390 369 #: models.py:28 1391 #: models.py:285 370 392 msgid "published" 371 393 msgstr "" 372 394 373 #: models.py:28 5395 #: models.py:289 374 396 msgid "creation date" 375 397 msgstr "" 376 398 377 #: models.py:2 87399 #: models.py:291 378 400 msgid "modification date" 379 401 msgstr "" 380 402 381 #: models.py:29 1403 #: models.py:295 382 404 msgid "default" 383 405 msgstr "" 384 406 385 #: models.py:3 37407 #: models.py:341 386 408 msgid "translations" 387 409 msgstr "" 388 410 389 #: models.py:35 5 models.py:390 models.py:400apps/medialibrary/models.py:47411 #: models.py:359 models.py:394 models.py:404 apps/medialibrary/models.py:47 390 412 #: apps/medialibrary/models.py:82 apps/medialibrary/models.py:95 391 413 #: apps/medialibrary/models.py:108 apps/medialibrary/models.py:121 … … 394 416 msgstr "" 395 417 396 #: models.py:3 58418 #: models.py:362 397 419 msgid "origin" 398 420 msgstr "" 399 421 400 #: models.py:36 0422 #: models.py:364 401 423 msgid "notes" 402 424 msgstr "" 403 425 404 #: models.py:36 2core/collections/models.py:52426 #: models.py:366 core/collections/models.py:52 405 427 msgid "content types" 406 428 msgstr "" 407 429 408 #: models.py:36 3430 #: models.py:367 409 431 msgid "Select the content types this author is related to." 410 432 msgstr "" 411 433 412 #: models.py:3 69apps/articles/models.py:46 apps/forum/models.py:38434 #: models.py:373 apps/articles/models.py:46 apps/forum/models.py:38 413 435 #: apps/medialibrary/models.py:35 414 436 msgid "author" 415 437 msgstr "" 416 438 417 #: models.py:37 0439 #: models.py:374 418 440 msgid "authors" 419 441 msgstr "" 420 442 421 #: models.py:3 78443 #: models.py:382 422 444 msgid "link" 423 445 msgstr "" 424 446 425 #: models.py:38 4apps/articles/models.py:47447 #: models.py:388 apps/articles/models.py:47 426 448 msgid "source" 427 449 msgstr "" 428 450 429 #: models.py:38 5451 #: models.py:389 430 452 msgid "sources" 431 453 msgstr "" 432 454 433 #: models.py: 396455 #: models.py:400 434 456 msgid "Thumbnail Image" 435 457 msgstr "" 436 458 437 #: models.py:40 1459 #: models.py:405 438 460 msgid "images" 439 461 msgstr "" 440 462 441 #: models.py:4 07463 #: models.py:411 442 464 msgid "avatar" 443 465 msgstr "" 444 466 445 #: models.py:4 09467 #: models.py:413 446 468 msgid "city" 447 469 msgstr "" 448 470 449 #: models.py:41 0471 #: models.py:414 450 472 msgid "about myself" 451 473 msgstr "" 452 474 453 #: models.py:41 3475 #: models.py:417 454 476 msgid "public" 455 477 msgstr "" 456 478 457 #: models.py:41 4479 #: models.py:418 458 480 msgid "Choose whether your profile info should be publicly visible or not" 459 481 msgstr "" 460 482 461 #: settings.py: 90483 #: settings.py:89 462 484 msgid "You need to set the CYCLOPE_PROJECT_PATH in your settings file." 463 485 msgstr "" … … 489 511 #: apps/articles/frontend_views.py:34 490 512 msgid "detailed view of the selected Article" 513 msgstr "" 514 515 #: apps/articles/frontend_views.py:51 516 msgid "list of Article teasers" 517 msgstr "" 518 519 #: apps/articles/frontend_views.py:67 520 msgid "list of Article labeled icons" 491 521 msgstr "" 492 522 … … 591 621 msgstr "" 592 622 593 #: apps/forum/frontend_views.py:6 4623 #: apps/forum/frontend_views.py:63 594 624 msgid "create a new topic in the Forum selected" 595 625 msgstr "" … … 621 651 msgstr "" 622 652 623 #: apps/medialibrary/frontend_views.py:4 4653 #: apps/medialibrary/frontend_views.py:43 624 654 msgid "detailed view of the selected Picture" 625 655 msgstr "" 626 656 627 #: apps/medialibrary/frontend_views.py:5 2657 #: apps/medialibrary/frontend_views.py:51 628 658 msgid "detailed view of the selected Audio Track" 629 659 msgstr "" 630 660 631 #: apps/medialibrary/frontend_views.py: 60661 #: apps/medialibrary/frontend_views.py:59 632 662 msgid "detailed view of the selected Movie Clip" 633 663 msgstr "" 634 664 635 #: apps/medialibrary/frontend_views.py:6 8665 #: apps/medialibrary/frontend_views.py:67 636 666 msgid "detailed view of the selected Document" 637 667 msgstr "" 638 668 639 #: apps/medialibrary/frontend_views.py:7 6669 #: apps/medialibrary/frontend_views.py:75 640 670 msgid "detailed view of the selected File" 641 671 msgstr "" 642 672 643 #: apps/medialibrary/frontend_views.py:8 4673 #: apps/medialibrary/frontend_views.py:83 644 674 msgid "detailed view of the selected External Content" 645 675 msgstr "" 646 676 647 #: apps/medialibrary/frontend_views.py:9 2677 #: apps/medialibrary/frontend_views.py:91 648 678 msgid "detailed view of the selected Flash Movie" 649 679 msgstr "" … … 753 783 msgstr "" 754 784 785 #: apps/newsletter/admin.py:34 786 msgid "Current content category" 787 msgstr "" 788 789 #: apps/newsletter/admin.py:35 790 msgid "" 791 "This is the category which groups the content that will be sent with the " 792 "newsletter." 793 msgstr "" 794 795 #: apps/newsletter/frontend_views.py:13 796 msgid "show the current content for the selected Newsletter" 797 msgstr "" 798 799 #: apps/newsletter/frontend_views.py:32 800 msgid "show the header text of the selected Newsletter" 801 msgstr "" 802 803 #: apps/newsletter/models.py:38 804 msgid "sent date" 805 msgstr "" 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 814 msgid "header" 815 msgstr "" 816 817 #: apps/newsletter/models.py:43 818 msgid "sender" 819 msgstr "" 820 821 #: apps/newsletter/models.py:44 822 msgid "test recipients" 823 msgstr "" 824 825 #: apps/newsletter/models.py:45 826 msgid "recipients" 827 msgstr "" 828 829 #: apps/newsletter/models.py:51 830 msgid "newsletter" 831 msgstr "" 832 833 #: apps/newsletter/models.py:52 834 msgid "newsletters" 835 msgstr "" 836 837 #: apps/newsletter/templates/admin/newsletter_change_form.html:7 838 msgid "Preview" 839 msgstr "" 840 841 #: apps/newsletter/templates/admin/newsletter_change_form.html:8 842 msgid "Send test" 843 msgstr "" 844 845 #: apps/newsletter/templates/admin/newsletter_change_form.html:9 846 msgid "Send e-mail" 847 msgstr "" 848 849 #: apps/newsletter/templates/newsletter/mail_sent.html:5 850 msgid "The e-mail has been sent for newsletter " 851 msgstr "" 852 853 #: apps/newsletter/templates/newsletter/mail_sent.html:6 854 #: apps/newsletter/templates/newsletter/send_failed.html:11 855 msgid "Return to newsletter admin" 856 msgstr "" 857 858 #: apps/newsletter/templates/newsletter/send_failed.html:6 859 msgid "The e-mail for newsletter" 860 msgstr "" 861 862 #: apps/newsletter/templates/newsletter/send_failed.html:7 863 msgid "could not be sent." 864 msgstr "" 865 866 #: apps/newsletter/templates/newsletter/send_failed.html:9 867 msgid "You should try again later or contact your administrator." 868 msgstr "" 869 755 870 #: apps/polls/frontend_views.py:39 756 871 msgid "Poll submission form" 757 872 msgstr "" 758 873 759 #: apps/polls/frontend_views.py:7 8874 #: apps/polls/frontend_views.py:74 760 875 msgid "detailed view of the selected Poll" 761 876 msgstr "" … … 834 949 msgstr "" 835 950 836 #: core/collections/admin.py: 87templates/rosetta/pofile.html:59951 #: core/collections/admin.py:94 templates/rosetta/pofile.html:59 837 952 msgid "All" 838 953 msgstr "" 839 954 840 #: core/collections/admin.py: 94 core/collections/models.py:112841 #: core/collections/models.py:17 4955 #: core/collections/admin.py:104 core/collections/models.py:112 956 #: core/collections/models.py:175 842 957 msgid "categories" 843 958 msgstr "" 844 959 845 #: core/collections/admin.py:1 03960 #: core/collections/admin.py:113 846 961 msgid "Description" 847 962 msgstr "" 848 963 849 #: core/collections/admin.py:1 18964 #: core/collections/admin.py:128 850 965 msgid "Extra info" 851 966 msgstr "" 852 967 853 #: core/collections/admin.py:1 38968 #: core/collections/admin.py:148 854 969 msgid "Collection" 855 970 msgstr "" 856 971 857 #: core/collections/admin.py:1 40972 #: core/collections/admin.py:150 858 973 msgid "Category" 859 974 msgstr "" 860 975 861 #: core/collections/admin.py:1 88976 #: core/collections/admin.py:198 862 977 msgid "Default category listing view" 863 978 msgstr "" … … 867 982 msgstr "" 868 983 869 #: core/collections/frontend_views.py:5 9984 #: core/collections/frontend_views.py:58 870 985 msgid "default view for the Collection" 871 986 msgstr "" 872 987 873 #: core/collections/frontend_views.py:7 9988 #: core/collections/frontend_views.py:78 874 989 msgid "teaser list of Category members" 875 990 msgstr "" 876 991 877 #: core/collections/frontend_views.py:12 5992 #: core/collections/frontend_views.py:122 878 993 msgid "Labeled icon list of Category members" 879 994 msgstr "" 880 995 881 #: core/collections/frontend_views.py:13 7996 #: core/collections/frontend_views.py:134 882 997 msgid "simplified teaser list of Category members" 883 998 msgstr "" 884 999 885 #: core/collections/frontend_views.py:1 621000 #: core/collections/frontend_views.py:156 886 1001 msgid "teaser list of the root Categories of a Collection" 887 1002 msgstr "" 888 1003 889 #: core/collections/frontend_views.py:1 841004 #: core/collections/frontend_views.py:176 890 1005 msgid "hierarchical list of Categories in a Collection" 891 1006 msgstr "" 892 1007 893 #: core/collections/frontend_views.py:2 501008 #: core/collections/frontend_views.py:241 894 1009 msgid "hierarchical list of Categories that will show an icon list on click" 895 1010 msgstr "" 896 1011 897 #: core/collections/frontend_views.py:2 611012 #: core/collections/frontend_views.py:252 898 1013 msgid "list of Category members as forum view" 899 1014 msgstr "" … … 927 1042 msgstr "" 928 1043 929 #: core/collections/models.py:111 core/collections/models.py:14 11044 #: core/collections/models.py:111 core/collections/models.py:142 930 1045 msgid "category" 931 1046 msgstr "" 932 1047 933 #: core/collections/models.py:16 41048 #: core/collections/models.py:165 934 1049 msgid "categorization" 935 1050 msgstr "" 936 1051 937 #: core/collections/models.py:16 51052 #: core/collections/models.py:166 938 1053 msgid "categorizations" 939 1054 msgstr "" 940 1055 941 #: core/collections/models.py:18 11056 #: core/collections/models.py:182 942 1057 msgid "is orphan" 943 1058 msgstr "" … … 947 1062 msgstr "" 948 1063 949 #: core/collections/templates/collections/category_list_as_forum.html: 91064 #: core/collections/templates/collections/category_list_as_forum.html:10 950 1065 msgid "Create a new topic" 951 1066 msgstr "" 952 1067 953 #: core/collections/templates/collections/category_list_as_forum.html:1 21068 #: core/collections/templates/collections/category_list_as_forum.html:14 954 1069 msgid "Name" 955 1070 msgstr "" 956 1071 957 #: core/collections/templates/collections/category_list_as_forum.html:1 41072 #: core/collections/templates/collections/category_list_as_forum.html:16 958 1073 msgid "Created" 959 1074 msgstr "" 960 1075 961 #: core/collections/templates/collections/category_list_as_forum.html:1 51076 #: core/collections/templates/collections/category_list_as_forum.html:17 962 1077 msgid "Last comment" 963 1078 msgstr "" 964 1079 965 #: core/collections/templates/collections/category_list_as_forum.html:2 2966 #: core/collections/templates/collections/category_list_as_forum.html:2 31080 #: core/collections/templates/collections/category_list_as_forum.html:25 1081 #: core/collections/templates/collections/category_list_as_forum.html:27 967 1082 msgid "by" 968 1083 msgstr "" 969 1084 970 #: core/frontend/__init__.py:1 501085 #: core/frontend/__init__.py:162 971 1086 #, python-format 972 1087 msgid "No default view has been set for %s" 973 1088 msgstr "" 974 1089 975 #: core/frontend/__init__.py:1 531090 #: core/frontend/__init__.py:165 976 1091 #, python-format 977 1092 msgid "You can set only one default view for %s" 978 1093 msgstr "" 979 1094 980 #: core/frontend/sites.py:1 491095 #: core/frontend/sites.py:156 981 1096 msgid "You need to create you site settings" 982 1097 msgstr "" 983 1098 984 #: core/frontend/sites.py:1 541099 #: core/frontend/sites.py:161 985 1100 msgid "You need to select a layout for the site" 986 1101 msgstr "" 987 1102 988 #: core/frontend/sites.py:16 01103 #: core/frontend/sites.py:167 989 1104 msgid "The site home page has not been set." 990 1105 msgstr "" 991 1106 992 #: core/frontend/sites.py:17 11107 #: core/frontend/sites.py:178 993 1108 msgid "No content object selected" 994 1109 msgstr "" … … 998 1113 msgstr "" 999 1114 1000 #: templates/admin/change_form.html:21 templates/admin/change_list.html: 421115 #: templates/admin/change_form.html:21 templates/admin/change_list.html:62 1001 1116 #: templates/rosetta/pofile.html:46 1002 1117 msgid "Home" … … 1015 1130 msgstr "" 1016 1131 1017 #: templates/admin/change_form.html:41 templates/admin/change_list.html: 761132 #: templates/admin/change_form.html:41 templates/admin/change_list.html:96 1018 1133 msgid "Please correct the error below." 1019 1134 msgid_plural "Please correct the errors below." … … 1021 1136 msgstr[1] "" 1022 1137 1023 #: templates/admin/change_list.html: 581138 #: templates/admin/change_list.html:78 1024 1139 #, python-format 1025 1140 msgid "" … … 1028 1143 msgstr "" 1029 1144 1030 #: templates/admin/change_list.html: 681145 #: templates/admin/change_list.html:88 1031 1146 #, python-format 1032 1147 msgid "Add %(name)s" 1033 1148 msgstr "" 1034 1149 1035 #: templates/admin/change_list.html: 871150 #: templates/admin/change_list.html:107 1036 1151 #: templates/admin/feincms/tree_editor.html:140 1037 1152 #: templates/admin/polls/change_list.html:7 1038 1153 msgid "Filter" 1154 msgstr "" 1155 1156 #: templates/admin/filter.html:2 1157 #, python-format 1158 msgid " By %(filter_title)s " 1039 1159 msgstr "" 1040 1160 … … 1127 1247 msgstr "" 1128 1248 1129 #: templates/cyclope/site_map.html: 51249 #: templates/cyclope/site_map.html:6 1130 1250 msgid "Site map" 1131 1251 msgstr "" … … 1146 1266 #: templates/cyclope/themes/neutronica/__init__.py:17 1147 1267 msgid "One sidebar" 1148 msgstr ""1149 1150 #: templates/cyclope/themes/neutrona/__init__.py:191151 #: templates/cyclope/themes/neutrona/__init__.py:311152 #: templates/cyclope/themes/neutronica/__init__.py:191153 #: templates/cyclope/themes/neutronica/__init__.py:311154 #: templates/cyclope/themes/neutronica/__init__.py:431155 msgid "header"1156 1268 msgstr "" 1157 1269 … … 1168 1280 #: templates/cyclope/themes/neutronica/__init__.py:34 1169 1281 #: templates/cyclope/themes/neutronica/__init__.py:44 1282 #: templates/cyclope/themes/neutronica/__init__.py:60 1170 1283 msgid "before content" 1171 1284 msgstr "" … … 1176 1289 #: templates/cyclope/themes/neutronica/__init__.py:35 1177 1290 #: templates/cyclope/themes/neutronica/__init__.py:45 1291 #: templates/cyclope/themes/neutronica/__init__.py:61 1178 1292 msgid "after content" 1179 1293 msgstr "" … … 1184 1298 #: templates/cyclope/themes/neutronica/__init__.py:36 1185 1299 #: templates/cyclope/themes/neutronica/__init__.py:46 1300 #: templates/cyclope/themes/neutronica/__init__.py:62 1186 1301 msgid "footer" 1187 1302 msgstr "" … … 1222 1337 #: templates/cyclope/themes/neutronica/__init__.py:41 1223 1338 msgid "No sidebars" 1339 msgstr "" 1340 1341 #: templates/cyclope/themes/neutronica/__init__.py:57 1342 msgid "Newsletter" 1224 1343 msgstr "" 1225 1344 -
cyclope/media/css/admin_tools_theming.css
r219 r269 223 223 background: url('../images/filter-on.png') no-repeat 0 0 transparent; 224 224 } 225 226 #changelist-filter ul.categories-filter li { 227 margin-left: 0; padding-left: 0px; 228 } 229 230 #changelist-filter ul.categories-filter li.selected { 231 border: none; 232 margin-left: 0; padding-left: 12px; 233 background: url('../images/filter-on.png') no-repeat 0 0 transparent; 234 } 235 225 236 226 237 /* --- change list paginator ---- */ -
cyclope/models.py
r245 r269 44 44 45 45 import cyclope 46 from cyclope.core.collections.models import Collection 46 47 47 48 # we add South introspection rules for custom field TagAutocompleteField … … 71 72 keywords = models.TextField(_('keywords'), blank=True, default='') 72 73 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.')) 73 77 74 78 def __unicode__(self): -
cyclope/templates/admin/change_list.html
r265 r269 27 27 {# TODO(nicoechaniz): put this in a js file that loads only for BaseContent models #} 28 28 <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 39 42 </script> 40 43 -
cyclope/templates/cyclope/themes/neutronica/__init__.py
r245 r269 52 52 'regions': {} 53 53 }, 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 54 66 } -
cyclope/templatetags/layout.py
r229 r269 49 49 """ 50 50 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'])) 56 53 region_vars = {'layout_name': layout.slug, 'region_name': region_name} 57 54 -
cyclope/utils/__init__.py
r257 r269 93 93 else: 94 94 return super(LazyJSONEncoder, self).default(o) 95 96 # copied from django.templates.defaultfilters 97 def 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 30 30 31 31 from django.template import loader 32 from django.http import Http404 , HttpResponse32 from django.http import Http404 33 33 from django.core.xheaders import populate_xheaders 34 34 from django.core.exceptions import ObjectDoesNotExist -
demo/cyclope_project/media/filebrowser
r225 r269 1 ../../../../../ lib/python2.6/site-packages/filebrowser/media/filebrowser1 ../../../../../src/django-filebrowser/filebrowser/media/filebrowser
Note: See TracChangeset
for help on using the changeset viewer.

