Django

Code

Changeset 1187

Show
Ignore:
Timestamp:
11/11/05 17:49:51 (3 years ago)
Author:
rjwittams
Message:

Merged to trunk r1185

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/new-admin/django/bin/django-admin.py

    r1175 r1187  
    33from optparse import OptionParser 
    44import os, sys 
    5  
    6 # switch to english, because django-admin creates database content 
    7 # like permissions, and those shouldn't contain any translations 
    8 try: 
    9     from django.utils import translation 
    10     translation.activate('en-us') 
    11 except: 
    12     pass 
    135 
    146ACTION_MAPPING = { 
     
    8173    if not ACTION_MAPPING.has_key(action): 
    8274        print_error("Your action, %r, was invalid." % action, sys.argv[0]) 
     75 
     76    # switch to english, because django-admin creates database content 
     77    # like permissions, and those shouldn't contain any translations. 
     78    # But only do this if we should have a working settings file. 
     79    if action not in ('startproject', 'startapp'): 
     80        from django.utils import translation 
     81        translation.activate('en-us') 
     82 
    8383    if action in ('createsuperuser', 'init', 'validate'): 
    8484        ACTION_MAPPING[action]() 
  • django/branches/new-admin/django/conf/global_settings.py

    r1169 r1187  
    8080EMAIL_HOST = 'localhost' 
    8181 
     82# List of strings representing installed apps. 
     83INSTALLED_APPS = () 
     84 
    8285# List of locations of the template source files, in search order. 
    8386TEMPLATE_DIRS = () 
  • django/branches/new-admin/django/conf/locale/bn/LC_MESSAGES/django.po

    r1160 r1187  
    99"Project-Id-Version: Django CVS\n" 
    1010"Report-Msgid-Bugs-To: \n" 
    11 "POT-Creation-Date: 2005-11-10 05:53-0600\n" 
     11"POT-Creation-Date: 2005-11-11 16:13-0600\n" 
    1212"PO-Revision-Date: 2005-11-10 06:11+0530\n" 
    1313"Last-Translator: Baishampayan Ghose <b.ghose@gnu.org.in>\n" 
     
    310310msgstr "%(site_name)s দল" 
    311311 
     312#: contrib/redirects/models/redirects.py:7 
     313msgid "redirect from" 
     314msgstr "রিডাইরেক্ট করা" 
     315 
     316#: contrib/redirects/models/redirects.py:8 
     317msgid "" 
     318"This should be an absolute path, excluding the domain name. Example: '/" 
     319"events/search/'." 
     320msgstr "" 
     321"এইটি একটি পরম পাথ হওয়া উচিত, ক্ষেত্র নাম বাদ দিয়ে। উদাহরণ: '/events/search / '।" 
     322 
     323#: contrib/redirects/models/redirects.py:9 
     324msgid "redirect to" 
     325msgstr "রিডাইরেক্ট কর" 
     326 
     327#: contrib/redirects/models/redirects.py:10 
     328msgid "" 
     329"This can be either an absolute path (as above) or a full URL starting with " 
     330"'http://'." 
     331msgstr "" 
     332"এইটি হয় একটি পরম পাথ হতে পারে  (যেমন উপরে) অথবা 'http:// এর সঙ্গে শুরু হওয়া " 
     333"একটি পূর্ণ ইউ.আর.এল ।" 
     334 
     335#: contrib/redirects/models/redirects.py:12 
     336msgid "redirect" 
     337msgstr "রিডাইরেক্ট" 
     338 
     339#: contrib/redirects/models/redirects.py:13 
     340msgid "redirects" 
     341msgstr "রিডাইরেক্ট করে" 
     342 
     343#: contrib/flatpages/models/flatpages.py:6 
     344msgid "URL" 
     345msgstr "ইউ.আর.এল" 
     346 
     347#: contrib/flatpages/models/flatpages.py:7 
     348msgid "" 
     349"Example: '/about/contact/'. Make sure to have leading and trailing slashes." 
     350msgstr "" 
     351"উদাহরণ: '/about/contact / '। প্রধান এবং অনুসরণ করা স্ল্যাশ যেন নিশ্চিত ভাবে থাকে।" 
     352 
     353#: contrib/flatpages/models/flatpages.py:8 
     354msgid "title" 
     355msgstr "শিরোনাম" 
     356 
     357#: contrib/flatpages/models/flatpages.py:9 
     358msgid "content" 
     359msgstr "অভ্যন্তরস্থ বস্তু" 
     360 
     361#: contrib/flatpages/models/flatpages.py:10 
     362msgid "enable comments" 
     363msgstr "মন্তব্য সক্রিয় করুন" 
     364 
     365#: contrib/flatpages/models/flatpages.py:11 
     366msgid "template name" 
     367msgstr "ছাঁদ নাম" 
     368 
     369#: contrib/flatpages/models/flatpages.py:12 
     370#, fuzzy 
     371msgid "" 
     372"Example: 'flatpages/contact_page'. If this isn't provided, the system will " 
     373"use 'flatpages/default'." 
     374msgstr "" 
     375"উদাহরণ: 'flatfiles/contact_page '। যদি এইটি দেওয়া না থাকে তাহলে সিস্টেম " 
     376"'flatfiles/default ব্যবহার করবে।" 
     377 
     378#: contrib/flatpages/models/flatpages.py:13 
     379msgid "registration required" 
     380msgstr "নিবন্ধন প্রয়োজনীয়" 
     381 
     382#: contrib/flatpages/models/flatpages.py:13 
     383msgid "If this is checked, only logged-in users will be able to view the page." 
     384msgstr "" 
     385"যদি এইটি টিক্ করা থাকে তাহলে শুধুমাত্র প্রবেশ করা ব্যবহারকারী পাতা দেখতে সক্ষম হবে।" 
     386 
     387#: contrib/flatpages/models/flatpages.py:17 
     388msgid "flat page" 
     389msgstr "চ্যাপ্টা পাতা" 
     390 
     391#: contrib/flatpages/models/flatpages.py:18 
     392msgid "flat pages" 
     393msgstr "চ্যাপ্টা পাতাগুলো" 
     394 
    312395#: utils/dates.py:6 
    313396msgid "Monday" 
     
    458541msgstr "অভ্যন্তরস্থ বস্তু ধরন" 
    459542 
    460 #: models/core.py:68 
    461 msgid "redirect from" 
    462 msgstr "রিডাইরেক্ট করা" 
    463  
    464 #: models/core.py:69 
    465 msgid "" 
    466 "This should be an absolute path, excluding the domain name. Example: '/" 
    467 "events/search/'." 
    468 msgstr "" 
    469 "এইটি একটি পরম পাথ হওয়া উচিত, ক্ষেত্র নাম বাদ দিয়ে। উদাহরণ: '/events/search / '।" 
    470  
    471 #: models/core.py:70 
    472 msgid "redirect to" 
    473 msgstr "রিডাইরেক্ট কর" 
    474  
    475 #: models/core.py:71 
    476 msgid "" 
    477 "This can be either an absolute path (as above) or a full URL starting with " 
    478 "'http://'." 
    479 msgstr "" 
    480 "এইটি হয় একটি পরম পাথ হতে পারে  (যেমন উপরে) অথবা 'http:// এর সঙ্গে শুরু হওয়া " 
    481 "একটি পূর্ণ ইউ.আর.এল ।" 
    482  
    483 #: models/core.py:73 
    484 msgid "redirect" 
    485 msgstr "রিডাইরেক্ট" 
    486  
    487 #: models/core.py:74 
    488 msgid "redirects" 
    489 msgstr "রিডাইরেক্ট করে" 
    490  
    491 #: models/core.py:87 
    492 msgid "URL" 
    493 msgstr "ইউ.আর.এল" 
    494  
    495 #: models/core.py:88 
    496 msgid "" 
    497 "Example: '/about/contact/'. Make sure to have leading and trailing slashes." 
    498 msgstr "" 
    499 "উদাহরণ: '/about/contact / '। প্রধান এবং অনুসরণ করা স্ল্যাশ যেন নিশ্চিত ভাবে থাকে।" 
    500  
    501 #: models/core.py:89 
    502 msgid "title" 
    503 msgstr "শিরোনাম" 
    504  
    505 #: models/core.py:90 
    506 msgid "content" 
    507 msgstr "অভ্যন্তরস্থ বস্তু" 
    508  
    509 #: models/core.py:91 
    510 msgid "enable comments" 
    511 msgstr "মন্তব্য সক্রিয় করুন" 
    512  
    513 #: models/core.py:92 
    514 msgid "template name" 
    515 msgstr "ছাঁদ নাম" 
    516  
    517 #: models/core.py:93 
    518 msgid "" 
    519 "Example: 'flatfiles/contact_page'. If this isn't provided, the system will " 
    520 "use 'flatfiles/default'." 
    521 msgstr "" 
    522 "উদাহরণ: 'flatfiles/contact_page '। যদি এইটি দেওয়া না থাকে তাহলে সিস্টেম " 
    523 "'flatfiles/default ব্যবহার করবে।" 
    524  
    525 #: models/core.py:94 
    526 msgid "registration required" 
    527 msgstr "নিবন্ধন প্রয়োজনীয়" 
    528  
    529 #: models/core.py:94 
    530 msgid "If this is checked, only logged-in users will be able to view the page." 
    531 msgstr "" 
    532 "যদি এইটি টিক্ করা থাকে তাহলে শুধুমাত্র প্রবেশ করা ব্যবহারকারী পাতা দেখতে সক্ষম হবে।" 
    533  
    534 #: models/core.py:98 
    535 msgid "flat page" 
    536 msgstr "চ্যাপ্টা পাতা" 
    537  
    538 #: models/core.py:99 
    539 msgid "flat pages" 
    540 msgstr "চ্যাপ্টা পাতাগুলো" 
    541  
    542 #: models/core.py:117 
     543#: models/core.py:67 
    543544msgid "session key" 
    544545msgstr "অধিবেশন চাবি" 
    545546 
    546 #: models/core.py:11
     547#: models/core.py:6
    547548msgid "session data" 
    548549msgstr "অধিবেশন তথ্য" 
    549550 
    550 #: models/core.py:11
     551#: models/core.py:6
    551552msgid "expire date" 
    552553msgstr "শেষ তারিখ" 
    553554 
    554 #: models/core.py:12
     555#: models/core.py:7
    555556msgid "session" 
    556557msgstr "অধিবেশন" 
    557558 
    558 #: models/core.py:12
     559#: models/core.py:7
    559560msgid "sessions" 
    560561msgstr "সেশন" 
  • django/branches/new-admin/django/conf/locale/cs/LC_MESSAGES/django.po

    r1180 r1187  
    797797msgstr "klíč sezení" 
    798798 
    799 #: models/core.py:11
     799#: models/core.py:6
    800800msgid "session data" 
    801801msgstr "data sezení" 
    802802 
    803 #: models/core.py:11
     803#: models/core.py:6
    804804msgid "expire date" 
    805805msgstr "datum expirace" 
    806806 
    807 #: models/core.py:12
     807#: models/core.py:7
    808808msgid "session" 
    809809msgstr "sezení" 
    810810 
    811 #: models/core.py:12
     811#: models/core.py:7
    812812msgid "sessions" 
    813813msgstr "sezení" 
  • django/branches/new-admin/django/conf/locale/cy/LC_MESSAGES/django.po

    r1160 r1187  
    99"Project-Id-Version: PACKAGE VERSION\n" 
    1010"Report-Msgid-Bugs-To: \n" 
    11 "POT-Creation-Date: 2005-11-10 05:53-0600\n" 
     11"POT-Creation-Date: 2005-11-11 16:13-0600\n" 
    1212"PO-Revision-Date: 2005-11-05 HO:MI+ZONE\n" 
    1313"Last-Translator: Jason Davies <jason@jasondavies.com>\n" 
     
    308308msgstr "Y tîm %(site_name)s" 
    309309 
     310#: contrib/redirects/models/redirects.py:7 
     311msgid "redirect from" 
     312msgstr "ailgyfeirio o" 
     313 
     314#: contrib/redirects/models/redirects.py:8 
     315msgid "" 
     316"This should be an absolute path, excluding the domain name. Example: '/" 
     317"events/search/'." 
     318msgstr "" 
     319"Ddylai hon bod yn lwybr hollol, heb y parth-enw. Er enghraifft: '/" 
     320"digwyddiadau/chwilio/'." 
     321 
     322#: contrib/redirects/models/redirects.py:9 
     323msgid "redirect to" 
     324msgstr "ailgyfeirio i" 
     325 
     326#: contrib/redirects/models/redirects.py:10 
     327msgid "" 
     328"This can be either an absolute path (as above) or a full URL starting with " 
     329"'http://'." 
     330msgstr "" 
     331"Gellir fod naill ai llwybr hollol (fel uwch) neu URL hollol yn ddechrau â " 
     332"'http://'." 
     333 
     334#: contrib/redirects/models/redirects.py:12 
     335msgid "redirect" 
     336msgstr "ailgyfeiriad" 
     337 
     338#: contrib/redirects/models/redirects.py:13 
     339msgid "redirects" 
     340msgstr "ailgyfeiriadau" 
     341 
     342#: contrib/flatpages/models/flatpages.py:6 
     343msgid "URL" 
     344msgstr "URL" 
     345 
     346#: contrib/flatpages/models/flatpages.py:7 
     347msgid "" 
     348"Example: '/about/contact/'. Make sure to have leading and trailing slashes." 
     349msgstr "" 
     350"Er enghraifft: '/amdan/cyswllt/'. Sicrhewch gennych slaesau arweiniol ac " 
     351"trywyddiol." 
     352 
     353#: contrib/flatpages/models/flatpages.py:8 
     354msgid "title" 
     355msgstr "teitl" 
     356 
     357#: contrib/flatpages/models/flatpages.py:9 
     358msgid "content" 
     359msgstr "cynnwys" 
     360 
     361#: contrib/flatpages/models/flatpages.py:10 
     362msgid "enable comments" 
     363msgstr "galluogi sylwadau" 
     364 
     365#: contrib/flatpages/models/flatpages.py:11 
     366msgid "template name" 
     367msgstr "enw'r templed" 
     368 
     369#: contrib/flatpages/models/flatpages.py:12 
     370#, fuzzy 
     371msgid "" 
     372"Example: 'flatpages/contact_page'. If this isn't provided, the system will " 
     373"use 'flatpages/default'." 
     374msgstr "" 
     375"Er enghraifft: 'flatfiles/tudalen_cyswllt'. Os nid darparwyd, ddefnyddia'r " 
     376"system 'flatfiles/default'." 
     377 
     378#: contrib/flatpages/models/flatpages.py:13 
     379msgid "registration required" 
     380msgstr "cofrestriad gofynnol" 
     381 
     382#: contrib/flatpages/models/flatpages.py:13 
     383msgid "If this is checked, only logged-in users will be able to view the page." 
     384msgstr "" 
     385"Os wedi dewis, dim ond defnyddwyr a mewngofnodwyd bydd yn gallu gweld y " 
     386"tudalen." 
     387 
     388#: contrib/flatpages/models/flatpages.py:17 
     389msgid "flat page" 
     390msgstr "tudalen fflat" 
     391 
     392#: contrib/flatpages/models/flatpages.py:18 
     393msgid "flat pages" 
     394msgstr "tudalennau fflat" 
     395 
    310396#: utils/dates.py:6 
    311397msgid "Monday" 
     
    456542msgstr "mathau cynnwys" 
    457543 
    458 #: models/core.py:68 
    459 msgid "redirect from" 
    460 msgstr "ailgyfeirio o" 
    461  
    462 #: models/core.py:69 
    463 msgid "" 
    464 "This should be an absolute path, excluding the domain name. Example: '/" 
    465 "events/search/'." 
    466 msgstr "" 
    467 "Ddylai hon bod yn lwybr hollol, heb y parth-enw. Er enghraifft: '/" 
    468 "digwyddiadau/chwilio/'." 
    469  
    470 #: models/core.py:70 
    471 msgid "redirect to" 
    472 msgstr "ailgyfeirio i" 
    473  
    474 #: models/core.py:71 
    475 msgid "" 
    476 "This can be either an absolute path (as above) or a full URL starting with " 
    477 "'http://'." 
    478 msgstr "" 
    479 "Gellir fod naill ai llwybr hollol (fel uwch) neu URL hollol yn ddechrau â " 
    480 "'http://'." 
    481  
    482 #: models/core.py:73 
    483 msgid "redirect" 
    484 msgstr "ailgyfeiriad" 
    485  
    486 #: models/core.py:74 
    487 msgid "redirects" 
    488 msgstr "ailgyfeiriadau" 
    489  
    490 #: models/core.py:87 
    491 msgid "URL" 
    492 msgstr "URL" 
    493  
    494 #: models/core.py:88 
    495 msgid "" 
    496 "Example: '/about/contact/'. Make sure to have leading and trailing slashes." 
    497 msgstr "" 
    498 "Er enghraifft: '/amdan/cyswllt/'. Sicrhewch gennych slaesau arweiniol ac " 
    499 "trywyddiol." 
    500  
    501 #: models/core.py:89 
    502 msgid "title" 
    503 msgstr "teitl" 
    504  
    505 #: models/core.py:90 
    506 msgid "content" 
    507 msgstr "cynnwys" 
    508  
    509 #: models/core.py:91 
    510 msgid "enable comments" 
    511 msgstr "galluogi sylwadau" 
    512  
    513 #: models/core.py:92 
    514 msgid "template name" 
    515 msgstr "enw'r templed" 
    516  
    517 #: models/core.py:93 
    518 msgid "" 
    519 "Example: 'flatfiles/contact_page'. If this isn't provided, the system will " 
    520 "use 'flatfiles/default'." 
    521 msgstr "" 
    522 "Er enghraifft: 'flatfiles/tudalen_cyswllt'. Os nid darparwyd, ddefnyddia'r " 
    523 "system 'flatfiles/default'." 
    524  
    525 #: models/core.py:94 
    526 msgid "registration required" 
    527 msgstr "cofrestriad gofynnol" 
    528  
    529 #: models/core.py:94 
    530 msgid "If this is checked, only logged-in users will be able to view the page." 
    531 msgstr "" 
    532 "Os wedi dewis, dim ond defnyddwyr a mewngofnodwyd bydd yn gallu gweld y " 
    533 "tudalen." 
    534  
    535 #: models/core.py:98 
    536 msgid "flat page" 
    537 msgstr "tudalen fflat" 
    538  
    539 #: models/core.py:99 
    540 msgid "flat pages" 
    541 msgstr "tudalennau fflat" 
    542  
    543 #: models/core.py:117 
     544#: models/core.py:67 
    544545msgid "session key" 
    545546msgstr "goriad sesiwn" 
    546547 
    547 #: models/core.py:11
     548#: models/core.py:6
    548549msgid "session data" 
    549550msgstr "data sesiwn" 
    550551 
    551 #: models/core.py:11
     552#: models/core.py:6
    552553msgid "expire date" 
    553554msgstr "dyddiad darfod" 
    554555 
    555 #: models/core.py:12
     556#: models/core.py:7
    556557msgid "session" 
    557558msgstr "sesiwn" 
    558559 
    559 #: models/core.py:12
     560#: models/core.py:7
    560561msgid "sessions" 
    561562msgstr "sesiynau" 
  • django/branches/new-admin/django/conf/locale/de/LC_MESSAGES/django.po

    r1180 r1187  
    276276 
    277277#: contrib/admin/templates/admin/404.html:10 
     278#, fuzzy 
    278279msgid "We're sorry, but the requested page could not be found." 
    279280msgstr "" 
     
    796797msgstr "Sitzungs-ID" 
    797798 
    798 #: models/core.py:11
     799#: models/core.py:6
    799800msgid "session data" 
    800801msgstr "Sitzungsdaten" 
    801802 
    802 #: models/core.py:11
     803#: models/core.py:6
    803804msgid "expire date" 
    804805msgstr "Verfallsdatum" 
    805806 
    806 #: models/core.py:12
     807#: models/core.py:7
    807808msgid "session" 
    808809msgstr "Sitzung" 
    809810 
    810 #: models/core.py:12
     811#: models/core.py:7
    811812msgid "sessions" 
    812813msgstr "Sitzungen" 
  • django/branches/new-admin/django/conf/locale/en/LC_MESSAGES/django.po

    r1180 r1187  
    763763msgstr "" 
    764764 
    765 #: models/core.py:11
     765#: models/core.py:6
    766766msgid "session data" 
    767767msgstr "" 
    768768 
    769 #: models/core.py:11
     769#: models/core.py:6
    770770msgid "expire date" 
    771771msgstr "" 
    772772 
    773 #: models/core.py:12
     773#: models/core.py:7
    774774msgid "session" 
    775775msgstr "" 
    776776 
    777 #: models/core.py:12
     777#: models/core.py:7
    778778msgid "sessions" 
    779779msgstr "" 
  • django/branches/new-admin/django/conf/locale/es/LC_MESSAGES/django.po

    r1180 r1187  
    787787msgstr "" 
    788788 
    789 #: models/core.py:11
     789#: models/core.py:6
    790790msgid "session data" 
    791791msgstr "" 
    792792 
    793 #: models/core.py:11
     793#: models/core.py:6
    794794msgid "expire date" 
    795795msgstr "" 
    796796 
    797 #: models/core.py:12
     797#: models/core.py:7
    798798msgid "session" 
    799799msgstr "" 
    800800 
    801 #: models/core.py:12
     801#: models/core.py:7
    802802msgid "sessions" 
    803803msgstr "" 
  • django/branches/new-admin/django/conf/locale/fr/LC_MESSAGES/django.po

    r1180 r1187  
    800800msgstr "cl�e session" 
    801801 
    802 #: models/core.py:11
     802#: models/core.py:6
    803803msgid "session data" 
    804804msgstr "donn�de session" 
    805805 
    806 #: models/core.py:11
     806#: models/core.py:6
    807807msgid "expire date" 
    808808msgstr "date d'expiration" 
    809809 
    810 #: models/core.py:12
     810#: models/core.py:7
    811811msgid "session" 
    812812msgstr "session" 
    813813 
    814 #: models/core.py:12
     814#: models/core.py:7
    815815msgid "sessions" 
    816816msgstr "sessions" 
     
    12561256"d'une." 
    12571257 
     1258#~ msgid "Traditional Chinese" 
     1259#~ msgstr "Chinois traditionnel" 
     1260 
    12581261#~ msgid "Messages" 
    12591262#~ msgstr "Messages" 
  • django/branches/new-admin/django/conf/locale/gl/LC_MESSAGES/django.po

    r1180 r1187  
    251251 
    252252#: contrib/admin/views/doc.py:284 models/core.py:81 
     253#: contrib/flatpages/models/flatpages.py:6 
    253254msgid "URL" 
    254255msgstr "" 
     
    564565msgstr "O equipo de %(site_name)s" 
    565566 
     567#: contrib/redirects/models/redirects.py:7 models/core.py:62 
     568msgid "redirect from" 
     569msgstr "" 
     570 
     571#: contrib/redirects/models/redirects.py:8 models/core.py:63 
     572msgid "" 
     573"This should be an absolute path, excluding the domain name. Example: '/" 
     574"events/search/'." 
     575msgstr "" 
     576 
     577#: contrib/redirects/models/redirects.py:9 models/core.py:64 
     578msgid "redirect to" 
     579msgstr "" 
     580 
     581#: contrib/redirects/models/redirects.py:10 models/core.py:65 
     582msgid "" 
     583"This can be either an absolute path (as above) or a full URL starting with " 
     584"'http://'." 
     585msgstr "" 
     586 
     587#: contrib/redirects/models/redirects.py:12 models/core.py:67 
     588msgid "redirect" 
     589msgstr "" 
     590 
     591#: contrib/redirects/models/redirects.py:13 models/core.py:68 
     592msgid "redirects" 
     593msgstr "" 
     594 
     595#: contrib/flatpages/models/flatpages.py:7 models/core.py:82 
     596msgid "" 
     597"Example: '/about/contact/'. Make sure to have leading and trailing slashes." 
     598msgstr "" 
     599 
     600#: contrib/flatpages/models/flatpages.py:8 models/core.py:83 
     601msgid "title" 
     602msgstr "" 
     603 
     604#: contrib/flatpages/models/flatpages.py:9 models/core.py:84 
     605msgid "content" 
     606msgstr "" 
     607 
     608#: contrib/flatpages/models/flatpages.py:10 models/core.py:85 
     609msgid "enable comments" 
     610msgstr "" 
     611 
     612#: contrib/flatpages/models/flatpages.py:11 models/core.py:86 
     613msgid "template name" 
     614msgstr "" 
     615 
     616#: contrib/flatpages/models/flatpages.py:12 
     617msgid "" 
     618"Example: 'flatpages/contact_page'. If this isn't provided, the system will " 
     619"use 'flatpages/default'." 
     620msgstr "" 
     621 
     622#: contrib/flatpages/models/flatpages.py:13 models/core.py:88 
     623msgid "registration required" 
     624msgstr "" 
     625 
     626#: contrib/flatpages/models/flatpages.py:13 models/core.py:88 
     627msgid "If this is checked, only logged-in users will be able to view the page." 
     628msgstr "" 
     629 
     630#: contrib/flatpages/models/flatpages.py:17 models/core.py:92 
     631msgid "flat page" 
     632msgstr "" 
     633 
     634#: contrib/flatpages/models/flatpages.py:18 models/core.py:93 
     635msgid "flat pages" 
     636msgstr "" 
     637 
    566638#: utils/dates.py:6 
    567639msgid "Monday" 
     
    713785msgstr "" 
    714786 
    715 #: models/core.py:62 
    716 msgid "redirect from" 
    717 msgstr "" 
    718  
    719 #: models/core.py:63 
    720 msgid "" 
    721 "This should be an absolute path, excluding the domain name. Example: '/" 
    722 "events/search/'." 
    723 msgstr "" 
    724  
    725 #: models/core.py:64 
    726 msgid "redirect to" 
    727 msgstr "" 
    728  
    729 #: models/core.py:65 
    730 msgid "" 
    731 "This can be either an absolute path (as above) or a full URL starting with " 
    732 "'http://'." 
    733 msgstr "" 
    734  
    735 #: models/core.py:67 
    736 msgid "redirect" 
    737 msgstr "" 
    738  
    739 #: models/core.py:68 
    740 msgid "redirects" 
    741 msgstr "" 
    742  
    743 #: models/core.py:82 
    744 msgid "" 
    745 "Example: '/about/contact/'. Make sure to have leading and trailing slashes." 
    746 msgstr "" 
    747  
    748 #: models/core.py:83 
    749 msgid "title" 
    750 msgstr "" 
    751  
    752 #: models/core.py:84 
    753 msgid "content" 
    754 msgstr "" 
    755  
    756 #: models/core.py:85 
    757 msgid "enable comments" 
    758 msgstr "" 
    759  
    760 #: models/core.py:86 
    761 msgid "template name" 
    762 msgstr "" 
    763  
    764787#: models/core.py:87 
    765788msgid "" 
    766789"Example: 'flatfiles/contact_page'. If this isn't provided, the system will " 
    767790"use 'flatfiles/default'." 
    768 msgstr "" 
    769  
    770 #: models/core.py:88 
    771 msgid "registration required" 
    772 msgstr "" 
    773  
    774 #: models/core.py:88 
    775 msgid "If this is checked, only logged-in users will be able to view the page." 
    776 msgstr "" 
    777  
    778 #: models/core.py:92 
    779 msgid "flat page" 
    780 msgstr "" 
    781  
    782 #: models/core.py:93 
    783 msgid "flat pages" 
    784791msgstr "" 
    785792 
  • django/branches/new-admin/django/conf/locale/it/LC_MESSAGES/django.po

    r1180 r1187  
    790790msgstr "chiave di sessione" 
    791791 
    792 #: models/core.py:11
     792#: models/core.py:6
    793793msgid "session data" 
    794794msgstr "dati di sessione" 
    795795 
    796 #: models/core.py:11
     796#: models/core.py:6
    797797msgid "expire date" 
    798798msgstr "data di scadenza" 
    799799 
    800 #: models/core.py:12
     800#: models/core.py:7
    801801msgid "session" 
    802802msgstr "sessione" 
    803803 
    804 #: models/core.py:12
     804#: models/core.py:7
    805805msgid "sessions" 
    806806msgstr "sessioni" 
  • django/branches/new-admin/django/conf/locale/no/LC_MESSAGES/django.po

    r1180 r1187  
    796796msgstr "sesjon nøkkel" 
    797797 
    798 #: models/core.py:11
     798#: models/core.py:6
    799799msgid "session data" 
    800800msgstr "sesjon data" 
    801801 
    802 #: models/core.py:11
     802#: models/core.py:6
    803803msgid "expire date" 
    804804msgstr "utløpsdato" 
    805805 
    806 #: models/core.py:12
     806#: models/core.py:7
    807807msgid "session" 
    808808msgstr "sesjon" 
    809809 
    810 #: models/core.py:12
     810#: models/core.py:7
    811811msgid "sessions" 
    812812msgstr "sesjoner" 
  • django/branches/new-admin/django/conf/locale/pt_BR/LC_MESSAGES/django.po

    r1180 r1187  
    795795msgstr "chave da sessão" 
    796796 
    797 #: models/core.py:11
     797#: models/core.py:6
    798798msgid "session data" 
    799799msgstr "dados da sessão" 
    800800 
    801 #: models/core.py:11
     801#: models/core.py:6
    802802msgid "expire date" 
    803803msgstr "data de expiração" 
    804804 
    805 #: models/core.py:12
     805#: models/core.py:7
    806806msgid "session" 
    807807msgstr "sessão" 
    808808 
    809 #: models/core.py:12
     809#: models/core.py:7
    810810msgid "sessions" 
    811811msgstr "sessões" 
  • django/branches/new-admin/django/conf/locale/ro/LC_MESSAGES/django.po

    r1160 r1187  
    99"Project-Id-Version: Django \n" 
    1010"Report-Msgid-Bugs-To: \n" 
    11 "POT-Creation-Date: 2005-11-10 12:53+0100\n" 
     11"POT-Creation-Date: 2005-11-11 23:12+0100\n" 
    1212"PO-Revision-Date: 2005-11-08 19:06+GMT+2\n" 
    1313"Last-Translator: Tiberiu Micu <tibimicu@gmx.net>\n" 
     
    311311msgstr "Echipa %(site_name)s" 
    312312 
     313#: contrib/redirects/models/redirects.py:7 
     314msgid "redirect from" 
     315msgstr "redirectat de la " 
     316 
     317#: contrib/redirects/models/redirects.py:8 
     318msgid "" 
     319"This should be an absolute path, excluding the domain name. Example: '/" 
     320"events/search/'." 
     321msgstr "" 
     322"Aceasta ar trebui să fie o cale absolută, excluzînd numele de domeniu. " 
     323"Exemplu: '/evenimente/cautare/'." 
     324 
     325#: contrib/redirects/models/redirects.py:9 
     326msgid "redirect to" 
     327msgstr "redirectat la" 
     328 
     329#: contrib/redirects/models/redirects.py:10 
     330msgid "" 
     331"This can be either an absolute path (as above) or a full URL starting with " 
     332"'http://'." 
     333msgstr "" 
     334"Aceasta poate fi o cale absolută (ca mai sus) sau un URL începînd cu " 
     335"'http://'." 
     336 
     337#: contrib/redirects/models/redirects.py:12 
     338msgid "redirect" 
     339msgstr "redirectare" 
     340 
     341#: contrib/redirects/models/redirects.py:13 
     342msgid "redirects" 
     343msgstr "redictări" 
     344 
     345#: contrib/flatpages/models/flatpages.py:6 
     346msgid "URL" 
     347msgstr "URL" 
     348 
     349#: contrib/flatpages/models/flatpages.py:7 
     350msgid "" 
     351"Example: '/about/contact/'. Make sure to have leading and trailing slashes." 
     352msgstr "" 
     353"Exemplu: '/about/contact'. Asiguraţi-vă că aveţi slash-uri la început şi la " 
     354"sfîrşit." 
     355 
     356#: contrib/flatpages/models/flatpages.py:8 
     357msgid "title" 
     358msgstr "titlu" 
     359 
     360#: contrib/flatpages/models/flatpages.py:9 
     361msgid "content" 
     362msgstr "conţinut" 
     363 
     364#: contrib/flatpages/models/flatpages.py:10 
     365msgid "enable comments" 
     366msgstr "permite comentarii" 
     367 
     368#: contrib/flatpages/models/flatpages.py:11 
     369msgid "template name" 
     370msgstr "nume şablon" 
     371 
     372#: contrib/flatpages/models/flatpages.py:12 
     373#, fuzzy 
     374msgid "" 
     375"Example: 'flatpages/contact_page'. If this isn't provided, the system will " 
     376"use 'flatpages/default'." 
     377msgstr "" 
     378"Exemplu: 'flatfiles/pagina_contact'. Dacă aceasta nu există, sistemul va " 
     379"folosi 'flatfiles/default'." 
     380 
     381#: contrib/flatpages/models/flatpages.py:13 
     382msgid "registration required" 
     383msgstr "necesită înregistrare" 
     384 
     385#: contrib/flatpages/models/flatpages.py:13 
     386msgid "If this is checked, only logged-in users will be able to view the page." 
     387msgstr "" 
     388"Dacă aceasta este bifată, numai utilizatorii logaţi vor putea vedea pagina." 
     389 
     390#: contrib/flatpages/models/flatpages.py:17 
     391msgid "flat page" 
     392msgstr "pagina plată" 
     393 
     394#: contrib/flatpages/models/flatpages.py:18 
     395msgid "flat pages" 
     396msgstr "pagini plate" 
     397 
    313398#: utils/dates.py:6 
    314399msgid "Monday" 
     
    459544msgstr "tipuri conţinute" 
    460545 
    461 #: models/core.py:68 
    462 msgid "redirect from" 
    463 msgstr "redirectat de la " 
    464  
    465 #: models/core.py:69 
    466 msgid "" 
    467 "This should be an absolute path, excluding the domain name. Example: '/" 
    468 "events/search/'." 
    469 msgstr "" 
    470 "Aceasta ar trebui să fie o cale absolută, excluzînd numele de domeniu. " 
    471 "Exemplu: '/evenimente/cautare/'." 
    472  
    473 #: models/core.py:70 
    474 msgid "redirect to" 
    475 msgstr "redirectat la" 
    476  
    477 #: models/core.py:71 
    478 msgid "" 
    479 "This can be either an absolute path (as above) or a full URL starting with " 
    480 "'http://'." 
    481 msgstr "" 
    482 "Aceasta poate fi o cale absolută (ca mai sus) sau un URL începînd cu " 
    483 "'http://'." 
    484  
    485 #: models/core.py:73 
    486 msgid "redirect" 
    487 msgstr "redirectare" 
    488  
    489 #: models/core.py:74 
    490 msgid "redirects" 
    491 msgstr "redictări" 
    492  
    493 #: models/core.py:87 
    494 msgid "URL" 
    495 msgstr "URL" 
    496  
    497 #: models/core.py:88 
    498 msgid "" 
    499 "Example: '/about/contact/'. Make sure to have leading and trailing slashes." 
    500 msgstr "" 
    501 "Exemplu: '/about/contact'. Asiguraţi-vă că aveţi slash-uri la început şi la " 
    502 "sfîrşit." 
    503  
    504 #: models/core.py:89 
    505 msgid "title" 
    506 msgstr "titlu" 
    507  
    508 #: models/core.py:90 
    509 msgid "content" 
    510 msgstr "conţinut" 
    511  
    512 #: models/core.py:91 
    513 msgid "enable comments" 
    514 msgstr "permite comentarii" 
    515  
    516 #: models/core.py:92 
    517 msgid "template name" 
    518 msgstr "nume şablon" 
    519  
    520 #: models/core.py:93 
    521 msgid "" 
    522 "Example: 'flatfiles/contact_page'. If this isn't provided, the system will " 
    523 "use 'flatfiles/default'." 
    524 msgstr "" 
    525 "Exemplu: 'flatfiles/pagina_contact'. Dacă aceasta nu există, sistemul va " 
    526 "folosi 'flatfiles/default'." 
    527  
    528 #: models/core.py:94 
    529 msgid "registration required" 
    530 msgstr "necesită înregistrare" 
    531  
    532 #: models/core.py:94 
    533 msgid "If this is checked, only logged-in users will be able to view the page." 
    534 msgstr "" 
    535 "Dacă aceasta este bifată, numai utilizatorii logaţi vor putea vedea pagina." 
    536  
    537 #: models/core.py:98 
    538 msgid "flat page" 
    539 msgstr "pagina plată" 
    540  
    541 #: models/core.py:99 
    542 msgid "flat pages" 
    543 msgstr "pagini plate" 
    544  
    545 #: models/core.py:117 
     546#: models/core.py:67 
    546547msgid "session key" 
    547548msgstr "cheie sesiune" 
    548549 
    549 #: models/core.py:11
     550#: models/core.py:6
    550551msgid "session data" 
    551552msgstr "date sesiune" 
    552553 
    553 #: models/core.py:11
     554#: models/core.py:6
    554555msgid "expire date" 
    555556msgstr "data expirare" 
    556557 
    557 #: models/core.py:12
     558#: models/core.py:7
    558559msgid "session" 
    559560msgstr "seiune" 
    560561 
    561 #: models/core.py:12
     562#: models/core.py:7
    562563msgid "sessions" 
    563564msgstr "sesiuni" 
  • django/branches/new-admin/django/conf/locale/ru/LC_MESSAGES/django.po

    r1180