diff --git a/.cvsignore b/.cvsignore index 8a599099..20a960fa 100644 --- a/.cvsignore +++ b/.cvsignore @@ -13,3 +13,4 @@ tmp-system tmp-tests root-system root-tests +talTranslations.py diff --git a/Makefile b/Makefile index ba87968b..5010b524 100644 --- a/Makefile +++ b/Makefile @@ -129,6 +129,7 @@ archive: dist-clean clean: rm -rf tmp-system tmp-tests rm -rf root-tests root-system + rm -f talTranslations.py config: config.in cat $^ | sed -e "s/^glasnost = .*/glasnost = $(GLASNOST)/g" \ @@ -347,11 +348,15 @@ mo: po/glasnost-web/de.po \ msgfmt --statistics -c -v -o locale/fr/LC_MESSAGES/glasnost-web.mo po/glasnost-web/fr.po msgfmt --statistics -c -v -o locale/sv/LC_MESSAGES/glasnost-web.mo po/glasnost-web/sv.po +talTranslations.py: templates/ + ./talGettext.py templates/ > talTranslations.py + po: glasnost-web/ \ shared/common/ \ shared/proxy/ \ shared/server/ \ - shared/web/ + shared/web/ \ + talTranslations.py cp po/glasnost-web/de.po po/glasnost-web/de.pox cp po/glasnost-web/es.po po/glasnost-web/es.pox diff --git a/README.templates b/README.templates index af81e3cf..2c53a376 100644 --- a/README.templates +++ b/README.templates @@ -27,27 +27,21 @@ plane - Plane - Quality: **** - Inspiration: default skin of Plane -lightbulb - Lightbulb ---------------------- - - - Colours: black on light blue; blues for decoration - - Navigation: one level, vertical, bottom-left - - Quality: ** (original but not for production use) - macfly - macfly --------------- - Colours: black on orange; red/brown for misc elements - Navigation: one level, vertical, right - Quality: **** - - Inspiration: colour scheme from an example of CSS use (lost url) + - Inspiration: design idea and colour scheme from an example of CSS use + watercolor - Water Color ------------------------ - Colours: black on light blue; shades of blue - Navigation: one level, vertical, top right - - Quality: ** (nice but lots of styles needed by Glasnost are not yet done) + - Quality: **** - Inspiration: some watercolor metacity theme elements @@ -65,6 +59,7 @@ artus - artus (current version) ------------------------------- - ARTUS (Code Lutin customer) + - Based on entrouvert2; should be removed bxlug - BxLUG ------------- @@ -72,10 +67,25 @@ bxlug - BxLUG - Bruxelles Linux User Group - http://www.bxlug.be +codelutin.org - Code Lutin.org +------------------------------ + + - Code Lutin + - http://www.codelutin.org + +crans - CRANS +------------- + + - Cachan / Réseau @ Normale Sup' + - http://assoce.crans.org + - FIXME: /images/crans_banner.png missing + easter-eggs - Easter-eggs ------------------------- - Proposal for http://www.easter-eggs.org + - Lacks several styles to be really used + - Bad coding style in CSS files entrouvert.be - entrouvert.be ----------------------------- @@ -102,6 +112,7 @@ libre-entreprise - Libre-entreprise ----------------------------------- - http://www.libre-entreprise.org and http://www.libre-entreprise.com + - TODO: add login button rap - R.A.P. Belgique --------------------- @@ -110,28 +121,59 @@ rap - R.A.P. Belgique - http://www.antipub.be +------ +Others +------ + +lightbulb - Lightbulb +--------------------- + + - Colours: black on light blue; blues for decoration + - Navigation: one level, vertical, bottom-left + - hardcodes to many things + +wretched - Wretched of the Earth +-------------------------------- + + - Colours: black on red + - lacks many styles + + -------- Unsorted -------- - chambon.raviart - Chambon.Raviart + [REMOVE] - codelutin - Code Lutin - - codelutin.org - Code Lutin.org - - crans - CRANS + [REMOVE] - cuisine - Cuisine (site pour les examples) + [REMOVE] [or modify to remove hardcoded strings] - cyborg - Cyborg - eclova - Eclova + [REMOVE] [or modify to be generic] - entrouvert - entr'ouvert (first version) + [REMOVE] - entrouvert2 - entr'ouvert (current version) + [hardcodes some strings] - fsfeurope - FSF (~europe) + [REMOVE] - glasnost - Glasnost + [REMOVE] [or modify to get in shape] - glasnost2 - Glasnost 2 + [default for now; should rename and remove background image] - i3c - i3c + [nice one; should sort] - in3activa - in3activa + [REMOVE] - linuxdays - Luxembourg LinuxDays + [REMOVE] [despite nice colour scheme] - pel-infini - infini (assoc brest) + [REMOVE] - theridion - Theridion (new) + [REMOVE] - upthings - upthings + [REMOVE] - vecam - Vecam - - wretched - Wretched of the Earth + [REMOVE] [template now in metis] diff --git a/config.in b/config.in index 9eacf42b..b9455c0a 100644 --- a/config.in +++ b/config.in @@ -27,7 +27,6 @@ WebDirectoryPath = %(webdir)s [Mail] # Email address to use when no admin has been defined in Glasnost -Admin = root@localhost # website to show in emails sent to new people Website = http://localhost # Host name and port of the SMTP server diff --git a/extensions/widCalendar.py b/extensions/widCalendar.py index d621c50f..61a281cc 100644 --- a/extensions/widCalendar.py +++ b/extensions/widCalendar.py @@ -66,7 +66,7 @@ def monthTupleJS(year = 0, month = 0): if (year, month, d) == today: more = ' id="today"' date = '%s-%02d-%02d' % (year, month, cal[i][j]) - cal[i][j] = """%s""" % \ + cal[i][j] = '%s' % \ (date, more, cal[i][j]) return cal diff --git a/glasnost-web/code/webhandler.py b/glasnost-web/code/webhandler.py index 12f9469d..d10beb8a 100644 --- a/glasnost-web/code/webhandler.py +++ b/glasnost-web/code/webhandler.py @@ -160,7 +160,7 @@ class Application(applications.Application): if session is not None: getProxyForServerRole('sessions').setSession(session, context.getVar('virtualHost').defaultDispatcherId) - except faults.MissingItem: + except (faults.MissingItem, faults.UnknownServerId): if context.getVar('debug'): raise if req.caching: @@ -184,14 +184,9 @@ class Application(applications.Application): req.cancel() raise - t1 = context.getVar('t1') - open('/tmp/webbench', 'a+').write('%f %s\n' % ( - time.time() - t1, req.unparsed_uri)) return result def handler(self, req): - t1 = time.time() - # Use direct access to _req for speed. try: _req = req._req @@ -227,6 +222,7 @@ class Application(applications.Application): dispatcherId = None, fallbackTemplatesDirectoryPath = None, function = None, + htmlHeaders = [], httpHostName = None, httpLocalPath = None, # The HTTP path, without the httpScriptDirectoryPath prefix. @@ -249,7 +245,6 @@ class Application(applications.Application): session = None, sessionToken = None, sessionTokenInCookie = 0, # Was the sessionToken stored in the url? - t1 = t1, talEngine = None, templateDirectoryName = None, templatesDirectoryPath = None, @@ -353,12 +348,9 @@ class Application(applications.Application): try: virtualHost = virtualHostsWeb.getObjectByHostName(httpHostName) except faults.MissingItem: - try: - virtualHost = virtualHostsWeb.getDefaultVirtualHost() - except faults.MissingItem: - if context.getVar('debug'): - raise - return HTTP_NOT_FOUND + if context.getVar('debug'): + raise + return HTTP_NOT_FOUND except (faults.UnknownDispatcherInId, faults.UnknownServerId): if context.getVar('debug'): raise @@ -757,8 +749,6 @@ class Application(applications.Application): data = zbuf.getvalue() req.headers_out['Content-Encoding'] = 'gzip' t1 = context.getVar('t1') - if not t1: - t1 = time.time() if lastModTime: req.headers_out['Last-Modified'] = time.strftime( '%a, %d %b %Y %H:%M:%S GMT', lastModTime) @@ -770,9 +760,6 @@ class Application(applications.Application): t = time.strptime(req.headers_in['If-Modified-Since'][:25], '%a, %d %b %Y %H:%M:%S') if lastModTime <= t: - open('/tmp/webbench', 'a+').write( - '%f %s (static, not mod)\n' % ( - time.time() - t1, req.unparsed_uri)) return HTTP_NOT_MODIFIED except KeyError: pass @@ -785,8 +772,6 @@ class Application(applications.Application): except IOError: # the user probably cancelled the request return OK - open('/tmp/webbench', 'a+').write('%f %s (static)\n' % ( - time.time() - t1, req.unparsed_uri)) return OK def parseHttpPath(self, remaining): @@ -857,12 +842,15 @@ class Application(applications.Application): return None if not 'pagenames' in context.getVar('knownRoles'): return None - objectId = getWebForServerRole('pagenames').getIdByName( - remaining[0]) + try: + objectId = getWebForServerRole('pagenames').getIdByName( + remaining[0]) + except faults.UnknownServerId: + return None if not objectId: return None context.setVar('dispatcherId', - commonTools.extractDispatcherId(objectId)) + commonTools.extractDispatcherId(objectId)) context.setVar('serverRole', commonTools.extractRole(objectId)) context.setVar('objectId', objectId) remaining = remaining[1:] @@ -1113,15 +1101,13 @@ class RequestCache: context.getVar('varDirectoryPath'), 'webcache') self.cacheFilePath = os.path.join( self.cacheDirectoryPath, - self.getCacheFileName(self.unparsed_uri, language)) + self.getCacheFileName(language)) self.cacheFilePathDepends = os.path.join( self.cacheDirectoryPath, - self.getCacheFileName(self.unparsed_uri, language) - + '.depends') + self.getCacheFileName(language) + '.depends') self.cacheFilePathMimeType = os.path.join( self.cacheDirectoryPath, - self.getCacheFileName(self.unparsed_uri, language) - + '.mimetype') + self.getCacheFileName(language) + '.mimetype') self.depends = [] def cancel(self): @@ -1189,8 +1175,13 @@ class RequestCache: mimeType = 'text/html' return cachePage, mimeType - def getCacheFileName(self, uri, language): - return binascii.hexlify(md5.new(uri + language).digest()) + def getCacheFileName(self, language): + if self.headers_in.has_key('Host'): + hostName = self.headers_in['Host'] + else: + hostName = '' + uri = self.unparsed_uri + return binascii.hexlify(md5.new(hostName + uri + language).digest()) def getExpires(self): try: @@ -1240,13 +1231,14 @@ def handler(req): # those are legitimate and should be raised to modpython handler raise except Exception, e: - if not commonTools.getConfig('Misc', 'SendTalkBackTo'): - raise import traceback - import smtplib f = cStringIO.StringIO() traceback.print_exc(file = f) - message = """Subject: [%(host)s] Glasnost Talkback + f = f.getvalue() + + if commonTools.getConfig('Misc', 'SendTalkBackTo'): + import smtplib + message = """Subject: [%(host)s] Glasnost Talkback Version: %(version)s Time: %(time)s @@ -1257,14 +1249,18 @@ Url: %(url)s %(traceback)s """ % { 'time': time.ctime(), 'host': socket.getfqdn(), - 'traceback': f.getvalue(), + 'traceback': f, 'version': glasnost.versionNumber, 'url': req.unparsed_uri} - server = smtplib.SMTP('localhost') - server.sendmail( - commonTools.getConfig('Misc', 'AdminEmailAddress'), - commonTools.getConfig('Misc', 'SendTalkBackTo'), - message) + server = smtplib.SMTP('localhost') + try: + server.sendmail( + commonTools.getConfig('Misc', 'AdminEmailAddress', + default = 'root@localhost'), + commonTools.getConfig('Misc', 'SendTalkBackTo'), + message) + except: + pass raise return result @@ -1279,6 +1275,7 @@ if webTools.getConfig('Profiling', 'false') == 'true': globals(), locals()) except SystemExit: pass - prof.dump_stats('/tmp/glasnost-web-%s.prof'%os.path.split(req.filename)[1]) + prof.dump_stats('/tmp/glasnost-web-%s.prof' % \ + os.path.split(req.filename)[1]) return result diff --git a/glasnost-web/css/balloonHelp.css b/glasnost-web/css/balloonHelp.css index 9c9d1f0a..02539fff 100644 --- a/glasnost-web/css/balloonHelp.css +++ b/glasnost-web/css/balloonHelp.css @@ -9,6 +9,7 @@ font-weight: bold; background-color: #ffffd1; z-index: 1000; + margin: 2.5em 0 0 2em; } ul.tooltip { diff --git a/glasnost-web/css/default.css b/glasnost-web/css/default.css index a9f88109..b63cbc5c 100644 --- a/glasnost-web/css/default.css +++ b/glasnost-web/css/default.css @@ -141,14 +141,6 @@ table.spip th { text-align: center; } -.odd { - background-color: transparent; -} - -.even { - background-color: #fafafa; /* very light grey */ -} - table.rst td, table.objects-table td, table.spip td { @@ -252,7 +244,6 @@ p#powered-by-glasnost a { } .error-message { - text-align: center; color: red; display: block; } diff --git a/glasnost-web/javascript/balloonHelp.js b/glasnost-web/javascript/balloonHelp.js index c9bc5d43..a3288a80 100644 --- a/glasnost-web/javascript/balloonHelp.js +++ b/glasnost-web/javascript/balloonHelp.js @@ -1,202 +1,100 @@ addEvent(window, "load", makeBalloonHelp); -var CURRENT_BALLOON_HELP; -var onLabels = 0; +document.getElementsByClassName = function ( class_name ) { + var all_obj, ret_obj = new Array(), j = 0, strict = 0; + if ( document.getElementsByClassName.arguments.length > 1 ) + strict = ( document.getElementsByClassName.arguments[1] ? 1 : 0 ); + if ( document.all ) + all_obj = document.all; + else if ( document.getElementsByTagName && !document.all ) + all_obj = document.getElementsByTagName ( "*" ); + for ( i = 0; i < all_obj.length; i++ ) { + if ( ( ' ' + all_obj[i].getAttribute("class") + ' ').toLowerCase().match( + new RegExp ( ( strict ? '^ ' + class_name + ' $' : + '^.* ' + class_name + ' .*$' ).toLowerCase(),'g' ) ) ) { + ret_obj[j++] = all_obj[i]; + } + } + return ret_obj; +} + +var previousBalloon; +var currentBalloon; +var timeoutId; +var timeoutIdPrevious; function makeBalloonHelp() { if (!document.createElement) return; - var tagsHelp = new Array('tr', 'div'); - for (var i=0; i -1) { - processElemForm(tag); - } - } - } - - uls = document.getElementsByTagName("ul"); - for (var uli=0; uli -1) { - s = item.innerHTML; - if (onLabels == 1) { - t = 0; - while (elem.childNodes[t].nodeType == 3) t++; - item = elem.childNodes[t]; - if (item.childNodes[0].nodeType != 3) { - item = item.childNodes[0]; - } - prepareTag(item, s); - break; - } - continue; - } - if (item.className.indexOf("field-value") > -1 || - item.className.indexOf("cell") > -1) { - if (s == "") continue; - var tagsArray = new Array('select', 'textarea', 'input'); - for (var i=0; i 0 ) break; - } - } - } -} - -function processAppointment(elem) { - if (!elem.childNodes || elem.childNodes.length == 0) return; - /* TODO */ -} - -/* Utility functions */ - function addEvent(obj, evType, fn) { - /* adds an eventListener for browsers which support it - Written by Scott Andrew: nice one, Scott */ + /* adds an eventListener for browsers which support it. + Derived from snippet by Scott Andrew */ if (obj.addEventListener) { obj.addEventListener(evType, fn, true); return true; - } else if (obj.attachEvent) { - var r = obj.attachEvent("on"+evType, fn); - return r; - } else { - return false; } + if (obj.attachEvent) + return obj.attachEvent("on"+evType, fn); + return false; } - function showBalloonHelp(e) { - if (!document.getElementsByTagName) return; if (window.event && window.event.srcElement) { el = window.event.srcElement } else if (e && e.target) { el = e.target } if (!el) return; - if (el.nodeType == 3) { - // lnk is a textnode -- ascend parents until we hit an input - el = getParent(el, "INPUT"); + + while (! el.balloonHelp ) { + el = el.parentNode; } - if (!el) return; - balloonHelp = el.getAttribute("balloon-help"); + tag = el.balloonHelp; - if (CURRENT_BALLOON_HELP) hideBalloonHelp(e); - - var d = document.createElement("div"); - d.className = "balloon-help"; - tnt = document.createTextNode(balloonHelp); - pat = document.createElement("p"); - pat.appendChild(tnt); - d.appendChild(pat); - - STD_WIDTH = 300; - w = balloonHelp.length * 10; - if (w > STD_WIDTH) { - w = STD_WIDTH; - } - - d.style.width = w + 'px'; + if (currentBalloon && tag != currentBalloon) + hideBalloonHelp(); + + if (tag == previousBalloon) + return; - mx = findPosX(el); - my = findPosY(el); - - d.style.left = (mx+15) + 'px'; - d.style.top = (my+25) + 'px'; - - if (document.body && document.body.offsetWidth && ((mx+w) > document.body.offsetWidth)) { - d.style.left = (document.body.offsetWidth - w - 20) + "px"; - } - - document.getElementsByTagName("body")[0].appendChild(d); - - CURRENT_BALLOON_HELP = d; + tag.style.display = 'block'; + currentBalloon = tag; + clearTimeout(timeoutId); + timeoutId = setTimeout('hideBalloonHelp()', 3000); } function hideBalloonHelp(e) { if (!document.getElementsByTagName) return; - if (CURRENT_BALLOON_HELP) { - document.getElementsByTagName("body")[0].removeChild(CURRENT_BALLOON_HELP); - CURRENT_BALLOON_HELP = null; + if (currentBalloon) { + currentBalloon.style.display = 'none'; + previousBalloon = currentBalloon; + currentBalloon = null; + clearTimeout(timeoutIdPrevious); + timeoutIdPrevious = setTimeout('clearPrevious()', 5000); } } -// Add an eventListener to browsers that can do it somehow. -// Originally by the amazing Scott Andrew. -function addEvent(obj, evType, fn) { - if (obj.addEventListener) { - obj.addEventListener(evType, fn, true); - return true; - } else if (obj.attachEvent) { - var r = obj.attachEvent("on"+evType, fn); - return r; - } else { - return false; - } -} - -function getParent(el, pTagName) { - if (el == null) return null; - - if (el.nodeType == 1 && el.tagName.toLowerCase() == pTagName.toLowerCase()) - // Gecko bug, supposed to be uppercase - return el; - - return getParent(el.parentNode, pTagName); -} - -function findPosX(obj) -{ - var curleft = 0; - if (obj.offsetParent) { - while (obj.offsetParent) { - curleft += obj.offsetLeft - obj = obj.offsetParent; - } - } - else if (obj.x) - curleft += obj.x; - return curleft; -} - -function findPosY(obj) -{ - var curtop = 0; - if (obj.offsetParent) { - while (obj.offsetParent) { - curtop += obj.offsetTop - obj = obj.offsetParent; - } - } - else if (obj.y) - curtop += obj.y; - return curtop; +function clearPrevious(e) { + previousBalloon = null; } diff --git a/glasnost-web/orphanedArticles.py b/glasnost-web/orphanedArticles.py index 58cef2eb..c3e1949a 100644 --- a/glasnost-web/orphanedArticles.py +++ b/glasnost-web/orphanedArticles.py @@ -84,22 +84,26 @@ def index(): import re for article in articles.values(): if article.format == 'spip': - links = [x[10:].strip() for x in re.findall(r'->article +\d+', article.body)] + links = [x[10:].strip() for x in re.findall(r'->article +\d+', + article.body)] for l in links: id = '%s/articles/%s' % (dispatcherId, l) d[id] = 1 - links = [x[8:].strip() for x in re.findall(r'->alias +[\w\-_]+', article.body)] + links = [x[8:].strip() for x in re.findall(r'->alias +[\w\-_]+', + article.body)] for l in links: if not pagenames.has_key(l): print 'Wrong pagename: %s' % l continue d[pagenames[l]] = 1 elif article.format == 'rst': - links = [x[10:].strip() for x in re.findall(r'
/dev/null -$ROOT_SBIN/glasnost-system-ctl start +SERVERS="Dispatcher ArticlesServer AuthenticationServer \ + AuthenticationLoginPasswordServer CardsServer DataflowsServer \ + GroupsServer PeopleServer VirtualHostsServer UploadFilesServer \ + PageNamesServer TranslationsServer" +echo "Starting Glasnost servers..." +for SERVER in $SERVERS +do + $ROOT_SBIN/glasnost-system-ctl start-one $SERVER +done + (cd tmp-system && ./generate-system.py) < /dev/null $ROOT_SBIN/glasnost-system-ctl stop diff --git a/make-tests b/make-tests index 118636db..60b5f9d7 100755 --- a/make-tests +++ b/make-tests @@ -8,7 +8,7 @@ fi echo "Installing test environment in root-tests/" rm -rf root-tests && mkdir root-tests 2> /dev/null -make config-tests install \ +rm config && make config config-tests install \ GLASNOST=glasnost-tests PORT=8500 \ PREFIX=`pwd`/root-tests/usr/local \ VARPREFIX=`pwd`/root-tests/var/lib/ \ @@ -17,7 +17,15 @@ make config-tests install \ SERVER_USER=`id -u` SERVER_GROUP=`id -u` \ WEB_USER=`id -u` WEB_GROUP=`id -u` &> /dev/null -root-tests/usr/local/sbin/glasnost-tests-ctl start -(cd tmp-tests && ./launch.py $1) +SERVERS="Dispatcher ArticlesServer AtomsServer AuthenticationServer \ + AuthenticationLoginPasswordServer CardsServer DataflowsServer \ + GroupsServer PeopleServer VirtualHostsServer" +echo "Starting Glasnost servers..." +for SERVER in $SERVERS +do + root-tests/usr/local/sbin/glasnost-tests-ctl start-one $SERVER +done + +(cd tmp-tests && python ./tests.py) root-tests/usr/local/sbin/glasnost-tests-ctl stop diff --git a/po/glasnost-web/de.po b/po/glasnost-web/de.po index 2988d30b..8a04f187 100644 --- a/po/glasnost-web/de.po +++ b/po/glasnost-web/de.po @@ -25,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: glasnost-web $Revision$\n" -"POT-Creation-Date: Wed Sep 24 21:17:49 2003\n" +"POT-Creation-Date: Wed Oct 1 18:00:09 2003\n" "PO-Revision-Date: 2002-08-22 18:43+0200\n" "Last-Translator: Odile Bénassy \n" "Language-Team: German \n" @@ -34,7 +34,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.1\n" -#: shared/common/VirtualHostsCommon.py:207 +#: shared/common/VirtualHostsCommon.py:226 msgid "Virtual Hosts" msgstr "Virtuelle Hosts" @@ -46,6 +46,10 @@ msgstr "Mime Type" msgid "Liberty Alliance Server" msgstr "" +#: shared/common/AtomsCommon.py:79 +msgid "atoms" +msgstr "Atome" + #: shared/web/geography.py:150 #, fuzzy msgid "Sri Lanka" @@ -60,12 +64,12 @@ msgstr "Spanisch" msgid "Yugoslavia" msgstr "Neuer Dinar" -#: shared/web/AuthenticationLoginPasswordWeb.py:136 +#: shared/web/AuthenticationLoginPasswordWeb.py:140 #, fuzzy msgid "Enter the password." msgstr "Emailaddresse" -#: shared/common/kinds.py:111 +#: shared/common/kinds.py:113 #, fuzzy msgid "Private" msgstr "Schaffen" @@ -74,11 +78,11 @@ msgstr "Schaffen" msgid "New Translation" msgstr "Neue Übersetzung" -#: shared/common/kinds.py:1971 +#: shared/common/kinds.py:2032 msgid "Sequence" msgstr "Sequenz" -#: shared/web/GlasnostTALGenerator.py:98 +#: shared/web/GlasnostTALGenerator.py:101 talTranslations.py:4 msgid "You are not logged in" msgstr "" @@ -86,7 +90,7 @@ msgstr "" msgid "Secret Ballot" msgstr "Geheimne Wahl" -#: shared/web/AuthenticationLoginPasswordWeb.py:341 +#: shared/web/AuthenticationLoginPasswordWeb.py:347 #, fuzzy msgid "Changing User Password" msgstr "Passwort wechseln" @@ -96,20 +100,16 @@ msgstr "Passwort wechseln" msgid "Enter your nickname (optional)." msgstr "Übersetzung" -#: shared/web/PeopleWeb.py:91 -msgid "Nickname" -msgstr "Spitzname" - #: shared/web/geography.py:92 #, fuzzy msgid "Cyprus" msgstr "Zypern Pfund" -#: shared/common/kinds.py:193 shared/common/kinds.py:2591 +#: shared/common/kinds.py:195 shared/common/kinds.py:2654 msgid "Same As Edition Mode" msgstr "" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:434 +#: shared/web/calendaring.py:71 #, fuzzy msgid "xNovember" msgstr "November" @@ -118,11 +118,11 @@ msgstr "November" msgid "Check Box" msgstr "" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 -msgid "April" -msgstr "April" +#: shared/common/scripts.py:66 +msgid "Execute On Submit" +msgstr "" -#: shared/common/kinds.py:2991 +#: shared/common/kinds.py:3068 #, fuzzy msgid "User Token" msgstr "Marke des Wählers" @@ -132,11 +132,11 @@ msgstr "Marke des W msgid "Are you sure you want to delete the %s?" msgstr "Wollen Sie sicher den Zettel streichen?" -#: shared/common/CardsCommon.py:70 shared/common/kinds.py:1061 +#: shared/common/CardsCommon.py:70 shared/common/kinds.py:1077 msgid "Fields" msgstr "Felder" -#: shared/common/xhtmlgenerator.py:73 +#: shared/common/xhtmlgenerator.py:77 msgid "Edit" msgstr "Bearbeiten" @@ -144,7 +144,7 @@ msgstr "Bearbeiten" msgid "New Heading" msgstr "Neue Rubrik" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 +#: shared/web/calendaring.py:60 msgid "February" msgstr "Februar" @@ -153,15 +153,15 @@ msgstr "Februar" msgid "Liberia" msgstr "Leu" -#: shared/common/kinds.py:2569 +#: shared/common/kinds.py:2632 #, fuzzy msgid "Structure" msgstr "Sucre" #: shared/common/AuthenticationLoginPasswordCommon.py:64 -#: shared/common/kinds.py:1872 shared/common/AuthenticationLdapCommon.py:63 +#: shared/common/kinds.py:1900 shared/common/AuthenticationLdapCommon.py:63 #: shared/web/AuthenticationLoginPasswordWeb.py:67 -#: shared/web/AuthenticationLoginPasswordWeb.py:139 +#: shared/web/AuthenticationLoginPasswordWeb.py:143 msgid "Password" msgstr "Passwort" @@ -185,15 +185,24 @@ msgstr "Atome" msgid "Never" msgstr "Niemals" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 +#: shared/web/calendaring.py:61 msgid "May" msgstr "Mai" +#: talTranslations.py:7 +#, fuzzy +msgid "Sessions" +msgstr "Wahlen" + #: shared/web/TranslationsWeb.py:140 msgid "From " msgstr "Von " -#: shared/common/kinds.py:87 +#: shared/common/kinds.py:1988 +msgid "Script Source Code" +msgstr "" + +#: shared/common/kinds.py:89 #, fuzzy msgid "Containers" msgstr "Fühlung" @@ -206,7 +215,7 @@ msgstr "Datei" msgid "Needed" msgstr "notwendig" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 #, fuzzy msgid "Thursday" msgstr "Yuan" @@ -216,12 +225,7 @@ msgstr "Yuan" msgid "Bhutan" msgstr "Yuan" -#: shared/common/GroupsCommon.py:279 -#, fuzzy -msgid "Select the items to intersect." -msgstr "Auswählen Sie den Kandidat zu hinzufügen" - -#: shared/common/kinds.py:2835 shared/web/GroupsWeb.py:90 +#: shared/common/kinds.py:2907 shared/web/GroupsWeb.py:90 #, fuzzy msgid "Union" msgstr "Unbekannt" @@ -243,7 +247,7 @@ msgstr "Bearbeitungsdatum" msgid "Burundi" msgstr "" -#: shared/common/kinds.py:269 +#: shared/common/kinds.py:271 msgid "Preformatted Text" msgstr "" @@ -252,7 +256,16 @@ msgstr "" msgid "IP Address" msgstr "Emailaddresse" -#: shared/common/kinds.py:1345 +#: talTranslations.py:19 +#, fuzzy +msgid "Navigation" +msgstr "Übersetzung" + +#: talTranslations.py:16 +msgid ", l'entreprise ouverte" +msgstr "" + +#: shared/common/kinds.py:1361 #, fuzzy msgid "Select the language used to fill in this card." msgstr "Auswählen Sie den Kandidat zu hinzufügen" @@ -274,8 +287,8 @@ msgstr "" msgid "Bahamas" msgstr "" -#: shared/common/kinds.py:195 shared/common/kinds.py:213 -#: shared/common/kinds.py:231 shared/common/kinds.py:249 +#: shared/common/kinds.py:197 shared/common/kinds.py:215 +#: shared/common/kinds.py:233 shared/common/kinds.py:251 #, fuzzy msgid "Read Only" msgstr "Real" @@ -284,7 +297,7 @@ msgstr "Real" msgid "Grenada" msgstr "" -#: shared/common/kinds.py:956 +#: shared/common/kinds.py:972 #, fuzzy msgid "Date & Time Format" msgstr "Datum der letzten Verbindung" @@ -310,7 +323,7 @@ msgstr "Unterschiede - %s" msgid "Debian Maintainers" msgstr "Debian Versorger" -#: shared/common/kinds.py:1966 +#: shared/common/kinds.py:2027 msgid "Minimum Number of Items" msgstr "" @@ -318,11 +331,11 @@ msgstr "" msgid "Losses" msgstr "Wahlniederlagen" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 +#: shared/web/calendaring.py:60 msgid "January" msgstr "Januar" -#: shared/common/xhtmlgenerator.py:68 +#: shared/common/xhtmlgenerator.py:72 #, fuzzy msgid "Compute" msgstr "Zypern Pfund" @@ -331,7 +344,7 @@ msgstr "Zypern Pfund" msgid "files" msgstr "Dateien" -#: shared/common/kinds.py:3262 +#: shared/common/kinds.py:3368 #, fuzzy msgid "Widget Name" msgstr "Breite" @@ -340,19 +353,19 @@ msgstr "Breite" #: glasnost-web/about.py:124 glasnost-web/about.py:134 #: glasnost-web/about.py:154 shared/web/TranslationsWeb.py:165 #: shared/web/TranslationsWeb.py:712 shared/web/GradesWeb.py:85 -#: shared/web/widgets.py:142 shared/web/widgets.py:836 -#: shared/web/widgets.py:842 shared/web/VotesWeb.py:157 +#: shared/web/widgets.py:144 shared/web/widgets.py:833 +#: shared/web/widgets.py:839 shared/web/VotesWeb.py:157 #: shared/web/VotesWeb.py:244 msgid ":" msgstr " :" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/calendaring.py:63 msgid "November" msgstr "November" -#: shared/web/ElectionsWeb.py:135 -msgid "Approval" -msgstr "Zustimmung" +#: shared/web/TranslationsWeb.py:360 +msgid "Fuzzy" +msgstr "Annähernd" #: shared/web/geography.py:85 #, fuzzy @@ -365,11 +378,11 @@ msgstr "Feld" msgid "User" msgstr "Benutzer :" -#: shared/common/xhtmlgenerator.py:112 +#: shared/common/xhtmlgenerator.py:116 msgid "Vote Blank" msgstr "leer wählen" -#: shared/common/kinds.py:3179 +#: shared/common/kinds.py:3256 msgid "Output Connector" msgstr "" @@ -397,7 +410,7 @@ msgstr "%s Einstellungen bearbeiten" msgid "Belarus" msgstr "" -#: shared/web/AppointmentsWeb.py:312 +#: shared/web/AppointmentsWeb.py:298 msgid "Week %d of %d" msgstr "" @@ -427,7 +440,7 @@ msgstr "Neue Bevorzugungen" msgid "Election in progress" msgstr "Durchgehende Wahl" -#: shared/common/xhtmlgenerator.py:67 +#: shared/common/xhtmlgenerator.py:71 #, fuzzy msgid "Duplicate" msgstr "Zweimal bestehender Wert !" @@ -436,12 +449,12 @@ msgstr "Zweimal bestehender Wert !" msgid "Weightings" msgstr "Gewichtungen" -#: shared/common/VirtualHostsCommon.py:107 +#: shared/common/VirtualHostsCommon.py:124 #, fuzzy msgid "Enter the title of this virtual host." msgstr "Die letzte virtuellen Hosts" -#: shared/common/VirtualHostsCommon.py:202 +#: shared/common/VirtualHostsCommon.py:221 msgid "New Virtual Host" msgstr "Neuer virtuelle Host" @@ -463,7 +476,7 @@ msgstr "Stimmenthaltung" msgid "Select the items to subtract." msgstr "Auswählen Sie den Kandidat zu hinzufügen" -#: shared/common/xhtmlgenerator.py:103 +#: shared/common/xhtmlgenerator.py:107 #, fuzzy msgid "Use" msgstr "Benutzer :" @@ -476,24 +489,20 @@ msgstr "" msgid "Aliases" msgstr "" -#: shared/common/AppointmentsCommon.py:99 +#: talTranslations.py:18 +#, fuzzy +msgid "Calendar" +msgstr "Kandidat" + +#: shared/common/AppointmentsCommon.py:94 #, fuzzy msgid "Enter the day of the appointment." msgstr "Die letzte virtuellen Hosts" -#: shared/common/properties.py:53 -#, fuzzy -msgid "Select a field type" -msgstr "Auswählen Sie den Kandidat zu hinzufügen" - #: shared/web/geography.py:173 msgid "Mozambique" msgstr "" -#: shared/proxy/ObjectsProxy.py:1224 shared/proxy/ObjectsProxy.py:1281 -msgid " (at <%s>)" -msgstr "" - #: shared/web/geography.py:58 #, fuzzy msgid "Austria" @@ -512,14 +521,15 @@ msgstr "" msgid "Expiration Time" msgstr "Bearbeitungsdatum" -#: shared/common/kinds.py:267 +#: shared/common/kinds.py:269 #, fuzzy msgid "reStructuredText" msgstr "Sucre" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 -msgid "December" -msgstr "Dezember" +#: shared/web/ObjectsWeb.py:82 +#, fuzzy +msgid "Version Number" +msgstr "Fassung :" #: shared/web/ElectionsWeb.py:143 msgid "Voters" @@ -530,11 +540,11 @@ msgstr "W msgid "Translation to %s" msgstr "Übersetzungen" -#: shared/common/xhtmlgenerator.py:80 +#: shared/common/xhtmlgenerator.py:84 msgid "Read the License" msgstr "Die Lizenz lesen" -#: shared/common/kinds.py:246 +#: shared/common/kinds.py:248 msgid "Viewing Mode" msgstr "" @@ -559,7 +569,7 @@ msgstr "Finnisch und Schwedisch" msgid "History - %s" msgstr "Überblick - %s" -#: shared/common/kinds.py:2982 +#: shared/common/kinds.py:3059 #, fuzzy msgid "Application Token" msgstr "Marke der Wahl" @@ -569,17 +579,17 @@ msgstr "Marke der Wahl" msgid "Sweden" msgstr "Schwedisch" -#: shared/common/kinds.py:2652 +#: shared/common/kinds.py:2715 #, fuzzy msgid "Thing" msgstr "Rubrik" -#: shared/common/kinds.py:161 +#: shared/common/kinds.py:163 #, fuzzy msgid "Translatable" msgstr "Übersetzen" -#: shared/common/kinds.py:2911 shared/common/kinds.py:2913 +#: shared/common/kinds.py:2983 shared/common/kinds.py:2985 msgid "Creation Time" msgstr "Schaffungsdatum" @@ -587,10 +597,6 @@ msgstr "Schaffungsdatum" msgid "%(from)s to %(to)s Translators" msgstr "%(from)s in %(to)s Übersetzer" -#: shared/common/GroupsCommon.py:406 -msgid "group" -msgstr "Gruppe" - #: shared/web/geography.py:197 #, fuzzy msgid "Saudi Arabia" @@ -601,12 +607,12 @@ msgstr "Saudi Riyal" msgid "Intersection" msgstr "Übersetzungen" -#: shared/common/kinds.py:2968 +#: shared/common/kinds.py:3045 #, fuzzy msgid "Token" msgstr "Marke der Wahl" -#: shared/common/AppointmentsCommon.py:104 +#: shared/common/AppointmentsCommon.py:99 #, fuzzy msgid "Enter a title for this appointment." msgstr "Die letzte virtuellen Hosts" @@ -615,7 +621,7 @@ msgstr "Die letzte virtuellen Hosts" msgid "Year Minimum Value" msgstr "" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:432 +#: shared/web/calendaring.py:70 #, fuzzy msgid "xSeptember" msgstr "September" @@ -630,11 +636,11 @@ msgstr "Herausgehen" msgid "Members Types" msgstr "Mime Type" -#: shared/web/GlasnostTALGenerator.py:100 +#: shared/web/GlasnostTALGenerator.py:103 talTranslations.py:10 msgid "All Objects" msgstr "Alle Objekte" -#: shared/common/kinds.py:1865 +#: shared/common/kinds.py:1893 #, fuzzy msgid "Enter Twice" msgstr "Zur Auswahl von Wählern" @@ -647,12 +653,12 @@ msgstr "Ihre letzte Datei Systeme" msgid "grading" msgstr "Reihenfolge" -#: shared/web/AuthenticationLoginPasswordWeb.py:94 +#: shared/web/AuthenticationLoginPasswordWeb.py:97 #, fuzzy msgid "Current Password" msgstr "Passwort wechseln" -#: shared/web/kinds.py:1351 +#: shared/web/kinds.py:1352 #, fuzzy msgid "Default Values" msgstr "Gruppe in Abwesenheit" @@ -671,11 +677,11 @@ msgstr "Feld" msgid "New Grade" msgstr "Neue Reihenfolge" -#: shared/common/xhtmlgenerator.py:85 +#: shared/common/xhtmlgenerator.py:89 msgid "New" msgstr "Neu" -#: shared/common/xhtmlgenerator.py:92 +#: shared/common/xhtmlgenerator.py:96 msgid "Pretion" msgstr "Pretion" @@ -732,17 +738,18 @@ msgstr "Schwedisch" msgid "GnuPG Fingerprint" msgstr "GnuPG Fingerabdruck" -#: shared/common/xhtmlgenerator.py:77 +#: shared/common/xhtmlgenerator.py:81 msgid "Find" msgstr "Suchen" -#: shared/web/VirtualHostsWeb.py:73 +#: shared/common/VirtualHostsCommon.py:99 msgid "Web Host Name" msgstr "Web Host Name" -#: shared/web/ForumsWeb.py:195 -msgid "Replies List" -msgstr "" +#: shared/web/CardsWeb.py:229 shared/web/ObjectsWeb.py:366 +#: shared/web/VotesWeb.py:710 shared/web/UploadFilesWeb.py:227 +msgid "Editing %s - %s" +msgstr "Bearbeitung von %s - %s" #: shared/common/widgets.py:375 #, fuzzy @@ -756,7 +763,7 @@ msgid "" "be displayed." msgstr "" -#: shared/common/xhtmlgenerator.py:69 +#: shared/common/xhtmlgenerator.py:73 msgid "Create" msgstr "Schaffen" @@ -786,7 +793,7 @@ msgstr "Die letzte virtuellen Hosts" msgid "Links" msgstr "Bindungen" -#: shared/common/xhtmlgenerator.py:87 +#: shared/common/xhtmlgenerator.py:91 msgid "OK" msgstr "OK" @@ -794,7 +801,7 @@ msgstr "OK" msgid "Albania" msgstr "" -#: shared/common/kinds.py:3221 shared/common/instructions.py:294 +#: shared/common/kinds.py:3327 shared/common/instructions.py:294 msgid "Value Holder" msgstr "" @@ -820,7 +827,7 @@ msgstr "" msgid "New Zealand" msgstr "Neuseeland Dollar" -#: shared/common/xhtmlgenerator.py:210 +#: shared/common/xhtmlgenerator.py:303 msgid "Missing Object (%s)" msgstr "" @@ -838,7 +845,7 @@ msgstr "Stimmabgabe auf vollendeten Wahlen" msgid "Error!" msgstr "Unrichtigkeit !" -#: shared/common/xhtmlgenerator.py:89 +#: shared/common/xhtmlgenerator.py:93 #, fuzzy msgid "Post a Comment" msgstr "Bemerkung" @@ -847,7 +854,7 @@ msgstr "Bemerkung" msgid "Wins" msgstr "Siege" -#: shared/web/AuthenticationLoginPasswordWeb.py:112 +#: shared/web/AuthenticationLoginPasswordWeb.py:115 #, fuzzy msgid "New Password (Confirmation)" msgstr "Passwort" @@ -857,7 +864,7 @@ msgstr "Passwort" msgid "Oman" msgstr "Deutsch" -#: shared/common/xhtmlgenerator.py:95 +#: shared/common/xhtmlgenerator.py:99 #, fuzzy msgid "Refuse" msgstr "Wahlergebnisse" @@ -882,7 +889,7 @@ msgstr "%s Einstellungen bearbeiten" msgid "New Election" msgstr "Wahl" -#: shared/common/kinds.py:1295 +#: shared/common/kinds.py:1311 msgid "Minimum Value" msgstr "" @@ -897,7 +904,7 @@ msgid "" "mails." msgstr "" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 #, fuzzy msgid "Friday" msgstr "Tag" @@ -911,11 +918,11 @@ msgstr "Dong" msgid "DocBook Source - %s" msgstr "DocBook Quelle - %s" -#: shared/common/kinds.py:309 +#: shared/common/kinds.py:311 msgid "Internal" msgstr "" -#: shared/common/xhtmlgenerator.py:94 +#: shared/common/xhtmlgenerator.py:98 msgid "Submit For Evaluation" msgstr "Zur Einschätzung vorschlagen" @@ -923,17 +930,17 @@ msgstr "Zur Einsch msgid "Analyze" msgstr "Analyse" -#: shared/common/VirtualHostsCommon.py:53 +#: shared/common/VirtualHostsCommon.py:54 #, fuzzy msgid "Select the default virtual host to use on this server" msgstr "Die zu verwalten letzte virtuellen Hosts" -#: shared/web/AuthenticationLoginPasswordWeb.py:426 +#: shared/web/AuthenticationLoginPasswordWeb.py:432 #, fuzzy msgid "Change password for user:" msgstr "Passwort wechseln" -#: shared/common/xhtmlgenerator.py:79 +#: shared/common/xhtmlgenerator.py:83 #, fuzzy msgid "New Implementation" msgstr "Neue Operation" @@ -942,7 +949,7 @@ msgstr "Neue Operation" msgid "Specified path is not a file!" msgstr "Der spezifierte Zugangsweg erzielt keine Datei !" -#: shared/common/kinds.py:2148 +#: shared/common/kinds.py:2209 #, fuzzy msgid "Choose the user(s) of this object." msgstr "Stimmabgabe auf vollendeten Wahlen" @@ -962,10 +969,6 @@ msgid "" "\"?" msgstr "Wollen Sie sicher die Stimmenthalter bei der Wahl per Email mahnen ?" -#: shared/web/geography.py:137 -msgid "Kyrgyzstan" -msgstr "" - #: shared/common/widgets.py:198 msgid "Amount Entry Field" msgstr "" @@ -1026,7 +1029,7 @@ msgstr "Die letzte virtuellen Hosts" msgid "Instruction" msgstr "Übersetzungen" -#: shared/web/widgets.py:633 +#: shared/web/widgets.py:630 msgid "undefined" msgstr "" @@ -1038,16 +1041,16 @@ msgstr "" msgid "ID" msgstr "" -#: shared/web/AppointmentsWeb.py:214 +#: shared/web/AppointmentsWeb.py:200 #, fuzzy msgid "Day long appointments" msgstr "Inhalt" -#: shared/common/kinds.py:1302 +#: shared/common/kinds.py:1318 msgid "Integer Number" msgstr "Ganzzahl" -#: shared/common/kinds.py:820 +#: shared/common/kinds.py:836 #, fuzzy msgid "Values" msgstr "Misserfolg" @@ -1081,16 +1084,16 @@ msgstr "Januar" msgid "Yemen" msgstr "Jemen Rial" -#: shared/common/kinds.py:2457 +#: shared/common/kinds.py:2520 msgid "Server Role" msgstr "" -#: shared/common/kinds.py:1041 +#: shared/common/kinds.py:1057 #, fuzzy msgid "Email Address" msgstr "Emailaddresse" -#: shared/common/VirtualHostsCommon.py:80 +#: shared/common/VirtualHostsCommon.py:82 msgid "" "Enter the Glasnost dispatcher id for this virtual host (you may have to " "consult your administrator)." @@ -1105,8 +1108,8 @@ msgstr "leere Stimmabgabe" msgid "Mauritania" msgstr "Mauritius Rupie" -#: shared/common/kinds.py:196 shared/common/kinds.py:214 -#: shared/common/kinds.py:232 shared/common/kinds.py:250 +#: shared/common/kinds.py:198 shared/common/kinds.py:216 +#: shared/common/kinds.py:234 shared/common/kinds.py:252 msgid "Read Only / Hidden If Empty" msgstr "" @@ -1123,16 +1126,11 @@ msgstr "Quelle - %s" msgid "Editing Global Settings" msgstr "%s Einstellungen bearbeiten" -#: shared/web/ObjectsWeb.py:366 shared/web/VotesWeb.py:710 -#: shared/web/UploadFilesWeb.py:223 -msgid "Editing %s - %s" -msgstr "Bearbeitung von %s - %s" - #: shared/web/ElectionsWeb.py:90 msgid "One-Time" msgstr "Pünktlich" -#: shared/common/kinds.py:108 +#: shared/common/kinds.py:110 msgid "Import / Export" msgstr "" @@ -1166,6 +1164,10 @@ msgstr "Kapitel" msgid "Time Entry Field" msgstr "Feld" +#: shared/common/scripts.py:78 +msgid "Output Console" +msgstr "" + #: shared/web/AuthenticationLoginPasswordWeb.py:70 #, fuzzy msgid "User Choice" @@ -1179,16 +1181,20 @@ msgstr "" msgid "Israel" msgstr "" +#: shared/web/ElectionsWeb.py:353 shared/web/ElectionsWeb.py:369 +msgid "secret" +msgstr "geheim" + #: shared/common/PeopleCommon.py:90 msgid "Enter the first name." msgstr "" -#: shared/common/widgets.py:479 +#: shared/common/widgets.py:489 msgid "URL Entry Field" msgstr "" -#: shared/common/kinds.py:194 shared/common/kinds.py:212 -#: shared/common/kinds.py:230 shared/common/kinds.py:248 +#: shared/common/kinds.py:196 shared/common/kinds.py:214 +#: shared/common/kinds.py:232 shared/common/kinds.py:250 #, fuzzy msgid "Hidden" msgstr "Datei" @@ -1249,7 +1255,7 @@ msgstr "Prozentsatz" msgid "The last short news to administer" msgstr "Die zu verwalten letzte Kurznachrichten" -#: shared/common/kinds.py:210 +#: shared/common/kinds.py:212 #, fuzzy msgid "Edition Mode" msgstr "Bearbeitungsdatum" @@ -1268,12 +1274,12 @@ msgstr "Gr msgid "Barbados" msgstr "Speicherungen" -#: shared/common/kinds.py:670 +#: shared/common/kinds.py:686 #, fuzzy msgid "Any" msgstr "Analyse" -#: shared/common/ForumsCommon.py:102 +#: shared/common/ForumsCommon.py:102 talTranslations.py:1 #, fuzzy msgid "Forums" msgstr "Format" @@ -1283,7 +1289,7 @@ msgstr "Format" msgid "Taiwan" msgstr "Feld" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "September" msgstr "September" @@ -1307,16 +1313,16 @@ msgstr "" msgid "Nicaragua" msgstr "" -#: shared/web/UploadFilesWeb.py:429 +#: shared/web/UploadFilesWeb.py:433 msgid "Your last files" msgstr "Ihre letzte Dateien" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:429 +#: shared/web/calendaring.py:69 #, fuzzy msgid "xJune" msgstr "Juni" -#: shared/common/kinds.py:146 +#: shared/common/kinds.py:148 #, fuzzy msgid "Mandatory" msgstr "Januar" @@ -1325,7 +1331,7 @@ msgstr "Januar" msgid "Public Ballot" msgstr "Öffentlicher Wahlzettel" -#: shared/common/kinds.py:113 +#: shared/common/kinds.py:115 #, fuzzy msgid "To Server Only" msgstr "Niemals" @@ -1334,7 +1340,7 @@ msgstr "Niemals" msgid "Heading" msgstr "Rubrik" -#: shared/common/kinds.py:2490 +#: shared/common/kinds.py:2553 #, fuzzy msgid "Slot Name" msgstr "Vorname" @@ -1348,8 +1354,8 @@ msgstr "Neues %s" msgid "Winners Count" msgstr "Zahl der Sieger" -#: shared/web/CardsWeb.py:343 shared/web/VotesWeb.py:708 -#: shared/web/UploadFilesWeb.py:221 +#: shared/web/CardsWeb.py:406 shared/web/VotesWeb.py:708 +#: shared/web/UploadFilesWeb.py:225 msgid "New %s" msgstr "Neues %s" @@ -1357,11 +1363,12 @@ msgstr "Neues %s" msgid "Reverse Year Order?" msgstr "" -#: shared/common/kinds.py:2091 +#: shared/common/kinds.py:2152 msgid "Accepted Types" msgstr "" #: shared/common/ElectionsCommon.py:254 shared/web/ElectionsWeb.py:882 +#: talTranslations.py:9 msgid "Elections" msgstr "Wahlen" @@ -1388,21 +1395,22 @@ msgstr "Zur Einsch msgid "Georgia" msgstr "Georgischer Lari" -#: shared/common/xhtmlgenerator.py:106 +#: shared/common/xhtmlgenerator.py:110 #, fuzzy msgid "Definition" msgstr "Sicher" -#: shared/common/CardsCommon.py:347 +#: shared/common/CardsCommon.py:392 msgid "Card" msgstr "Karte" -#: shared/common/kinds.py:2197 shared/common/kinds.py:2201 +#: shared/common/kinds.py:2258 shared/common/kinds.py:2264 #, fuzzy msgid "Properties" msgstr "Operationen" -#: shared/common/UploadFilesCommon.py:137 shared/web/UploadFilesWeb.py:440 +#: shared/common/UploadFilesCommon.py:137 shared/web/UploadFilesWeb.py:444 +#: talTranslations.py:15 msgid "Files" msgstr "Dateien" @@ -1419,6 +1427,10 @@ msgstr "Gruppen" msgid "Active" msgstr "Artikel" +#: shared/common/scripts.py:74 +msgid "Execute On View" +msgstr "" + #: shared/common/GroupsCommon.py:409 msgid "Groups" msgstr "Gruppen" @@ -1431,11 +1443,12 @@ msgstr "Artikel" msgid "Added to slot" msgstr "" -#: shared/web/ElectionsWeb.py:353 shared/web/ElectionsWeb.py:369 -msgid "secret" -msgstr "geheim" +#: shared/common/widgets.py:418 +#, fuzzy +msgid "Others Button" +msgstr "Veröffentlichung" -#: shared/web/AuthenticationLoginPasswordWeb.py:103 +#: shared/web/AuthenticationLoginPasswordWeb.py:106 #, fuzzy msgid "New Password" msgstr "Passwort" @@ -1449,7 +1462,7 @@ msgstr "" msgid "Armenia" msgstr "Argentinischer Peso" -#: shared/common/AppointmentsCommon.py:177 +#: shared/common/AppointmentsCommon.py:172 #, fuzzy msgid "Appointment" msgstr "Inhalt" @@ -1458,25 +1471,30 @@ msgstr "Inhalt" msgid "Kind of Ballots" msgstr "Stimmzettel Typ" -#: shared/common/kinds.py:2109 shared/common/kinds.py:2113 +#: shared/common/kinds.py:2170 shared/common/kinds.py:2174 #, fuzzy msgid "Argument Pins" msgstr "Argentinischer Peso" -#: shared/common/AppointmentsCommon.py:179 +#: shared/common/AppointmentsCommon.py:174 #, fuzzy msgid "Appointments" msgstr "Inhalt" -#: shared/common/xhtmlgenerator.py:93 +#: shared/common/xhtmlgenerator.py:97 msgid "Preview" msgstr "" -#: shared/common/kinds.py:104 shared/common/widgets.py:80 +#: shared/common/kinds.py:106 shared/common/widgets.py:80 #, fuzzy msgid "Hide Field Label" msgstr "Vorname" +#: shared/web/calendaring.py:57 +#, fuzzy +msgid "Tuesday" +msgstr "Tag" + #: shared/web/ForumsWeb.py:294 #, fuzzy msgid "Subjects" @@ -1499,9 +1517,9 @@ msgstr "" msgid "New Short Article" msgstr "Kurznachricht" -#: shared/web/PeopleWeb.py:80 -msgid "Last Name" -msgstr "Name" +#: shared/web/geography.py:184 +msgid "Panama" +msgstr "" #: shared/web/geography.py:115 #, fuzzy @@ -1526,7 +1544,7 @@ msgstr "" msgid "Yes" msgstr "Yen" -#: shared/common/kinds.py:110 +#: shared/common/kinds.py:112 msgid "From Server Only" msgstr "" @@ -1544,7 +1562,7 @@ msgstr "Portugiesisch" msgid "Duration Entry Field" msgstr "" -#: shared/common/kinds.py:708 shared/common/kinds.py:812 +#: shared/common/kinds.py:724 shared/common/kinds.py:828 #, fuzzy msgid "Titles" msgstr "Titel" @@ -1554,7 +1572,7 @@ msgstr "Titel" msgid "Malaysia" msgstr "Maltesische Lira" -#: shared/web/AppointmentsWeb.py:635 shared/web/widgets.py:502 +#: shared/web/AppointmentsWeb.py:627 shared/web/widgets.py:498 msgid "Month" msgstr "Monat" @@ -1611,7 +1629,7 @@ msgstr "" msgid "Choose whether to crypt e-mails Glasnost sends to you." msgstr "" -#: shared/common/kinds.py:1426 +#: shared/common/kinds.py:1442 #, fuzzy msgid "Mapping" msgstr "Quote" @@ -1626,7 +1644,7 @@ msgstr "Niemals" msgid "Login & Password" msgstr "Passwort wechseln" -#: shared/common/xhtmlgenerator.py:98 +#: shared/common/xhtmlgenerator.py:102 talTranslations.py:5 msgid "Settings" msgstr "Einstellungen" @@ -1640,7 +1658,7 @@ msgstr "Format" msgid "Bulgaria" msgstr "Boulga" -#: shared/common/xhtmlgenerator.py:60 +#: shared/common/xhtmlgenerator.py:64 #, fuzzy msgid "Add Article" msgstr "Artikel" @@ -1649,11 +1667,10 @@ msgstr "Artikel" msgid "Developers" msgstr "Programmierer" -#: shared/common/kinds.py:3123 shared/common/instructions.py:316 -#: shared/common/values.py:53 +#: shared/common/AppointmentsCommon.py:63 #, fuzzy -msgid "Kind" -msgstr "Suchen" +msgid "Select the group that holds categories for the appointments." +msgstr "Auswählen Sie den Kandidat zu hinzufügen" #: shared/web/ElectionsWeb.py:700 msgid "Confirm Pestering of Abstentionnists by Email" @@ -1663,11 +1680,11 @@ msgstr "Best msgid "Translation Language" msgstr "Übersetzungssprache" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "July" msgstr "Juli" -#: shared/common/xhtmlgenerator.py:72 +#: shared/common/xhtmlgenerator.py:76 msgid "Download Glasnost" msgstr "Glasnost herunterladen" @@ -1676,24 +1693,20 @@ msgstr "Glasnost herunterladen" msgid "Members" msgstr "Mitglieder" -#: shared/web/ObjectsWeb.py:82 -#, fuzzy -msgid "Version Number" -msgstr "Fassung :" - -#: shared/web/AppointmentsWeb.py:82 +#: shared/web/AppointmentsWeb.py:84 msgid "Select the people and groups who are assigned to this appointment." msgstr "" -#: shared/common/xhtmlgenerator.py:91 shared/common/PreferencesCommon.py:117 +#: shared/common/xhtmlgenerator.py:95 shared/common/PreferencesCommon.py:117 #: shared/common/PreferencesCommon.py:119 shared/web/PreferencesWeb.py:191 msgid "Preferences" msgstr "Bevorzugungen" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:426 -#, fuzzy -msgid "xMarch" -msgstr "März" +#: shared/common/kinds.py:822 shared/web/GradesWeb.py:125 +#: shared/web/VotesWeb.py:421 shared/web/VotesWeb.py:465 +#: shared/web/VotesWeb.py:525 shared/web/VotesWeb.py:583 +msgid "Choice" +msgstr "Auswahl" #: shared/common/PeopleCommon.py:78 #, fuzzy @@ -1730,12 +1743,12 @@ msgstr "" msgid "Malawi" msgstr "Maltesische Lira" -#: shared/common/xhtmlgenerator.py:90 +#: shared/common/xhtmlgenerator.py:94 #, fuzzy msgid "Reply" msgstr "Anwenden" -#: shared/web/CardsWeb.py:248 +#: shared/web/CardsWeb.py:313 #, fuzzy msgid "Editing Definition of Card \"%s\"" msgstr "Bearbeitung Feld %s der Datei - %s" @@ -1754,7 +1767,7 @@ msgstr "Wahl" msgid "Winners" msgstr "Sieger" -#: shared/common/xhtmlgenerator.py:100 +#: shared/common/xhtmlgenerator.py:104 msgid "Source" msgstr "Quelle sehen" @@ -1763,12 +1776,12 @@ msgstr "Quelle sehen" msgid "France" msgstr "CFP Franc" -#: shared/common/kinds.py:307 +#: shared/common/kinds.py:309 #, fuzzy msgid "Storage" msgstr "Zustand" -#: shared/common/xhtmlgenerator.py:102 +#: shared/common/xhtmlgenerator.py:106 msgid "Update Translation" msgstr "Update Übersetzung" @@ -1784,6 +1797,10 @@ msgstr "Reihenfolge" msgid "Candidates One-on-One Comparison" msgstr "Paarweise Vergleichung der Kandidaten" +#: shared/common/xhtmlgenerator.py:78 +msgid "Edit Arguments" +msgstr "" + #: shared/web/geography.py:52 msgid "Afghanistan" msgstr "" @@ -1800,16 +1817,20 @@ msgstr "Fassung - %s" msgid "Select the objects that are parts of this heading." msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:176 +#: shared/web/calendaring.py:63 +msgid "December" +msgstr "Dezember" + +#: shared/web/AuthenticationLoginPasswordWeb.py:180 #, fuzzy msgid "Authentication (Login/Password) Settings" msgstr "%s Einstellungen bearbeiten" -#: shared/common/kinds.py:692 shared/common/kinds.py:797 +#: shared/common/kinds.py:708 shared/common/kinds.py:813 msgid "Check the box to sort labels alphabetically" msgstr "" -#: shared/common/AppointmentsCommon.py:78 +#: shared/common/AppointmentsCommon.py:73 #, fuzzy msgid "Enter the text of this appointment." msgstr "Die letzte virtuellen Hosts" @@ -1856,11 +1877,11 @@ msgstr "Bearbeitung der Bevorzugungen" msgid "Finnish" msgstr "Finnisch" -#: shared/common/kinds.py:2097 +#: shared/common/kinds.py:2158 msgid "Accepted Roles" msgstr "" -#: shared/common/kinds.py:530 +#: shared/common/kinds.py:538 msgid "Maximum Number of Items" msgstr "" @@ -1869,7 +1890,7 @@ msgstr "" msgid "Maldives" msgstr "Misserfolg" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 #, fuzzy msgid "Sunday" msgstr "Yuan" @@ -1879,7 +1900,7 @@ msgstr "Yuan" msgid "Argentina" msgstr "Argentinischer Peso" -#: shared/common/kinds.py:3075 +#: shared/common/kinds.py:3152 #, fuzzy msgid "Extended Choice" msgstr "Zur Auswahl von Wählern" @@ -1889,7 +1910,7 @@ msgstr "Zur Auswahl von W msgid "Dispatcher" msgstr "Glasnost Id" -#: shared/common/xhtmlgenerator.py:104 +#: shared/common/xhtmlgenerator.py:108 #, fuzzy msgid "Validate" msgstr "Kandidat" @@ -1899,12 +1920,12 @@ msgid "" "Select the people and groups who are allowed to read items of this kind." msgstr "" -#: shared/web/widgets.py:1337 +#: shared/web/widgets.py:1342 #, fuzzy msgid "Others" msgstr "Oktober" -#: shared/web/AppointmentsWeb.py:596 +#: shared/web/AppointmentsWeb.py:587 #, fuzzy msgid "Hour: %s - %s" msgstr "%s - %s" @@ -1930,11 +1951,11 @@ msgstr "Originalsprache" msgid "French" msgstr "Französisch" -#: shared/common/xhtmlgenerator.py:83 +#: shared/common/xhtmlgenerator.py:87 msgid "Modify" msgstr "Modifizieren" -#: shared/web/AuthenticationLoginPasswordWeb.py:393 +#: shared/web/AuthenticationLoginPasswordWeb.py:399 #, fuzzy msgid "The account has been removed successfully." msgstr "Das Passwort wurde per Email zu %s gesendet!" @@ -1943,21 +1964,22 @@ msgstr "Das Passwort wurde per Email zu %s gesendet!" msgid "Vote Token" msgstr "Marke der Wahl" -#: shared/web/AuthenticationLoginPasswordWeb.py:435 +#: shared/web/AuthenticationLoginPasswordWeb.py:441 #, fuzzy msgid "Delete user:" msgstr "Streichen" -#: shared/common/xhtmlgenerator.py:59 +#: shared/common/xhtmlgenerator.py:63 shared/common/xhtmlgenerator.py:219 +#: talTranslations.py:12 msgid "Add" msgstr "Hinzufügen" -#: shared/web/ObjectsWeb.py:769 +#: shared/web/ObjectsWeb.py:775 #, fuzzy msgid "Search Results" msgstr "Wahlergebnisse" -#: shared/common/kinds.py:112 +#: shared/common/kinds.py:114 #, fuzzy msgid "Public" msgstr "Öffentlicher Wahlzettel" @@ -1966,9 +1988,9 @@ msgstr " msgid "Enter the text of the document." msgstr "" -#: shared/common/xhtmlgenerator.py:74 -msgid "Edit Arguments" -msgstr "" +#: shared/common/VirtualHostsCommon.py:120 +msgid "Template" +msgstr "Schablone" #: shared/common/GroupsCommon.py:65 #, fuzzy @@ -1982,8 +2004,8 @@ msgid "Authentication" msgstr "Stimmenthaltung" #: shared/common/widgets.py:204 shared/common/widgets.py:248 -#: shared/common/widgets.py:292 shared/common/widgets.py:423 -#: shared/common/widgets.py:475 shared/common/widgets.py:488 +#: shared/common/widgets.py:292 shared/common/widgets.py:433 +#: shared/common/widgets.py:485 shared/common/widgets.py:498 #: shared/web/UploadFilesWeb.py:115 shared/web/uploads.py:101 msgid "Width" msgstr "Breite" @@ -2022,12 +2044,11 @@ msgstr "" msgid "system files" msgstr "System Dateien" -#: shared/web/geography.py:221 -#, fuzzy -msgid "East Timor" -msgstr "Letzte Bearbeiter" +#: shared/common/ArticlesCommon.py:57 +msgid "Select the author(s) of the document." +msgstr "" -#: shared/common/kinds.py:2166 +#: shared/common/kinds.py:2227 #, fuzzy msgid "People Set" msgstr "Personen" @@ -2037,12 +2058,12 @@ msgstr "Personen" msgid "South Africa" msgstr "Südkoreanischer Won" -#: shared/common/widgets.py:438 +#: shared/common/widgets.py:448 msgid "View In Text Area" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:309 -#: shared/web/AuthenticationLoginPasswordWeb.py:375 +#: shared/web/AuthenticationLoginPasswordWeb.py:315 +#: shared/web/AuthenticationLoginPasswordWeb.py:381 #, fuzzy msgid "The password has been modified successfully." msgstr "Das Passwort wurde per Email zu %s gesendet!" @@ -2067,7 +2088,7 @@ msgstr "Wahl" msgid "Enter the name of this alias (will be used in the URL)." msgstr "" -#: shared/common/kinds.py:702 +#: shared/common/kinds.py:718 msgid "Boolean" msgstr "Boolesch" @@ -2075,6 +2096,10 @@ msgstr "Boolesch" msgid "Switzerland" msgstr "" +#: talTranslations.py:11 +msgid "Back to home" +msgstr "" + #: shared/web/CommentsWeb.py:90 #, fuzzy msgid "Commented Item" @@ -2084,6 +2109,11 @@ msgstr "Bemerkung" msgid "Enter an eventual nickname here." msgstr "" +#: talTranslations.py:8 +#, fuzzy +msgid "User:" +msgstr "Benutzer :" + #: shared/web/geography.py:102 msgid "Egypt" msgstr "" @@ -2092,7 +2122,7 @@ msgstr "" msgid "Honduras" msgstr "" -#: shared/common/xhtmlgenerator.py:58 +#: shared/common/xhtmlgenerator.py:62 msgid "Abstain" msgstr "Stimmenthaltung" @@ -2104,8 +2134,8 @@ msgstr "Portugiesisch" msgid "Crypt Emails" msgstr "Emails verschlüsseln" -#: shared/common/xhtmlgenerator.py:81 -#: shared/web/AuthenticationLoginPasswordWeb.py:491 +#: shared/common/xhtmlgenerator.py:85 +#: shared/web/AuthenticationLoginPasswordWeb.py:496 #: shared/web/AuthenticationLdapWeb.py:205 msgid "Login" msgstr "Benutzerkennung" @@ -2115,7 +2145,7 @@ msgstr "Benutzerkennung" msgid "Guyana" msgstr "Guarani" -#: shared/common/kinds.py:2617 +#: shared/common/kinds.py:2680 #, fuzzy msgid "Access in Utilization Mode" msgstr "Identifikation" @@ -2142,7 +2172,7 @@ msgstr "Objekt" msgid "Button" msgstr "Veröffentlichung" -#: shared/common/kinds.py:3093 +#: shared/common/kinds.py:3170 #, fuzzy msgid "Fault" msgstr "Misserfolg" @@ -2151,18 +2181,19 @@ msgstr "Misserfolg" msgid "Other Translations" msgstr "Andere Übersetzungen" -#: shared/common/properties.py:62 shared/common/things.py:163 +#: shared/common/properties.py:65 shared/common/things.py:163 #: shared/web/AtomsWeb.py:60 shared/web/CommentsWeb.py:79 #: shared/web/GradesWeb.py:133 shared/web/GroupsWeb.py:94 #: shared/web/PageNamesWeb.py:65 shared/web/RubricsWeb.py:75 msgid "Name" msgstr "Name" -#: shared/web/CardsWeb.py:190 -msgid "Definition of Card \"%s\"" +#: shared/web/geography.py:137 +msgid "Kyrgyzstan" msgstr "" #: shared/common/ArticlesCommon.py:140 shared/web/ArticlesWeb.py:461 +#: talTranslations.py:2 msgid "Articles" msgstr "Artikel" @@ -2175,7 +2206,7 @@ msgstr "Wenn m msgid "Instructions" msgstr "Übersetzungen" -#: shared/web/UploadFilesWeb.py:436 +#: shared/web/UploadFilesWeb.py:440 msgid "The last files" msgstr "Die letzte Dateien" @@ -2184,7 +2215,7 @@ msgstr "Die letzte Dateien" msgid "Difference" msgstr "Unterschieden" -#: shared/common/kinds.py:2632 +#: shared/common/kinds.py:2695 msgid "Access in Viewing Mode" msgstr "" @@ -2193,7 +2224,7 @@ msgstr "" msgid "Germany" msgstr "Deutsch" -#: shared/common/VirtualHostsCommon.py:101 +#: shared/common/VirtualHostsCommon.py:116 msgid "Select the template (skin) to use for this host." msgstr "" @@ -2216,7 +2247,11 @@ msgstr "Isl msgid "Global Settings" msgstr "Einstellungen" -#: shared/common/kinds.py:2162 shared/common/kinds.py:2168 +#: shared/web/calendaring.py:61 +msgid "April" +msgstr "April" + +#: shared/common/kinds.py:2223 shared/common/kinds.py:2229 #, fuzzy msgid "Users" msgstr "Benutzer :" @@ -2259,7 +2294,7 @@ msgstr "" msgid "headings" msgstr "Rubriken" -#: shared/common/kinds.py:3064 shared/common/kinds.py:3066 +#: shared/common/kinds.py:3141 shared/common/kinds.py:3143 msgid "Writers" msgstr "Bearbeiter" @@ -2281,7 +2316,7 @@ msgstr "Wahl" msgid "Winners Grading" msgstr "Reihenfolge von Siegern" -#: shared/common/kinds.py:2289 shared/common/kinds.py:2293 +#: shared/common/kinds.py:2352 shared/common/kinds.py:2356 #, fuzzy msgid "Result Pins" msgstr "Wahlergebnisse" @@ -2294,28 +2329,25 @@ msgstr "Quelle sehen" msgid "Select the group new users will be automatically added to." msgstr "" -#: shared/web/geography.py:229 -msgid "United Kingdom" -msgstr "" +#: shared/web/geography.py:221 +#, fuzzy +msgid "East Timor" +msgstr "Letzte Bearbeiter" #: shared/web/TranslationsWeb.py:395 msgid "Original String" msgstr "ursprüngliche Zeichenkette" -#: shared/web/TranslationsWeb.py:360 -msgid "Fuzzy" -msgstr "Annähernd" - #: shared/web/TranslationsWeb.py:375 msgid "Similar String" msgstr "ähnliche Zeichenkette" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 #, fuzzy msgid "Saturday" msgstr "Yuan" -#: shared/common/CardsCommon.py:348 +#: shared/common/CardsCommon.py:393 msgid "cards" msgstr "Karten" @@ -2336,7 +2368,7 @@ msgstr "" msgid "Missing value!" msgstr "Abwesender Wert !" -#: shared/common/kinds.py:172 +#: shared/common/kinds.py:174 #, fuzzy msgid "Field Label" msgstr "Vorname" @@ -2372,7 +2404,7 @@ msgstr "" msgid "Ireland" msgstr "Isländische Krone" -#: shared/common/xhtmlgenerator.py:78 +#: shared/common/xhtmlgenerator.py:82 msgid "History" msgstr "Überblick" @@ -2385,7 +2417,7 @@ msgstr "" msgid "translation" msgstr "Übersetzungen" -#: shared/web/AuthenticationLoginPasswordWeb.py:465 +#: shared/web/AuthenticationLoginPasswordWeb.py:470 #: shared/web/AuthenticationLdapWeb.py:181 msgid "To access this part of the site, you need to sign in." msgstr "" @@ -2395,11 +2427,11 @@ msgstr "" msgid "Are you sure you want to delete the %s \"%s\" ?" msgstr "Wollen Sie sicher den Zettel streichen?" -#: shared/common/kinds.py:3057 +#: shared/common/kinds.py:3134 msgid "Select the people and groups who are allowed to modify the item." msgstr "" -#: shared/common/xhtmlgenerator.py:111 +#: shared/common/xhtmlgenerator.py:115 msgid "Vote " msgstr "Wählen " @@ -2412,11 +2444,11 @@ msgstr "Hinzuf msgid "Gambia" msgstr "" -#: shared/common/kinds.py:1351 shared/common/kinds.py:1359 +#: shared/common/kinds.py:1367 shared/common/kinds.py:1375 msgid "Language" msgstr "Sprache" -#: shared/web/GlasnostTALGenerator.py:97 +#: shared/web/GlasnostTALGenerator.py:100 talTranslations.py:3 #, fuzzy msgid "Search" msgstr "März" @@ -2425,9 +2457,9 @@ msgstr "M msgid "Blank Ballots:" msgstr "Leere Wahl:" -#: shared/common/kinds.py:804 shared/common/kinds.py:1189 -#: shared/common/kinds.py:1357 shared/common/kinds.py:1969 -#: shared/common/kinds.py:3206 +#: shared/common/kinds.py:820 shared/common/kinds.py:1205 +#: shared/common/kinds.py:1373 shared/common/kinds.py:2030 +#: shared/common/kinds.py:3283 shared/common/kinds.py:3312 #, fuzzy msgid "Data" msgstr "Datum" @@ -2444,7 +2476,7 @@ msgstr "" msgid "Ties" msgstr "Gleichheit" -#: shared/common/kinds.py:982 shared/common/widgets.py:224 +#: shared/common/kinds.py:998 shared/common/widgets.py:224 #: shared/web/ArticlesWeb.py:347 msgid "Date" msgstr "Datum" @@ -2461,8 +2493,8 @@ msgstr "" msgid "No options for this authentication method." msgstr "" -#: shared/common/kinds.py:197 shared/common/kinds.py:215 -#: shared/common/kinds.py:233 +#: shared/common/kinds.py:199 shared/common/kinds.py:217 +#: shared/common/kinds.py:235 #, fuzzy msgid "Read/Write" msgstr "Leser" @@ -2472,12 +2504,12 @@ msgstr "Leser" msgid "None Label" msgstr "Konto" -#: shared/common/xhtmlgenerator.py:76 +#: shared/common/xhtmlgenerator.py:80 #, fuzzy msgid "Every Article" msgstr "Neuer Artikel" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 #, fuzzy msgid "Monday" msgstr "Tag" @@ -2503,21 +2535,30 @@ msgstr "" msgid "New Comment" msgstr "Neue Bemerkung" +#: shared/common/scripts.py:62 +msgid "Execute On Edit" +msgstr "" + #: shared/common/PreferencesCommon.py:78 msgid "Use Browser Settings" msgstr "Einstellungen der Browser benutzen" -#: shared/web/AppointmentsWeb.py:77 +#: shared/web/calendaring.py:71 +#, fuzzy +msgid "xOctober" +msgstr "Oktober" + +#: shared/web/AppointmentsWeb.py:79 #, fuzzy msgid "Categories" msgstr "Kapitel" -#: shared/web/AppointmentsWeb.py:84 +#: shared/web/AppointmentsWeb.py:86 #, fuzzy msgid "Participants" msgstr "Artikel" -#: shared/web/AppointmentsWeb.py:86 +#: shared/web/AppointmentsWeb.py:88 #, fuzzy msgid "Start" msgstr "Zustand" @@ -2547,11 +2588,11 @@ msgstr "" msgid "(%d words)" msgstr "" -#: shared/common/widgets.py:434 +#: shared/common/widgets.py:444 msgid "Multi-Line Text Entry Field" msgstr "" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:425 +#: shared/web/calendaring.py:68 #, fuzzy msgid "xFebruary" msgstr "Februar" @@ -2578,6 +2619,13 @@ msgstr "Rand" msgid "Headings" msgstr "Rubriken" +#: shared/web/VotesWeb.py:94 shared/web/VotesWeb.py:142 +#: shared/web/VotesWeb.py:185 shared/web/VotesWeb.py:229 +#: shared/web/VotesWeb.py:428 shared/web/VotesWeb.py:472 +#: shared/web/VotesWeb.py:532 shared/web/VotesWeb.py:590 +msgid "Blank Vote" +msgstr "Leerer Stimmzettel" + #: shared/web/ForumsWeb.py:189 msgid "replies: %d" msgstr "" @@ -2586,7 +2634,7 @@ msgstr "" msgid "Currency" msgstr "Währung" -#: shared/common/kinds.py:1961 +#: shared/common/kinds.py:2022 #, fuzzy msgid "Item Type" msgstr "Mime Type" @@ -2603,10 +2651,6 @@ msgstr "Condorcet Methode" msgid "Enter the title of the document." msgstr "" -#: shared/web/VirtualHostsWeb.py:78 -msgid "Template" -msgstr "Schablone" - #: shared/common/BrevesCommon.py:180 msgid "The election \"%s\" is closed." msgstr "Die Wahl \"%s\" ist vollendet." @@ -2620,7 +2664,7 @@ msgstr "Personen" msgid "Chad" msgstr "Haben" -#: shared/common/kinds.py:1003 shared/web/VirtualHostsWeb.py:69 +#: shared/common/kinds.py:1019 shared/common/VirtualHostsCommon.py:88 #, fuzzy msgid "Glasnost Dispatcher ID" msgstr "Glasnost Id" @@ -2629,20 +2673,19 @@ msgstr "Glasnost Id" msgid "Angola" msgstr "" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:427 -#, fuzzy -msgid "xApril" -msgstr "April" +#: shared/web/PeopleWeb.py:91 +msgid "Nickname" +msgstr "Spitzname" -#: shared/common/kinds.py:2273 shared/common/kinds.py:2275 +#: shared/common/kinds.py:2336 shared/common/kinds.py:2338 msgid "Readers" msgstr "Leser" -#: shared/common/xhtmlgenerator.py:70 shared/web/ObjectsWeb.py:581 +#: shared/common/xhtmlgenerator.py:74 shared/web/ObjectsWeb.py:587 msgid "Delete" msgstr "Streichen" -#: shared/common/CardsCommon.py:346 +#: shared/common/CardsCommon.py:391 msgid "card" msgstr "Karte" @@ -2670,7 +2713,7 @@ msgstr "Durchgehende Wahlen" msgid "Tunisia" msgstr "Tunesischer Dinar" -#: shared/common/AppointmentsCommon.py:178 +#: shared/common/AppointmentsCommon.py:173 #, fuzzy msgid "appointments" msgstr "Inhalt" @@ -2680,10 +2723,10 @@ msgstr "Inhalt" msgid "Every Type" msgstr "Alle" -#: shared/web/geography.py:168 +#: shared/web/calendaring.py:68 #, fuzzy -msgid "Mauritius" -msgstr "Mauritius Rupie" +msgid "xMarch" +msgstr "März" #: shared/web/ElectionsWeb.py:541 msgid "" @@ -2697,7 +2740,7 @@ msgstr "" msgid "Indonesia" msgstr "" -#: shared/common/xhtmlgenerator.py:96 +#: shared/common/xhtmlgenerator.py:100 msgid "Send by Email" msgstr "Durch Email Senden" @@ -2708,10 +2751,15 @@ msgstr "Boulga" #: shared/common/widgets.py:388 shared/common/widgets.py:413 #: shared/web/TranslationsWeb.py:123 shared/web/TranslationsWeb.py:133 -#: shared/web/widgets.py:391 +#: shared/web/widgets.py:400 msgid "None" msgstr "Kein" +#: shared/common/scripts.py:87 +#, fuzzy +msgid "Source Code" +msgstr "Quelle sehen" + #: shared/web/geography.py:227 #, fuzzy msgid "Ukraine" @@ -2739,7 +2787,7 @@ msgstr "Artikel" msgid "China" msgstr "Chilenischer Peso" -#: shared/common/kinds.py:94 +#: shared/common/kinds.py:96 #, fuzzy msgid "Default Value" msgstr "Gruppe in Abwesenheit" @@ -2783,7 +2831,7 @@ msgstr "" msgid "Translations" msgstr "Übersetzungen" -#: shared/common/xhtmlgenerator.py:75 +#: shared/common/xhtmlgenerator.py:79 msgid "Evaluate" msgstr "" @@ -2797,7 +2845,7 @@ msgstr "" #: shared/common/AuthenticationLoginPasswordCommon.py:57 #: shared/common/AuthenticationLdapCommon.py:56 -#: shared/web/AuthenticationLoginPasswordWeb.py:131 +#: shared/web/AuthenticationLoginPasswordWeb.py:135 msgid "Username" msgstr "Username" @@ -2805,7 +2853,7 @@ msgstr "Username" msgid "Benin" msgstr "" -#: shared/common/kinds.py:1888 +#: shared/common/kinds.py:1921 msgid "Python Identifier" msgstr "" @@ -2813,7 +2861,7 @@ msgstr "" msgid " to " msgstr " in " -#: shared/common/kinds.py:295 shared/common/xhtmlgenerator.py:108 +#: shared/common/kinds.py:297 shared/common/xhtmlgenerator.py:112 #: shared/common/properties.py:55 shared/web/GroupsWeb.py:85 msgid "Type" msgstr "Typ" @@ -2832,11 +2880,11 @@ msgstr "Person" msgid "Bermuda" msgstr "Deutsch" -#: shared/common/kinds.py:78 +#: shared/common/kinds.py:80 msgid "Balloon Help" msgstr "" -#: shared/common/xhtmlgenerator.py:84 +#: shared/common/xhtmlgenerator.py:88 #, fuzzy msgid "Next" msgstr "Text" @@ -2861,16 +2909,16 @@ msgstr "" msgid "Multi-Line Field" msgstr "" -#: shared/common/VirtualHostsCommon.py:205 +#: shared/common/VirtualHostsCommon.py:224 msgid "Virtual Host" msgstr "Vitueller Host" -#: shared/web/AppointmentsWeb.py:79 +#: shared/web/AppointmentsWeb.py:81 #, fuzzy msgid "End" msgstr "Vollendet" -#: shared/common/kinds.py:191 +#: shared/common/kinds.py:193 #, fuzzy msgid "Creation Mode" msgstr "Schaffungsdatum" @@ -2884,7 +2932,7 @@ msgstr "Einstellungen der %s" msgid "Subject" msgstr "Thema" -#: shared/common/kinds.py:229 shared/common/kinds.py:2619 +#: shared/common/kinds.py:231 shared/common/kinds.py:2682 msgid "Same As View Mode" msgstr "" @@ -2893,7 +2941,7 @@ msgstr "" msgid "Kenya" msgstr "Kuna" -#: shared/common/kinds.py:1146 +#: shared/common/kinds.py:1162 #, fuzzy msgid "Function Name" msgstr "Vorname" @@ -2910,7 +2958,7 @@ msgstr " msgid "Best Average" msgstr "Besserer Durchschnitt" -#: shared/common/kinds.py:3136 +#: shared/common/kinds.py:3213 #, fuzzy msgid "Kind Name" msgstr "Vorname" @@ -2935,7 +2983,7 @@ msgid "" msgstr "" #: shared/common/BrevesCommon.py:204 shared/web/tools.py:644 -#: shared/web/BrevesWeb.py:165 +#: shared/web/BrevesWeb.py:165 talTranslations.py:6 msgid "Short News" msgstr "Neuer Kurznachricht" @@ -2943,7 +2991,7 @@ msgstr "Neuer Kurznachricht" msgid "The last strings to leave untranslated" msgstr "Die letzte Zeichenketten nichtzuübersetzen" -#: shared/common/xhtmlgenerator.py:64 +#: shared/common/xhtmlgenerator.py:68 #, fuzzy msgid "Cancel" msgstr "CFP Franc" @@ -2966,7 +3014,7 @@ msgstr "" msgid "The election \"%s\"" msgstr "Die Wahl \"%s\"" -#: shared/web/AppointmentsWeb.py:641 +#: shared/web/AppointmentsWeb.py:633 #, fuzzy msgid "Agenda" msgstr "Algerischer Dinar" @@ -3005,10 +3053,14 @@ msgstr "" msgid "Number of Results" msgstr "" -#: shared/web/widgets.py:842 +#: shared/web/widgets.py:839 msgid "URL" msgstr "URL" +#: shared/common/scripts.py:70 +msgid "Execute On Use" +msgstr "" + #: shared/web/geography.py:230 #, fuzzy msgid "United States" @@ -3023,16 +3075,21 @@ msgstr "UAE Dirham" msgid "System Files" msgstr "Dateien Systeme" -#: shared/web/AuthenticationLoginPasswordWeb.py:100 +#: shared/web/AuthenticationLoginPasswordWeb.py:103 #, fuzzy msgid "Enter your new password." msgstr "Emailaddresse" +#: shared/web/geography.py:168 +#, fuzzy +msgid "Mauritius" +msgstr "Mauritius Rupie" + #: shared/web/ElectionsWeb.py:870 msgid "Your last closed elections" msgstr "Ihre letzte vollendete Wahle" -#: shared/common/kinds.py:1081 shared/web/SystemFilesWeb.py:71 +#: shared/common/kinds.py:1097 shared/web/SystemFilesWeb.py:71 msgid "Path" msgstr "Zugangsweg" @@ -3061,16 +3118,16 @@ msgstr "" msgid "Authentication (LDAP)" msgstr "Stimmenthaltung" -#: shared/common/VirtualHostsCommon.py:206 +#: shared/common/VirtualHostsCommon.py:225 msgid "virtual hosts" msgstr "virtuellen Hosts" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 -msgid "March" -msgstr "März" +#: shared/common/GroupsCommon.py:406 +msgid "group" +msgstr "Gruppe" -#: shared/common/kinds.py:317 shared/common/kinds.py:3238 -#: shared/common/xhtmlgenerator.py:110 shared/common/widgets.py:102 +#: shared/common/kinds.py:319 shared/common/kinds.py:3344 +#: shared/common/xhtmlgenerator.py:114 shared/common/widgets.py:102 #, fuzzy msgid "Widget" msgstr "Breite" @@ -3106,12 +3163,12 @@ msgstr "" " Details finden Sie in der GNU General Public License.\n" "

\n" -#: shared/web/AppointmentsWeb.py:55 +#: shared/web/AppointmentsWeb.py:57 #, fuzzy msgid "Categories Group" msgstr "Gruppe von Siegern" -#: shared/common/xhtmlgenerator.py:101 +#: shared/common/xhtmlgenerator.py:105 msgid "Translate" msgstr "Übersetzen" @@ -3119,12 +3176,17 @@ msgstr " msgid "Guinea-Bissau" msgstr "" -#: shared/common/AppointmentsCommon.py:68 -#, fuzzy -msgid "Select the group that holds categories for the appointments." -msgstr "Auswählen Sie den Kandidat zu hinzufügen" +#: shared/web/PeopleWeb.py:273 +msgid "" +"The account has successfully been created, but a SMTP error has occurred.\n" +"Maybe the Mail Transport Agent on the Glasnost server is badly configured." +msgstr "" -#: glasnost-web/about.py:290 shared/common/xhtmlgenerator.py:57 +#: shared/web/CardsWeb.py:203 +msgid "Definition of Card \"%s\"" +msgstr "" + +#: glasnost-web/about.py:290 shared/common/xhtmlgenerator.py:61 msgid "About Glasnost" msgstr "Um Glasnost" @@ -3155,11 +3217,11 @@ msgstr "" msgid "Author" msgstr "Verfasser" -#: shared/common/VirtualHostsCommon.py:204 +#: shared/common/VirtualHostsCommon.py:223 msgid "virtual host" msgstr "virtueller Host" -#: shared/web/AuthenticationLoginPasswordWeb.py:91 +#: shared/web/AuthenticationLoginPasswordWeb.py:94 #, fuzzy msgid "Enter your current password." msgstr "Emailaddresse" @@ -3168,16 +3230,16 @@ msgstr "Emailaddresse" msgid "Sao Tome and Principe" msgstr "" -#: shared/common/kinds.py:2173 +#: shared/common/kinds.py:2234 msgid "Choose the author(s) for this object." msgstr "" -#: shared/common/xhtmlgenerator.py:107 +#: shared/common/xhtmlgenerator.py:111 #, fuzzy msgid "List" msgstr "Bindungen" -#: shared/common/xhtmlgenerator.py:62 +#: shared/common/xhtmlgenerator.py:66 msgid "Apply" msgstr "Anwenden" @@ -3185,13 +3247,13 @@ msgstr "Anwenden" msgid "Greece" msgstr "" -#: shared/common/kinds.py:3208 shared/common/UploadFilesCommon.py:135 +#: shared/common/kinds.py:3314 shared/common/UploadFilesCommon.py:135 #: shared/common/uploads.py:74 shared/web/UploadFilesWeb.py:76 #: shared/web/uploads.py:66 msgid "File" msgstr "Datei" -#: shared/common/kinds.py:961 shared/common/kinds.py:963 +#: shared/common/kinds.py:977 shared/common/kinds.py:979 #, fuzzy msgid "Date & Time" msgstr "Datum der letzten Verbindung" @@ -3204,7 +3266,7 @@ msgstr "Vollendet" msgid "Enter the name of this heading." msgstr "" -#: shared/web/AppointmentsWeb.py:636 shared/web/widgets.py:488 +#: shared/web/AppointmentsWeb.py:628 shared/web/widgets.py:484 msgid "Year" msgstr "Jahr" @@ -3212,14 +3274,14 @@ msgstr "Jahr" msgid "Results" msgstr "Wahlergebnisse" -#: shared/common/xhtmlgenerator.py:86 -#: shared/web/AuthenticationLoginPasswordWeb.py:405 -#: shared/web/AuthenticationLoginPasswordWeb.py:589 +#: shared/common/xhtmlgenerator.py:90 +#: shared/web/AuthenticationLoginPasswordWeb.py:411 +#: shared/web/AuthenticationLoginPasswordWeb.py:584 #: shared/web/PeopleWeb.py:159 msgid "New Account" msgstr "Neues Konto" -#: shared/common/xhtmlgenerator.py:97 +#: shared/common/xhtmlgenerator.py:101 msgid "Send Password by Email" msgstr "Sendung des Passwortes per Email" @@ -3262,11 +3324,11 @@ msgstr "" msgid "Japan" msgstr "" -#: shared/common/kinds.py:644 shared/common/PageNamesCommon.py:99 +#: shared/common/kinds.py:660 shared/common/PageNamesCommon.py:99 msgid "Alias" msgstr "" -#: shared/common/kinds.py:2589 +#: shared/common/kinds.py:2652 #, fuzzy msgid "Access in Creation Mode" msgstr "Schaffungsdatum" @@ -3275,11 +3337,11 @@ msgstr "Schaffungsdatum" msgid "Choose the persons or groups who will vote for this election." msgstr "" -#: shared/common/VirtualHostsCommon.py:88 +#: shared/common/VirtualHostsCommon.py:96 msgid "Enter the host name." msgstr "" -#: shared/common/CardsCommon.py:349 +#: shared/common/CardsCommon.py:394 msgid "Cards" msgstr "Karten" @@ -3309,6 +3371,10 @@ msgstr "" msgid "Botswana" msgstr "" +#: shared/web/ForumsWeb.py:195 +msgid "Replies List" +msgstr "" + #: shared/common/AtomsCommon.py:78 msgid "Atom" msgstr "Atom" @@ -3326,12 +3392,12 @@ msgstr "" msgid "The last short news" msgstr "Die letzte Kurznachrichten" -#: shared/common/widgets.py:395 shared/common/widgets.py:417 +#: shared/common/widgets.py:395 shared/common/widgets.py:421 #, fuzzy msgid "Option Menu" msgstr "Operation" -#: shared/web/AuthenticationLoginPasswordWeb.py:266 +#: shared/web/AuthenticationLoginPasswordWeb.py:270 #, fuzzy msgid "Changing Password" msgstr "Passwort wechseln" @@ -3344,11 +3410,10 @@ msgstr "" msgid "Format" msgstr "Format" -#: shared/web/PeopleWeb.py:273 -msgid "" -"The account has successfully been created, but a SMTP error has occurred.\n" -"Maybe the Mail Transport Agent on the Glasnost server is badly configured." -msgstr "" +#: shared/common/scripts.py:83 +#, fuzzy +msgid "TextArea" +msgstr "Text" #: shared/common/UploadFilesCommon.py:64 #, fuzzy @@ -3369,7 +3434,7 @@ msgstr "Neue Person" msgid "Suriname" msgstr "Spitzname" -#: shared/web/VirtualHostsWeb.py:59 +#: shared/common/VirtualHostsCommon.py:56 #, fuzzy msgid "Default Virtual Host" msgstr "Neuer virtuelle Host" @@ -3382,7 +3447,7 @@ msgstr "Verbotener Zugang!" msgid "Kind of Ballot" msgstr "Stimmzettel Typ" -#: shared/common/kinds.py:2078 +#: shared/common/kinds.py:2139 #, fuzzy msgid "Select accepted types of items." msgstr "Auswählen Sie den Kandidat zu hinzufügen" @@ -3408,7 +3473,7 @@ msgstr "Der spezifierte Zugangsweg zur Datei besteht nicht!" msgid "Palau" msgstr "Pula" -#: shared/common/xhtmlgenerator.py:99 +#: shared/common/xhtmlgenerator.py:103 msgid "Spell Check" msgstr "" @@ -3417,7 +3482,7 @@ msgstr "" msgid "ReStructured Text" msgstr "Sucre" -#: shared/common/widgets.py:492 +#: shared/common/widgets.py:502 msgid "Combo Box" msgstr "" @@ -3439,8 +3504,8 @@ msgstr "" "\n" "%s\n" -#: shared/common/kinds.py:700 shared/common/kinds.py:1127 -#: shared/common/kinds.py:1300 +#: shared/common/kinds.py:716 shared/common/kinds.py:1143 +#: shared/common/kinds.py:1316 #, fuzzy msgid "Numbers" msgstr "Zahl" @@ -3453,12 +3518,16 @@ msgstr "Datei System" msgid "Holy See (Vatican City State)" msgstr "" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:428 +#: shared/web/calendaring.py:69 #, fuzzy msgid "xMay" msgstr "Mai" -#: shared/common/widgets.py:431 shared/web/UploadFilesWeb.py:94 +#: shared/common/kinds.py:3285 +msgid "Script" +msgstr "" + +#: shared/common/widgets.py:441 shared/web/UploadFilesWeb.py:94 #: shared/web/uploads.py:84 msgid "Height" msgstr "Höhe" @@ -3468,10 +3537,10 @@ msgstr "H msgid "Lebanon" msgstr "Libanesisches Pfund" -#: shared/common/kinds.py:264 shared/common/kinds.py:1039 -#: shared/common/kinds.py:1113 shared/common/kinds.py:1870 -#: shared/common/kinds.py:2535 shared/common/kinds.py:2537 -#: shared/web/AppointmentsWeb.py:65 shared/web/BrevesWeb.py:63 +#: shared/common/kinds.py:266 shared/common/kinds.py:1055 +#: shared/common/kinds.py:1129 shared/common/kinds.py:1898 +#: shared/common/kinds.py:2598 shared/common/kinds.py:2600 +#: shared/web/AppointmentsWeb.py:67 shared/web/BrevesWeb.py:63 #: shared/web/CommentsWeb.py:68 shared/web/ArticlesWeb.py:67 #: shared/web/ArticlesWeb.py:83 msgid "Text" @@ -3481,7 +3550,7 @@ msgstr "Text" msgid "German" msgstr "Deutsch" -#: shared/web/widgets.py:548 +#: shared/web/widgets.py:545 #, fuzzy msgid "hour" msgstr "Verfasser" @@ -3490,26 +3559,30 @@ msgstr "Verfasser" msgid "Korea, Republic of" msgstr "" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:435 +#: shared/web/calendaring.py:71 #, fuzzy msgid "xDecember" msgstr "Dezember" -#: shared/web/geography.py:184 -msgid "Panama" -msgstr "" +#: shared/web/calendaring.py:60 +msgid "March" +msgstr "März" -#: shared/common/kinds.py:262 +#: shared/common/kinds.py:264 #, fuzzy msgid "Text Format" msgstr "Format" -#: shared/common/kinds.py:1291 +#: shared/common/kinds.py:1307 #, fuzzy msgid "Maximum Value" msgstr "Gruppe in Abwesenheit" -#: shared/common/kinds.py:695 shared/common/kinds.py:799 +#: shared/web/ElectionsWeb.py:135 +msgid "Approval" +msgstr "Zustimmung" + +#: shared/common/kinds.py:711 shared/common/kinds.py:815 #, fuzzy msgid "Sort Labels" msgstr "Etikett" @@ -3543,7 +3616,7 @@ msgstr "Person" msgid "Sudan" msgstr "Yuan" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Wednesday" msgstr "" @@ -3560,13 +3633,13 @@ msgstr "Philippinischer Peso" msgid "Denmark" msgstr "" -#: shared/common/kinds.py:2592 shared/common/kinds.py:2606 -#: shared/common/kinds.py:2620 shared/common/kinds.py:2634 +#: shared/common/kinds.py:2655 shared/common/kinds.py:2669 +#: shared/common/kinds.py:2683 shared/common/kinds.py:2697 #, fuzzy msgid "Embedded" msgstr "Vollendet" -#: shared/web/widgets.py:547 +#: shared/web/widgets.py:544 #, fuzzy msgid "day" msgstr "Tag" @@ -3578,20 +3651,20 @@ msgid "" "the results to be displayed)" msgstr "" -#: shared/common/kinds.py:178 +#: shared/common/kinds.py:180 #, fuzzy msgid "Label (plural form)" msgstr "Plural" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/calendaring.py:63 msgid "October" msgstr "Oktober" -#: shared/common/kinds.py:268 shared/web/ArticlesWeb.py:82 +#: shared/common/kinds.py:270 shared/web/ArticlesWeb.py:82 msgid "SPIP" msgstr "SPIP" -#: shared/common/kinds.py:2266 +#: shared/common/kinds.py:2329 msgid "Select the people and groups who are allowed to read the item." msgstr "" @@ -3599,6 +3672,10 @@ msgstr "" msgid "Main Heading" msgstr "Hauptsächliche Rubrik" +#: shared/common/scripts.py:58 +msgid "Execute On Create" +msgstr "" + #: glasnost-web/sessions.py:101 shared/web/ElectionsWeb.py:85 msgid "End Time" msgstr "Schliessungsdatum" @@ -3611,11 +3688,11 @@ msgstr "Neues Objekt" msgid "Being Written" msgstr "In Bearbeitung" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 +#: shared/web/calendaring.py:61 msgid "June" msgstr "Juni" -#: shared/common/xhtmlgenerator.py:71 +#: shared/common/xhtmlgenerator.py:75 msgid "Differences" msgstr "Unterschieden" @@ -3627,15 +3704,15 @@ msgstr "Kurznachricht" msgid "GNU GENERAL PUBLIC LICENSE" msgstr "" -#: shared/common/kinds.py:1129 +#: shared/common/kinds.py:1145 msgid "Float Number" msgstr "Float" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "August" msgstr "August" -#: shared/common/widgets.py:427 +#: shared/common/widgets.py:437 msgid "Show Preview" msgstr "" @@ -3651,7 +3728,7 @@ msgstr "" msgid "forums" msgstr "" -#: shared/common/kinds.py:1952 +#: shared/common/kinds.py:2013 msgid "Minimum Number of Items to Edit" msgstr "" @@ -3663,7 +3740,7 @@ msgstr "Unn msgid "Spellcheck Entries" msgstr "" -#: shared/common/xhtmlgenerator.py:61 +#: shared/common/xhtmlgenerator.py:65 msgid "Add Candidate" msgstr "Einen Kandidat hinzufügen" @@ -3672,15 +3749,23 @@ msgstr "Einen Kandidat hinzuf msgid "Australia" msgstr "Australischer Dollar" -#: shared/common/xhtmlgenerator.py:82 +#: shared/common/xhtmlgenerator.py:86 talTranslations.py:13 msgid "Exit" msgstr "Herausgehen" -#: shared/web/AuthenticationLoginPasswordWeb.py:109 +#: shared/web/AuthenticationLoginPasswordWeb.py:112 #, fuzzy msgid "Re-enter your new password." msgstr "Emailaddresse" +#: shared/web/ElectionsWeb.py:113 +msgid "State" +msgstr "Zustand" + +#: shared/web/geography.py:229 +msgid "United Kingdom" +msgstr "" + #: shared/common/widgets.py:208 msgid "Single-Line Text Entry Field" msgstr "" @@ -3698,7 +3783,7 @@ msgstr "Die letzte System Dateien" msgid "Kuwait" msgstr "Kuwait Dinar" -#: shared/common/xhtmlgenerator.py:109 +#: shared/common/xhtmlgenerator.py:113 #, fuzzy msgid "Utilization" msgstr "Identifikation" @@ -3716,7 +3801,7 @@ msgstr "Kapitel" msgid "Counting of the Votes" msgstr "Stimmenzählung" -#: shared/common/xhtmlgenerator.py:63 +#: shared/common/xhtmlgenerator.py:67 msgid "Back" msgstr "" @@ -3725,11 +3810,11 @@ msgstr "" msgid "Sessions History" msgstr "Überblicken" -#: glasnost-web/index.py:180 +#: glasnost-web/index.py:180 talTranslations.py:17 msgid "Home" msgstr "Empfang" -#: shared/common/CardsCommon.py:344 +#: shared/common/CardsCommon.py:389 msgid "New Card" msgstr "Neue Karte" @@ -3746,7 +3831,7 @@ msgid "Dutch" msgstr "Holländisch" #: shared/web/AuthenticationWeb.py:155 -#: shared/web/AuthenticationLoginPasswordWeb.py:206 +#: shared/web/AuthenticationLoginPasswordWeb.py:210 #: shared/web/AuthenticationLibertyAllianceWeb.py:126 #: shared/web/AuthenticationLdapWeb.py:129 #, fuzzy @@ -3769,17 +3854,13 @@ msgstr "Argentinischer Peso" msgid "Enter your email address." msgstr "Emailaddresse" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 -#, fuzzy -msgid "Tuesday" -msgstr "Tag" +#: shared/proxy/ObjectsProxy.py:1222 shared/proxy/ObjectsProxy.py:1279 +msgid " (at <%s>)" +msgstr "" -#: shared/web/VotesWeb.py:94 shared/web/VotesWeb.py:142 -#: shared/web/VotesWeb.py:185 shared/web/VotesWeb.py:229 -#: shared/web/VotesWeb.py:428 shared/web/VotesWeb.py:472 -#: shared/web/VotesWeb.py:532 shared/web/VotesWeb.py:590 -msgid "Blank Vote" -msgstr "Leerer Stimmzettel" +#: shared/web/PeopleWeb.py:80 +msgid "Last Name" +msgstr "Name" #: shared/common/widgets.py:350 #, fuzzy @@ -3790,12 +3871,12 @@ msgstr "Gruppe in Abwesenheit" msgid "forum" msgstr "" -#: shared/common/xhtmlgenerator.py:65 -#: shared/web/AuthenticationLoginPasswordWeb.py:409 +#: shared/common/xhtmlgenerator.py:69 +#: shared/web/AuthenticationLoginPasswordWeb.py:415 msgid "Change Password" msgstr "Passwort wechseln" -#: shared/common/kinds.py:1028 +#: shared/common/kinds.py:1044 #, fuzzy msgid "Duration" msgstr "Veröffentlichung" @@ -3830,13 +3911,14 @@ msgstr "Ihre letzte Kurznachrichten" msgid "objects" msgstr "Objekte" -#: shared/common/kinds.py:1097 +#: shared/common/kinds.py:1113 msgid "File Path" msgstr "Zugangsweg" -#: shared/common/AtomsCommon.py:79 -msgid "atoms" -msgstr "Atome" +#: shared/web/AuthenticationLoginPasswordWeb.py:85 +#, fuzzy +msgid "Enter the username you use on this site." +msgstr "Die letzte virtuellen Hosts" #: shared/web/geography.py:81 msgid "Central African Republic" @@ -3847,7 +3929,7 @@ msgstr "" msgid "Finland" msgstr "Suchen" -#: shared/common/kinds.py:2830 shared/web/GroupsWeb.py:137 +#: shared/common/kinds.py:2902 shared/web/GroupsWeb.py:137 msgid "Items" msgstr "Bestandteile" @@ -3873,7 +3955,7 @@ msgstr "" msgid "person" msgstr "Person" -#: shared/common/kinds.py:681 +#: shared/common/kinds.py:697 msgid "True" msgstr "" @@ -3882,26 +3964,26 @@ msgstr "" msgid "Translation" msgstr "Übersetzung" -#: shared/common/kinds.py:2433 +#: shared/common/kinds.py:2496 #, fuzzy msgid "Glasnost Server ID" msgstr "Glasnost Id" -#: shared/common/kinds.py:2952 shared/common/kinds.py:2954 +#: shared/common/kinds.py:3029 shared/common/kinds.py:3031 msgid "Modification Time" msgstr "Veränderungsdatum" -#: shared/common/kinds.py:1373 shared/common/kinds.py:2593 -#: shared/common/kinds.py:2607 shared/common/kinds.py:2621 -#: shared/common/kinds.py:2635 +#: shared/common/kinds.py:1389 shared/common/kinds.py:2656 +#: shared/common/kinds.py:2670 shared/common/kinds.py:2684 +#: shared/common/kinds.py:2698 msgid "Link" msgstr "Bindung" -#: shared/common/kinds.py:266 shared/web/ArticlesWeb.py:81 +#: shared/common/kinds.py:268 shared/web/ArticlesWeb.py:81 msgid "HTML" msgstr "HTML" -#: shared/common/kinds.py:2604 +#: shared/common/kinds.py:2667 #, fuzzy msgid "Access in Edition Mode" msgstr "Bearbeitungsdatum" @@ -3918,11 +4000,11 @@ msgstr "" msgid "Korea, Democratic People's Republic of" msgstr "" -#: shared/common/xhtmlgenerator.py:66 +#: shared/common/xhtmlgenerator.py:70 msgid "Change Translation" msgstr "Übersetzung Ändern" -#: shared/common/kinds.py:1115 +#: shared/common/kinds.py:1131 #, fuzzy msgid "OpenPGP Fingerprint" msgstr "GnuPG Fingerabdruck" @@ -3937,11 +4019,11 @@ msgstr "Stimmabgabe auf vollendeten Wahlen" msgid "preferences" msgstr "Bevorzugungen" -#: shared/common/xhtmlgenerator.py:88 +#: shared/common/xhtmlgenerator.py:92 msgid "Pester Absentionnists" msgstr "Stimmenthalter mahnen" -#: shared/web/widgets.py:1639 +#: shared/web/widgets.py:1641 #, fuzzy msgid "other:" msgstr "Wähler:" @@ -3958,7 +4040,7 @@ msgstr "" msgid "Voter Token" msgstr "Marke des Wählers" -#: shared/web/widgets.py:1533 +#: shared/web/widgets.py:1535 msgid "download" msgstr "" @@ -3967,20 +4049,21 @@ msgstr "" msgid "Slovakia" msgstr "Slowakische Krone" -#: glasnost-web/about.py:59 shared/common/xhtmlgenerator.py:105 +#: glasnost-web/about.py:59 shared/common/xhtmlgenerator.py:109 msgid "Version" msgstr "Fassung :" -#: shared/web/ElectionsWeb.py:113 -msgid "State" -msgstr "Zustand" +#: shared/web/widgets.py:547 +#, fuzzy +msgid "second" +msgstr "Speicherung" -#: shared/common/kinds.py:310 +#: shared/common/kinds.py:312 #, fuzzy msgid "In External File" msgstr "Datei" -#: shared/web/widgets.py:1640 +#: shared/web/widgets.py:1642 msgid "Label" msgstr "Etikett" @@ -3988,7 +4071,7 @@ msgstr "Etikett" msgid "DocBook - %s" msgstr "DocBook - %s" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:424 +#: shared/web/calendaring.py:68 #, fuzzy msgid "xJanuary" msgstr "Januar" @@ -4001,12 +4084,13 @@ msgstr "" msgid "heading" msgstr "Rubrik" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:431 +#: shared/web/calendaring.py:70 #, fuzzy msgid "xAugust" msgstr "August" -#: shared/web/GlasnostTALGenerator.py:99 +#: shared/common/xhtmlgenerator.py:191 shared/web/GlasnostTALGenerator.py:102 +#: talTranslations.py:14 #, fuzzy msgid "Go" msgstr "Gut" @@ -4015,11 +4099,10 @@ msgstr "Gut" msgid "LDAP" msgstr "" -#: shared/common/kinds.py:806 shared/web/GradesWeb.py:125 -#: shared/web/VotesWeb.py:421 shared/web/VotesWeb.py:465 -#: shared/web/VotesWeb.py:525 shared/web/VotesWeb.py:583 -msgid "Choice" -msgstr "Auswahl" +#: shared/common/GroupsCommon.py:279 +#, fuzzy +msgid "Select the items to intersect." +msgstr "Auswählen Sie den Kandidat zu hinzufügen" #: shared/common/RubricsCommon.py:69 msgid "Select the front article of this heading." @@ -4029,30 +4112,34 @@ msgstr "" msgid "Enter your name (if you want)." msgstr "" -#: shared/common/kinds.py:685 shared/common/kinds.py:787 +#: shared/common/kinds.py:701 shared/common/kinds.py:803 #, fuzzy msgid "Labels" msgstr "Etikett" -#: shared/common/kinds.py:285 +#: shared/common/kinds.py:287 msgid "Maximum Number of Characters" msgstr "" -#: shared/common/kinds.py:680 +#: shared/common/kinds.py:696 #, fuzzy msgid "False" msgstr "Misserfolg" -#: shared/web/widgets.py:549 +#: shared/common/kinds.py:1916 +msgid "Invalid values" +msgstr "" + +#: shared/web/widgets.py:546 #, fuzzy msgid "minute" msgstr "Zahl" -#: shared/web/AppointmentsWeb.py:633 +#: shared/web/AppointmentsWeb.py:625 msgid "Week" msgstr "" -#: shared/common/kinds.py:171 +#: shared/common/kinds.py:173 msgid "Enter a user-friendly field name" msgstr "" @@ -4065,7 +4152,7 @@ msgstr "" msgid "Description" msgstr "Wahl" -#: shared/common/kinds.py:653 +#: shared/common/kinds.py:669 msgid "Amount" msgstr "Betrag" @@ -4074,12 +4161,12 @@ msgstr "Betrag" msgid "Authentication (Login/Password)" msgstr "%s Einstellungen bearbeiten" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:433 +#: shared/common/properties.py:53 #, fuzzy -msgid "xOctober" -msgstr "Oktober" +msgid "Select a field type" +msgstr "Auswählen Sie den Kandidat zu hinzufügen" -#: shared/common/kinds.py:1191 +#: shared/common/kinds.py:1207 #, fuzzy msgid "Glasnost Object" msgstr "Glasnost Objekt Name" @@ -4096,12 +4183,12 @@ msgstr "" msgid "Cards Models" msgstr "" -#: shared/common/AppointmentsCommon.py:176 +#: shared/common/AppointmentsCommon.py:171 #, fuzzy msgid "appointment" msgstr "Inhalt" -#: shared/common/AppointmentsCommon.py:175 +#: shared/common/AppointmentsCommon.py:170 #, fuzzy msgid "New Appointment" msgstr "Inhalt" @@ -4111,7 +4198,7 @@ msgstr "Inhalt" msgid "Choose the candidates for this election." msgstr "Stimmabgabe auf vollendeten Wahlen" -#: shared/web/AppointmentsWeb.py:631 shared/web/widgets.py:517 +#: shared/web/AppointmentsWeb.py:623 shared/web/widgets.py:514 msgid "Day" msgstr "Tag" @@ -4123,19 +4210,25 @@ msgstr "" msgid "Russian Federation" msgstr "" -#: shared/common/kinds.py:2183 shared/common/kinds.py:2185 -msgid "Authors" -msgstr "Verfasser" +#: shared/web/AuthenticationLoginPasswordWeb.py:86 +#, fuzzy +msgid "Enter your password." +msgstr "Emailaddresse" -#: shared/common/kinds.py:265 shared/web/ArticlesWeb.py:80 +#: shared/common/kinds.py:267 shared/web/ArticlesWeb.py:80 msgid "DocBook" msgstr "DocBook" +#: shared/web/calendaring.py:69 +#, fuzzy +msgid "xApril" +msgstr "April" + #: shared/common/ObjectsCommon.py:206 msgid "Object" msgstr "Objekt" -#: shared/common/kinds.py:3106 +#: shared/common/kinds.py:3183 msgid "Input Connector" msgstr "" @@ -4161,7 +4254,7 @@ msgstr "Konto" msgid "votes" msgstr "Stimmabgabe" -#: shared/common/kinds.py:1331 +#: shared/common/kinds.py:1347 #, fuzzy msgid "Integer Choice" msgstr "Zur Auswahl von Wählern" @@ -4204,7 +4297,7 @@ msgstr " msgid "Swaziland" msgstr "" -#: shared/common/kinds.py:227 +#: shared/common/kinds.py:229 #, fuzzy msgid "Utilization Mode" msgstr "Identifikation" @@ -4214,10 +4307,11 @@ msgstr "Identifikation" msgid "File Name" msgstr "Vorname" -#: shared/web/widgets.py:550 +#: shared/common/kinds.py:3200 shared/common/instructions.py:316 +#: shared/common/values.py:53 #, fuzzy -msgid "second" -msgstr "Speicherung" +msgid "Kind" +msgstr "Suchen" #: shared/common/widgets.py:297 #, fuzzy @@ -4242,24 +4336,24 @@ msgstr "Misserfolg" msgid "Unknown" msgstr "Unbekannt" -#: shared/web/AppointmentsWeb.py:88 shared/web/ElectionsWeb.py:128 -#: shared/web/BrevesWeb.py:73 shared/web/CommentsWeb.py:85 -#: shared/web/ForumsWeb.py:71 shared/web/widgets.py:836 -#: shared/web/ArticlesWeb.py:92 shared/web/SystemFilesWeb.py:82 -#: shared/web/UploadFilesWeb.py:106 shared/web/VirtualHostsWeb.py:81 +#: shared/common/VirtualHostsCommon.py:126 shared/web/AppointmentsWeb.py:90 +#: shared/web/ElectionsWeb.py:128 shared/web/BrevesWeb.py:73 +#: shared/web/CommentsWeb.py:85 shared/web/ForumsWeb.py:71 +#: shared/web/widgets.py:833 shared/web/ArticlesWeb.py:92 +#: shared/web/SystemFilesWeb.py:82 shared/web/UploadFilesWeb.py:106 msgid "Title" msgstr "Titel" -#: shared/common/ArticlesCommon.py:57 -msgid "Select the author(s) of the document." -msgstr "" +#: shared/common/kinds.py:2244 shared/common/kinds.py:2246 +msgid "Authors" +msgstr "Verfasser" #: shared/common/things.py:149 #, fuzzy msgid "Internal Name" msgstr "Datei" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:430 +#: shared/web/calendaring.py:70 #, fuzzy msgid "xJuly" msgstr "Juli" @@ -4500,10 +4594,6 @@ msgstr "Kandidat" #~ msgid "Holidays" #~ msgstr "Misserfolg" -#, fuzzy -#~ msgid "Organization" -#~ msgstr "Übersetzung" - #, fuzzy #~ msgid "Organizations" #~ msgstr "Übersetzungen" @@ -4726,10 +4816,6 @@ msgstr "Kandidat" #~ msgid "The new password has been sent by email to %s!" #~ msgstr "Das Passwort wurde per Email zu %s gesendet!" -#, fuzzy -#~ msgid "Enter the username you use on this site." -#~ msgstr "Die letzte virtuellen Hosts" - #~ msgid "Non Members" #~ msgstr "Nicht Mitglieder" @@ -4798,10 +4884,6 @@ msgstr "Kandidat" #~ msgid "type" #~ msgstr "Typ" -#, fuzzy -#~ msgid "Calendar" -#~ msgstr "Kandidat" - #~ msgid "Qatari Rial" #~ msgstr "Katar Riyal" diff --git a/po/glasnost-web/es.po b/po/glasnost-web/es.po index 626d22f8..60262fff 100644 --- a/po/glasnost-web/es.po +++ b/po/glasnost-web/es.po @@ -25,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: glasnost-web $Revision$\n" -"POT-Creation-Date: Wed Sep 24 21:17:49 2003\n" +"POT-Creation-Date: Wed Oct 1 18:00:09 2003\n" "PO-Revision-Date: 2003-01-15 16:40+0100\n" "Last-Translator: Emmanuel Raviart \n" "Language-Team: Spanish \n" @@ -33,7 +33,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#: shared/common/VirtualHostsCommon.py:207 +#: shared/common/VirtualHostsCommon.py:226 msgid "Virtual Hosts" msgstr "" @@ -45,6 +45,10 @@ msgstr "" msgid "Liberty Alliance Server" msgstr "" +#: shared/common/AtomsCommon.py:79 +msgid "atoms" +msgstr "" + #: shared/web/geography.py:150 msgid "Sri Lanka" msgstr "" @@ -57,11 +61,11 @@ msgstr "Castellano" msgid "Yugoslavia" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:136 +#: shared/web/AuthenticationLoginPasswordWeb.py:140 msgid "Enter the password." msgstr "" -#: shared/common/kinds.py:111 +#: shared/common/kinds.py:113 msgid "Private" msgstr "" @@ -69,11 +73,11 @@ msgstr "" msgid "New Translation" msgstr "" -#: shared/common/kinds.py:1971 +#: shared/common/kinds.py:2032 msgid "Sequence" msgstr "" -#: shared/web/GlasnostTALGenerator.py:98 +#: shared/web/GlasnostTALGenerator.py:101 talTranslations.py:4 msgid "You are not logged in" msgstr "" @@ -81,7 +85,7 @@ msgstr "" msgid "Secret Ballot" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:341 +#: shared/web/AuthenticationLoginPasswordWeb.py:347 msgid "Changing User Password" msgstr "" @@ -89,19 +93,15 @@ msgstr "" msgid "Enter your nickname (optional)." msgstr "" -#: shared/web/PeopleWeb.py:91 -msgid "Nickname" -msgstr "" - #: shared/web/geography.py:92 msgid "Cyprus" msgstr "" -#: shared/common/kinds.py:193 shared/common/kinds.py:2591 +#: shared/common/kinds.py:195 shared/common/kinds.py:2654 msgid "Same As Edition Mode" msgstr "" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:434 +#: shared/web/calendaring.py:71 msgid "xNovember" msgstr "" @@ -109,11 +109,11 @@ msgstr "" msgid "Check Box" msgstr "" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 -msgid "April" +#: shared/common/scripts.py:66 +msgid "Execute On Submit" msgstr "" -#: shared/common/kinds.py:2991 +#: shared/common/kinds.py:3068 msgid "User Token" msgstr "" @@ -121,11 +121,11 @@ msgstr "" msgid "Are you sure you want to delete the %s?" msgstr "" -#: shared/common/CardsCommon.py:70 shared/common/kinds.py:1061 +#: shared/common/CardsCommon.py:70 shared/common/kinds.py:1077 msgid "Fields" msgstr "" -#: shared/common/xhtmlgenerator.py:73 +#: shared/common/xhtmlgenerator.py:77 msgid "Edit" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "New Heading" msgstr "" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 +#: shared/web/calendaring.py:60 msgid "February" msgstr "" @@ -141,14 +141,14 @@ msgstr "" msgid "Liberia" msgstr "" -#: shared/common/kinds.py:2569 +#: shared/common/kinds.py:2632 msgid "Structure" msgstr "" #: shared/common/AuthenticationLoginPasswordCommon.py:64 -#: shared/common/kinds.py:1872 shared/common/AuthenticationLdapCommon.py:63 +#: shared/common/kinds.py:1900 shared/common/AuthenticationLdapCommon.py:63 #: shared/web/AuthenticationLoginPasswordWeb.py:67 -#: shared/web/AuthenticationLoginPasswordWeb.py:139 +#: shared/web/AuthenticationLoginPasswordWeb.py:143 msgid "Password" msgstr "" @@ -172,15 +172,23 @@ msgstr "" msgid "Never" msgstr "" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 +#: shared/web/calendaring.py:61 msgid "May" msgstr "" +#: talTranslations.py:7 +msgid "Sessions" +msgstr "" + #: shared/web/TranslationsWeb.py:140 msgid "From " msgstr "" -#: shared/common/kinds.py:87 +#: shared/common/kinds.py:1988 +msgid "Script Source Code" +msgstr "" + +#: shared/common/kinds.py:89 msgid "Containers" msgstr "" @@ -192,7 +200,7 @@ msgstr "" msgid "Needed" msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Thursday" msgstr "" @@ -200,11 +208,7 @@ msgstr "" msgid "Bhutan" msgstr "" -#: shared/common/GroupsCommon.py:279 -msgid "Select the items to intersect." -msgstr "" - -#: shared/common/kinds.py:2835 shared/web/GroupsWeb.py:90 +#: shared/common/kinds.py:2907 shared/web/GroupsWeb.py:90 msgid "Union" msgstr "" @@ -224,7 +228,7 @@ msgstr "" msgid "Burundi" msgstr "" -#: shared/common/kinds.py:269 +#: shared/common/kinds.py:271 msgid "Preformatted Text" msgstr "" @@ -232,7 +236,15 @@ msgstr "" msgid "IP Address" msgstr "" -#: shared/common/kinds.py:1345 +#: talTranslations.py:19 +msgid "Navigation" +msgstr "" + +#: talTranslations.py:16 +msgid ", l'entreprise ouverte" +msgstr "" + +#: shared/common/kinds.py:1361 msgid "Select the language used to fill in this card." msgstr "" @@ -252,8 +264,8 @@ msgstr "" msgid "Bahamas" msgstr "" -#: shared/common/kinds.py:195 shared/common/kinds.py:213 -#: shared/common/kinds.py:231 shared/common/kinds.py:249 +#: shared/common/kinds.py:197 shared/common/kinds.py:215 +#: shared/common/kinds.py:233 shared/common/kinds.py:251 msgid "Read Only" msgstr "" @@ -261,7 +273,7 @@ msgstr "" msgid "Grenada" msgstr "" -#: shared/common/kinds.py:956 +#: shared/common/kinds.py:972 msgid "Date & Time Format" msgstr "" @@ -285,7 +297,7 @@ msgstr "" msgid "Debian Maintainers" msgstr "" -#: shared/common/kinds.py:1966 +#: shared/common/kinds.py:2027 msgid "Minimum Number of Items" msgstr "" @@ -293,11 +305,11 @@ msgstr "" msgid "Losses" msgstr "" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 +#: shared/web/calendaring.py:60 msgid "January" msgstr "" -#: shared/common/xhtmlgenerator.py:68 +#: shared/common/xhtmlgenerator.py:72 msgid "Compute" msgstr "" @@ -305,7 +317,7 @@ msgstr "" msgid "files" msgstr "" -#: shared/common/kinds.py:3262 +#: shared/common/kinds.py:3368 msgid "Widget Name" msgstr "" @@ -313,18 +325,18 @@ msgstr "" #: glasnost-web/about.py:124 glasnost-web/about.py:134 #: glasnost-web/about.py:154 shared/web/TranslationsWeb.py:165 #: shared/web/TranslationsWeb.py:712 shared/web/GradesWeb.py:85 -#: shared/web/widgets.py:142 shared/web/widgets.py:836 -#: shared/web/widgets.py:842 shared/web/VotesWeb.py:157 +#: shared/web/widgets.py:144 shared/web/widgets.py:833 +#: shared/web/widgets.py:839 shared/web/VotesWeb.py:157 #: shared/web/VotesWeb.py:244 msgid ":" msgstr "" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/calendaring.py:63 msgid "November" msgstr "" -#: shared/web/ElectionsWeb.py:135 -msgid "Approval" +#: shared/web/TranslationsWeb.py:360 +msgid "Fuzzy" msgstr "" #: shared/web/geography.py:85 @@ -336,11 +348,11 @@ msgstr "" msgid "User" msgstr "" -#: shared/common/xhtmlgenerator.py:112 +#: shared/common/xhtmlgenerator.py:116 msgid "Vote Blank" msgstr "" -#: shared/common/kinds.py:3179 +#: shared/common/kinds.py:3256 msgid "Output Connector" msgstr "" @@ -368,7 +380,7 @@ msgstr "" msgid "Belarus" msgstr "" -#: shared/web/AppointmentsWeb.py:312 +#: shared/web/AppointmentsWeb.py:298 msgid "Week %d of %d" msgstr "" @@ -396,7 +408,7 @@ msgstr "" msgid "Election in progress" msgstr "" -#: shared/common/xhtmlgenerator.py:67 +#: shared/common/xhtmlgenerator.py:71 msgid "Duplicate" msgstr "" @@ -404,11 +416,11 @@ msgstr "" msgid "Weightings" msgstr "" -#: shared/common/VirtualHostsCommon.py:107 +#: shared/common/VirtualHostsCommon.py:124 msgid "Enter the title of this virtual host." msgstr "" -#: shared/common/VirtualHostsCommon.py:202 +#: shared/common/VirtualHostsCommon.py:221 msgid "New Virtual Host" msgstr "" @@ -428,7 +440,7 @@ msgstr "" msgid "Select the items to subtract." msgstr "" -#: shared/common/xhtmlgenerator.py:103 +#: shared/common/xhtmlgenerator.py:107 msgid "Use" msgstr "" @@ -440,22 +452,18 @@ msgstr "" msgid "Aliases" msgstr "" -#: shared/common/AppointmentsCommon.py:99 -msgid "Enter the day of the appointment." +#: talTranslations.py:18 +msgid "Calendar" msgstr "" -#: shared/common/properties.py:53 -msgid "Select a field type" +#: shared/common/AppointmentsCommon.py:94 +msgid "Enter the day of the appointment." msgstr "" #: shared/web/geography.py:173 msgid "Mozambique" msgstr "" -#: shared/proxy/ObjectsProxy.py:1224 shared/proxy/ObjectsProxy.py:1281 -msgid " (at <%s>)" -msgstr "" - #: shared/web/geography.py:58 msgid "Austria" msgstr "" @@ -472,12 +480,12 @@ msgstr "" msgid "Expiration Time" msgstr "" -#: shared/common/kinds.py:267 +#: shared/common/kinds.py:269 msgid "reStructuredText" msgstr "" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 -msgid "December" +#: shared/web/ObjectsWeb.py:82 +msgid "Version Number" msgstr "" #: shared/web/ElectionsWeb.py:143 @@ -488,11 +496,11 @@ msgstr "" msgid "Translation to %s" msgstr "Traducir al %s" -#: shared/common/xhtmlgenerator.py:80 +#: shared/common/xhtmlgenerator.py:84 msgid "Read the License" msgstr "" -#: shared/common/kinds.py:246 +#: shared/common/kinds.py:248 msgid "Viewing Mode" msgstr "" @@ -517,7 +525,7 @@ msgstr "" msgid "History - %s" msgstr "" -#: shared/common/kinds.py:2982 +#: shared/common/kinds.py:3059 msgid "Application Token" msgstr "" @@ -525,15 +533,15 @@ msgstr "" msgid "Sweden" msgstr "" -#: shared/common/kinds.py:2652 +#: shared/common/kinds.py:2715 msgid "Thing" msgstr "" -#: shared/common/kinds.py:161 +#: shared/common/kinds.py:163 msgid "Translatable" msgstr "" -#: shared/common/kinds.py:2911 shared/common/kinds.py:2913 +#: shared/common/kinds.py:2983 shared/common/kinds.py:2985 msgid "Creation Time" msgstr "" @@ -541,10 +549,6 @@ msgstr "" msgid "%(from)s to %(to)s Translators" msgstr "" -#: shared/common/GroupsCommon.py:406 -msgid "group" -msgstr "" - #: shared/web/geography.py:197 msgid "Saudi Arabia" msgstr "" @@ -553,11 +557,11 @@ msgstr "" msgid "Intersection" msgstr "" -#: shared/common/kinds.py:2968 +#: shared/common/kinds.py:3045 msgid "Token" msgstr "" -#: shared/common/AppointmentsCommon.py:104 +#: shared/common/AppointmentsCommon.py:99 msgid "Enter a title for this appointment." msgstr "" @@ -565,7 +569,7 @@ msgstr "" msgid "Year Minimum Value" msgstr "" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:432 +#: shared/web/calendaring.py:70 msgid "xSeptember" msgstr "" @@ -577,11 +581,11 @@ msgstr "" msgid "Members Types" msgstr "" -#: shared/web/GlasnostTALGenerator.py:100 +#: shared/web/GlasnostTALGenerator.py:103 talTranslations.py:10 msgid "All Objects" msgstr "" -#: shared/common/kinds.py:1865 +#: shared/common/kinds.py:1893 msgid "Enter Twice" msgstr "" @@ -593,11 +597,11 @@ msgstr "" msgid "grading" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:94 +#: shared/web/AuthenticationLoginPasswordWeb.py:97 msgid "Current Password" msgstr "" -#: shared/web/kinds.py:1351 +#: shared/web/kinds.py:1352 msgid "Default Values" msgstr "" @@ -613,11 +617,11 @@ msgstr "" msgid "New Grade" msgstr "" -#: shared/common/xhtmlgenerator.py:85 +#: shared/common/xhtmlgenerator.py:89 msgid "New" msgstr "" -#: shared/common/xhtmlgenerator.py:92 +#: shared/common/xhtmlgenerator.py:96 msgid "Pretion" msgstr "" @@ -672,16 +676,17 @@ msgstr "" msgid "GnuPG Fingerprint" msgstr "" -#: shared/common/xhtmlgenerator.py:77 +#: shared/common/xhtmlgenerator.py:81 msgid "Find" msgstr "" -#: shared/web/VirtualHostsWeb.py:73 +#: shared/common/VirtualHostsCommon.py:99 msgid "Web Host Name" msgstr "" -#: shared/web/ForumsWeb.py:195 -msgid "Replies List" +#: shared/web/CardsWeb.py:229 shared/web/ObjectsWeb.py:366 +#: shared/web/VotesWeb.py:710 shared/web/UploadFilesWeb.py:227 +msgid "Editing %s - %s" msgstr "" #: shared/common/widgets.py:375 @@ -695,7 +700,7 @@ msgid "" "be displayed." msgstr "" -#: shared/common/xhtmlgenerator.py:69 +#: shared/common/xhtmlgenerator.py:73 msgid "Create" msgstr "" @@ -723,7 +728,7 @@ msgstr "" msgid "Links" msgstr "" -#: shared/common/xhtmlgenerator.py:87 +#: shared/common/xhtmlgenerator.py:91 msgid "OK" msgstr "" @@ -731,7 +736,7 @@ msgstr "" msgid "Albania" msgstr "" -#: shared/common/kinds.py:3221 shared/common/instructions.py:294 +#: shared/common/kinds.py:3327 shared/common/instructions.py:294 msgid "Value Holder" msgstr "" @@ -753,7 +758,7 @@ msgstr "" msgid "New Zealand" msgstr "" -#: shared/common/xhtmlgenerator.py:210 +#: shared/common/xhtmlgenerator.py:303 msgid "Missing Object (%s)" msgstr "" @@ -769,7 +774,7 @@ msgstr "" msgid "Error!" msgstr "" -#: shared/common/xhtmlgenerator.py:89 +#: shared/common/xhtmlgenerator.py:93 msgid "Post a Comment" msgstr "" @@ -777,7 +782,7 @@ msgstr "" msgid "Wins" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:112 +#: shared/web/AuthenticationLoginPasswordWeb.py:115 msgid "New Password (Confirmation)" msgstr "" @@ -785,7 +790,7 @@ msgstr "" msgid "Oman" msgstr "" -#: shared/common/xhtmlgenerator.py:95 +#: shared/common/xhtmlgenerator.py:99 msgid "Refuse" msgstr "" @@ -807,7 +812,7 @@ msgstr "" msgid "New Election" msgstr "" -#: shared/common/kinds.py:1295 +#: shared/common/kinds.py:1311 msgid "Minimum Value" msgstr "" @@ -821,7 +826,7 @@ msgid "" "mails." msgstr "" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Friday" msgstr "" @@ -833,11 +838,11 @@ msgstr "" msgid "DocBook Source - %s" msgstr "" -#: shared/common/kinds.py:309 +#: shared/common/kinds.py:311 msgid "Internal" msgstr "" -#: shared/common/xhtmlgenerator.py:94 +#: shared/common/xhtmlgenerator.py:98 msgid "Submit For Evaluation" msgstr "" @@ -845,15 +850,15 @@ msgstr "" msgid "Analyze" msgstr "" -#: shared/common/VirtualHostsCommon.py:53 +#: shared/common/VirtualHostsCommon.py:54 msgid "Select the default virtual host to use on this server" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:426 +#: shared/web/AuthenticationLoginPasswordWeb.py:432 msgid "Change password for user:" msgstr "" -#: shared/common/xhtmlgenerator.py:79 +#: shared/common/xhtmlgenerator.py:83 msgid "New Implementation" msgstr "" @@ -861,7 +866,7 @@ msgstr "" msgid "Specified path is not a file!" msgstr "" -#: shared/common/kinds.py:2148 +#: shared/common/kinds.py:2209 msgid "Choose the user(s) of this object." msgstr "" @@ -879,10 +884,6 @@ msgid "" "\"?" msgstr "" -#: shared/web/geography.py:137 -msgid "Kyrgyzstan" -msgstr "" - #: shared/common/widgets.py:198 msgid "Amount Entry Field" msgstr "" @@ -937,7 +938,7 @@ msgstr "" msgid "Instruction" msgstr "" -#: shared/web/widgets.py:633 +#: shared/web/widgets.py:630 msgid "undefined" msgstr "" @@ -949,15 +950,15 @@ msgstr "" msgid "ID" msgstr "" -#: shared/web/AppointmentsWeb.py:214 +#: shared/web/AppointmentsWeb.py:200 msgid "Day long appointments" msgstr "" -#: shared/common/kinds.py:1302 +#: shared/common/kinds.py:1318 msgid "Integer Number" msgstr "" -#: shared/common/kinds.py:820 +#: shared/common/kinds.py:836 msgid "Values" msgstr "" @@ -986,15 +987,15 @@ msgstr "" msgid "Yemen" msgstr "" -#: shared/common/kinds.py:2457 +#: shared/common/kinds.py:2520 msgid "Server Role" msgstr "" -#: shared/common/kinds.py:1041 +#: shared/common/kinds.py:1057 msgid "Email Address" msgstr "" -#: shared/common/VirtualHostsCommon.py:80 +#: shared/common/VirtualHostsCommon.py:82 msgid "" "Enter the Glasnost dispatcher id for this virtual host (you may have to " "consult your administrator)." @@ -1008,8 +1009,8 @@ msgstr "" msgid "Mauritania" msgstr "" -#: shared/common/kinds.py:196 shared/common/kinds.py:214 -#: shared/common/kinds.py:232 shared/common/kinds.py:250 +#: shared/common/kinds.py:198 shared/common/kinds.py:216 +#: shared/common/kinds.py:234 shared/common/kinds.py:252 msgid "Read Only / Hidden If Empty" msgstr "" @@ -1025,16 +1026,11 @@ msgstr "" msgid "Editing Global Settings" msgstr "" -#: shared/web/ObjectsWeb.py:366 shared/web/VotesWeb.py:710 -#: shared/web/UploadFilesWeb.py:223 -msgid "Editing %s - %s" -msgstr "" - #: shared/web/ElectionsWeb.py:90 msgid "One-Time" msgstr "" -#: shared/common/kinds.py:108 +#: shared/common/kinds.py:110 msgid "Import / Export" msgstr "" @@ -1066,6 +1062,10 @@ msgstr "" msgid "Time Entry Field" msgstr "" +#: shared/common/scripts.py:78 +msgid "Output Console" +msgstr "" + #: shared/web/AuthenticationLoginPasswordWeb.py:70 msgid "User Choice" msgstr "" @@ -1078,16 +1078,20 @@ msgstr "" msgid "Israel" msgstr "" +#: shared/web/ElectionsWeb.py:353 shared/web/ElectionsWeb.py:369 +msgid "secret" +msgstr "" + #: shared/common/PeopleCommon.py:90 msgid "Enter the first name." msgstr "" -#: shared/common/widgets.py:479 +#: shared/common/widgets.py:489 msgid "URL Entry Field" msgstr "" -#: shared/common/kinds.py:194 shared/common/kinds.py:212 -#: shared/common/kinds.py:230 shared/common/kinds.py:248 +#: shared/common/kinds.py:196 shared/common/kinds.py:214 +#: shared/common/kinds.py:232 shared/common/kinds.py:250 msgid "Hidden" msgstr "" @@ -1144,7 +1148,7 @@ msgstr "" msgid "The last short news to administer" msgstr "" -#: shared/common/kinds.py:210 +#: shared/common/kinds.py:212 msgid "Edition Mode" msgstr "" @@ -1161,11 +1165,11 @@ msgstr "" msgid "Barbados" msgstr "" -#: shared/common/kinds.py:670 +#: shared/common/kinds.py:686 msgid "Any" msgstr "" -#: shared/common/ForumsCommon.py:102 +#: shared/common/ForumsCommon.py:102 talTranslations.py:1 msgid "Forums" msgstr "" @@ -1173,7 +1177,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "September" msgstr "" @@ -1197,15 +1201,15 @@ msgstr "" msgid "Nicaragua" msgstr "" -#: shared/web/UploadFilesWeb.py:429 +#: shared/web/UploadFilesWeb.py:433 msgid "Your last files" msgstr "" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:429 +#: shared/web/calendaring.py:69 msgid "xJune" msgstr "" -#: shared/common/kinds.py:146 +#: shared/common/kinds.py:148 msgid "Mandatory" msgstr "" @@ -1213,7 +1217,7 @@ msgstr "" msgid "Public Ballot" msgstr "" -#: shared/common/kinds.py:113 +#: shared/common/kinds.py:115 msgid "To Server Only" msgstr "" @@ -1221,7 +1225,7 @@ msgstr "" msgid "Heading" msgstr "" -#: shared/common/kinds.py:2490 +#: shared/common/kinds.py:2553 msgid "Slot Name" msgstr "" @@ -1233,8 +1237,8 @@ msgstr "" msgid "Winners Count" msgstr "" -#: shared/web/CardsWeb.py:343 shared/web/VotesWeb.py:708 -#: shared/web/UploadFilesWeb.py:221 +#: shared/web/CardsWeb.py:406 shared/web/VotesWeb.py:708 +#: shared/web/UploadFilesWeb.py:225 msgid "New %s" msgstr "" @@ -1242,11 +1246,12 @@ msgstr "" msgid "Reverse Year Order?" msgstr "" -#: shared/common/kinds.py:2091 +#: shared/common/kinds.py:2152 msgid "Accepted Types" msgstr "" #: shared/common/ElectionsCommon.py:254 shared/web/ElectionsWeb.py:882 +#: talTranslations.py:9 msgid "Elections" msgstr "" @@ -1270,19 +1275,20 @@ msgstr "" msgid "Georgia" msgstr "" -#: shared/common/xhtmlgenerator.py:106 +#: shared/common/xhtmlgenerator.py:110 msgid "Definition" msgstr "" -#: shared/common/CardsCommon.py:347 +#: shared/common/CardsCommon.py:392 msgid "Card" msgstr "" -#: shared/common/kinds.py:2197 shared/common/kinds.py:2201 +#: shared/common/kinds.py:2258 shared/common/kinds.py:2264 msgid "Properties" msgstr "" -#: shared/common/UploadFilesCommon.py:137 shared/web/UploadFilesWeb.py:440 +#: shared/common/UploadFilesCommon.py:137 shared/web/UploadFilesWeb.py:444 +#: talTranslations.py:15 msgid "Files" msgstr "" @@ -1299,6 +1305,10 @@ msgstr "" msgid "Active" msgstr "Artículo" +#: shared/common/scripts.py:74 +msgid "Execute On View" +msgstr "" + #: shared/common/GroupsCommon.py:409 msgid "Groups" msgstr "" @@ -1311,11 +1321,11 @@ msgstr "" msgid "Added to slot" msgstr "" -#: shared/web/ElectionsWeb.py:353 shared/web/ElectionsWeb.py:369 -msgid "secret" +#: shared/common/widgets.py:418 +msgid "Others Button" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:103 +#: shared/web/AuthenticationLoginPasswordWeb.py:106 msgid "New Password" msgstr "" @@ -1327,7 +1337,7 @@ msgstr "" msgid "Armenia" msgstr "" -#: shared/common/AppointmentsCommon.py:177 +#: shared/common/AppointmentsCommon.py:172 msgid "Appointment" msgstr "" @@ -1335,22 +1345,26 @@ msgstr "" msgid "Kind of Ballots" msgstr "" -#: shared/common/kinds.py:2109 shared/common/kinds.py:2113 +#: shared/common/kinds.py:2170 shared/common/kinds.py:2174 msgid "Argument Pins" msgstr "" -#: shared/common/AppointmentsCommon.py:179 +#: shared/common/AppointmentsCommon.py:174 msgid "Appointments" msgstr "" -#: shared/common/xhtmlgenerator.py:93 +#: shared/common/xhtmlgenerator.py:97 msgid "Preview" msgstr "" -#: shared/common/kinds.py:104 shared/common/widgets.py:80 +#: shared/common/kinds.py:106 shared/common/widgets.py:80 msgid "Hide Field Label" msgstr "" +#: shared/web/calendaring.py:57 +msgid "Tuesday" +msgstr "" + #: shared/web/ForumsWeb.py:294 msgid "Subjects" msgstr "" @@ -1371,8 +1385,8 @@ msgstr "" msgid "New Short Article" msgstr "" -#: shared/web/PeopleWeb.py:80 -msgid "Last Name" +#: shared/web/geography.py:184 +msgid "Panama" msgstr "" #: shared/web/geography.py:115 @@ -1395,7 +1409,7 @@ msgstr "" msgid "Yes" msgstr "" -#: shared/common/kinds.py:110 +#: shared/common/kinds.py:112 msgid "From Server Only" msgstr "" @@ -1411,7 +1425,7 @@ msgstr "" msgid "Duration Entry Field" msgstr "" -#: shared/common/kinds.py:708 shared/common/kinds.py:812 +#: shared/common/kinds.py:724 shared/common/kinds.py:828 msgid "Titles" msgstr "" @@ -1419,7 +1433,7 @@ msgstr "" msgid "Malaysia" msgstr "" -#: shared/web/AppointmentsWeb.py:635 shared/web/widgets.py:502 +#: shared/web/AppointmentsWeb.py:627 shared/web/widgets.py:498 msgid "Month" msgstr "" @@ -1471,7 +1485,7 @@ msgstr "" msgid "Choose whether to crypt e-mails Glasnost sends to you." msgstr "" -#: shared/common/kinds.py:1426 +#: shared/common/kinds.py:1442 msgid "Mapping" msgstr "" @@ -1483,7 +1497,7 @@ msgstr "" msgid "Login & Password" msgstr "" -#: shared/common/xhtmlgenerator.py:98 +#: shared/common/xhtmlgenerator.py:102 talTranslations.py:5 msgid "Settings" msgstr "" @@ -1495,7 +1509,7 @@ msgstr "" msgid "Bulgaria" msgstr "" -#: shared/common/xhtmlgenerator.py:60 +#: shared/common/xhtmlgenerator.py:64 msgid "Add Article" msgstr "" @@ -1503,9 +1517,8 @@ msgstr "" msgid "Developers" msgstr "" -#: shared/common/kinds.py:3123 shared/common/instructions.py:316 -#: shared/common/values.py:53 -msgid "Kind" +#: shared/common/AppointmentsCommon.py:63 +msgid "Select the group that holds categories for the appointments." msgstr "" #: shared/web/ElectionsWeb.py:700 @@ -1516,11 +1529,11 @@ msgstr "" msgid "Translation Language" msgstr "" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "July" msgstr "" -#: shared/common/xhtmlgenerator.py:72 +#: shared/common/xhtmlgenerator.py:76 msgid "Download Glasnost" msgstr "" @@ -1529,21 +1542,19 @@ msgstr "" msgid "Members" msgstr "" -#: shared/web/ObjectsWeb.py:82 -msgid "Version Number" -msgstr "" - -#: shared/web/AppointmentsWeb.py:82 +#: shared/web/AppointmentsWeb.py:84 msgid "Select the people and groups who are assigned to this appointment." msgstr "" -#: shared/common/xhtmlgenerator.py:91 shared/common/PreferencesCommon.py:117 +#: shared/common/xhtmlgenerator.py:95 shared/common/PreferencesCommon.py:117 #: shared/common/PreferencesCommon.py:119 shared/web/PreferencesWeb.py:191 msgid "Preferences" msgstr "" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:426 -msgid "xMarch" +#: shared/common/kinds.py:822 shared/web/GradesWeb.py:125 +#: shared/web/VotesWeb.py:421 shared/web/VotesWeb.py:465 +#: shared/web/VotesWeb.py:525 shared/web/VotesWeb.py:583 +msgid "Choice" msgstr "" #: shared/common/PeopleCommon.py:78 @@ -1578,11 +1589,11 @@ msgstr "" msgid "Malawi" msgstr "" -#: shared/common/xhtmlgenerator.py:90 +#: shared/common/xhtmlgenerator.py:94 msgid "Reply" msgstr "" -#: shared/web/CardsWeb.py:248 +#: shared/web/CardsWeb.py:313 msgid "Editing Definition of Card \"%s\"" msgstr "" @@ -1598,7 +1609,7 @@ msgstr "" msgid "Winners" msgstr "" -#: shared/common/xhtmlgenerator.py:100 +#: shared/common/xhtmlgenerator.py:104 msgid "Source" msgstr "" @@ -1606,11 +1617,11 @@ msgstr "" msgid "France" msgstr "" -#: shared/common/kinds.py:307 +#: shared/common/kinds.py:309 msgid "Storage" msgstr "" -#: shared/common/xhtmlgenerator.py:102 +#: shared/common/xhtmlgenerator.py:106 msgid "Update Translation" msgstr "" @@ -1626,6 +1637,10 @@ msgstr "" msgid "Candidates One-on-One Comparison" msgstr "" +#: shared/common/xhtmlgenerator.py:78 +msgid "Edit Arguments" +msgstr "" + #: shared/web/geography.py:52 msgid "Afghanistan" msgstr "" @@ -1642,15 +1657,19 @@ msgstr "" msgid "Select the objects that are parts of this heading." msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:176 +#: shared/web/calendaring.py:63 +msgid "December" +msgstr "" + +#: shared/web/AuthenticationLoginPasswordWeb.py:180 msgid "Authentication (Login/Password) Settings" msgstr "" -#: shared/common/kinds.py:692 shared/common/kinds.py:797 +#: shared/common/kinds.py:708 shared/common/kinds.py:813 msgid "Check the box to sort labels alphabetically" msgstr "" -#: shared/common/AppointmentsCommon.py:78 +#: shared/common/AppointmentsCommon.py:73 msgid "Enter the text of this appointment." msgstr "" @@ -1694,11 +1713,11 @@ msgstr "" msgid "Finnish" msgstr "" -#: shared/common/kinds.py:2097 +#: shared/common/kinds.py:2158 msgid "Accepted Roles" msgstr "" -#: shared/common/kinds.py:530 +#: shared/common/kinds.py:538 msgid "Maximum Number of Items" msgstr "" @@ -1706,7 +1725,7 @@ msgstr "" msgid "Maldives" msgstr "" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Sunday" msgstr "" @@ -1714,7 +1733,7 @@ msgstr "" msgid "Argentina" msgstr "" -#: shared/common/kinds.py:3075 +#: shared/common/kinds.py:3152 msgid "Extended Choice" msgstr "" @@ -1722,7 +1741,7 @@ msgstr "" msgid "Dispatcher" msgstr "" -#: shared/common/xhtmlgenerator.py:104 +#: shared/common/xhtmlgenerator.py:108 msgid "Validate" msgstr "" @@ -1731,11 +1750,11 @@ msgid "" "Select the people and groups who are allowed to read items of this kind." msgstr "" -#: shared/web/widgets.py:1337 +#: shared/web/widgets.py:1342 msgid "Others" msgstr "" -#: shared/web/AppointmentsWeb.py:596 +#: shared/web/AppointmentsWeb.py:587 msgid "Hour: %s - %s" msgstr "" @@ -1759,11 +1778,11 @@ msgstr "" msgid "French" msgstr "Frances" -#: shared/common/xhtmlgenerator.py:83 +#: shared/common/xhtmlgenerator.py:87 msgid "Modify" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:393 +#: shared/web/AuthenticationLoginPasswordWeb.py:399 msgid "The account has been removed successfully." msgstr "" @@ -1771,19 +1790,20 @@ msgstr "" msgid "Vote Token" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:435 +#: shared/web/AuthenticationLoginPasswordWeb.py:441 msgid "Delete user:" msgstr "" -#: shared/common/xhtmlgenerator.py:59 +#: shared/common/xhtmlgenerator.py:63 shared/common/xhtmlgenerator.py:219 +#: talTranslations.py:12 msgid "Add" msgstr "" -#: shared/web/ObjectsWeb.py:769 +#: shared/web/ObjectsWeb.py:775 msgid "Search Results" msgstr "" -#: shared/common/kinds.py:112 +#: shared/common/kinds.py:114 msgid "Public" msgstr "" @@ -1791,8 +1811,8 @@ msgstr "" msgid "Enter the text of the document." msgstr "" -#: shared/common/xhtmlgenerator.py:74 -msgid "Edit Arguments" +#: shared/common/VirtualHostsCommon.py:120 +msgid "Template" msgstr "" #: shared/common/GroupsCommon.py:65 @@ -1805,8 +1825,8 @@ msgid "Authentication" msgstr "" #: shared/common/widgets.py:204 shared/common/widgets.py:248 -#: shared/common/widgets.py:292 shared/common/widgets.py:423 -#: shared/common/widgets.py:475 shared/common/widgets.py:488 +#: shared/common/widgets.py:292 shared/common/widgets.py:433 +#: shared/common/widgets.py:485 shared/common/widgets.py:498 #: shared/web/UploadFilesWeb.py:115 shared/web/uploads.py:101 msgid "Width" msgstr "" @@ -1843,11 +1863,11 @@ msgstr "" msgid "system files" msgstr "" -#: shared/web/geography.py:221 -msgid "East Timor" +#: shared/common/ArticlesCommon.py:57 +msgid "Select the author(s) of the document." msgstr "" -#: shared/common/kinds.py:2166 +#: shared/common/kinds.py:2227 msgid "People Set" msgstr "" @@ -1855,12 +1875,12 @@ msgstr "" msgid "South Africa" msgstr "" -#: shared/common/widgets.py:438 +#: shared/common/widgets.py:448 msgid "View In Text Area" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:309 -#: shared/web/AuthenticationLoginPasswordWeb.py:375 +#: shared/web/AuthenticationLoginPasswordWeb.py:315 +#: shared/web/AuthenticationLoginPasswordWeb.py:381 msgid "The password has been modified successfully." msgstr "" @@ -1884,7 +1904,7 @@ msgstr "" msgid "Enter the name of this alias (will be used in the URL)." msgstr "" -#: shared/common/kinds.py:702 +#: shared/common/kinds.py:718 msgid "Boolean" msgstr "" @@ -1892,6 +1912,10 @@ msgstr "" msgid "Switzerland" msgstr "" +#: talTranslations.py:11 +msgid "Back to home" +msgstr "" + #: shared/web/CommentsWeb.py:90 msgid "Commented Item" msgstr "" @@ -1900,6 +1924,10 @@ msgstr "" msgid "Enter an eventual nickname here." msgstr "" +#: talTranslations.py:8 +msgid "User:" +msgstr "" + #: shared/web/geography.py:102 msgid "Egypt" msgstr "" @@ -1908,7 +1936,7 @@ msgstr "" msgid "Honduras" msgstr "" -#: shared/common/xhtmlgenerator.py:58 +#: shared/common/xhtmlgenerator.py:62 msgid "Abstain" msgstr "" @@ -1920,8 +1948,8 @@ msgstr "" msgid "Crypt Emails" msgstr "" -#: shared/common/xhtmlgenerator.py:81 -#: shared/web/AuthenticationLoginPasswordWeb.py:491 +#: shared/common/xhtmlgenerator.py:85 +#: shared/web/AuthenticationLoginPasswordWeb.py:496 #: shared/web/AuthenticationLdapWeb.py:205 msgid "Login" msgstr "" @@ -1930,7 +1958,7 @@ msgstr "" msgid "Guyana" msgstr "" -#: shared/common/kinds.py:2617 +#: shared/common/kinds.py:2680 msgid "Access in Utilization Mode" msgstr "" @@ -1954,7 +1982,7 @@ msgstr "" msgid "Button" msgstr "" -#: shared/common/kinds.py:3093 +#: shared/common/kinds.py:3170 msgid "Fault" msgstr "" @@ -1962,18 +1990,19 @@ msgstr "" msgid "Other Translations" msgstr "" -#: shared/common/properties.py:62 shared/common/things.py:163 +#: shared/common/properties.py:65 shared/common/things.py:163 #: shared/web/AtomsWeb.py:60 shared/web/CommentsWeb.py:79 #: shared/web/GradesWeb.py:133 shared/web/GroupsWeb.py:94 #: shared/web/PageNamesWeb.py:65 shared/web/RubricsWeb.py:75 msgid "Name" msgstr "" -#: shared/web/CardsWeb.py:190 -msgid "Definition of Card \"%s\"" +#: shared/web/geography.py:137 +msgid "Kyrgyzstan" msgstr "" #: shared/common/ArticlesCommon.py:140 shared/web/ArticlesWeb.py:461 +#: talTranslations.py:2 msgid "Articles" msgstr "Artículos" @@ -1985,7 +2014,7 @@ msgstr "" msgid "Instructions" msgstr "" -#: shared/web/UploadFilesWeb.py:436 +#: shared/web/UploadFilesWeb.py:440 msgid "The last files" msgstr "" @@ -1993,7 +2022,7 @@ msgstr "" msgid "Difference" msgstr "" -#: shared/common/kinds.py:2632 +#: shared/common/kinds.py:2695 msgid "Access in Viewing Mode" msgstr "" @@ -2001,7 +2030,7 @@ msgstr "" msgid "Germany" msgstr "" -#: shared/common/VirtualHostsCommon.py:101 +#: shared/common/VirtualHostsCommon.py:116 msgid "Select the template (skin) to use for this host." msgstr "" @@ -2021,7 +2050,11 @@ msgstr "" msgid "Global Settings" msgstr "" -#: shared/common/kinds.py:2162 shared/common/kinds.py:2168 +#: shared/web/calendaring.py:61 +msgid "April" +msgstr "" + +#: shared/common/kinds.py:2223 shared/common/kinds.py:2229 msgid "Users" msgstr "" @@ -2061,7 +2094,7 @@ msgstr "" msgid "headings" msgstr "" -#: shared/common/kinds.py:3064 shared/common/kinds.py:3066 +#: shared/common/kinds.py:3141 shared/common/kinds.py:3143 msgid "Writers" msgstr "" @@ -2081,7 +2114,7 @@ msgstr "" msgid "Winners Grading" msgstr "" -#: shared/common/kinds.py:2289 shared/common/kinds.py:2293 +#: shared/common/kinds.py:2352 shared/common/kinds.py:2356 msgid "Result Pins" msgstr "" @@ -2093,27 +2126,23 @@ msgstr "" msgid "Select the group new users will be automatically added to." msgstr "" -#: shared/web/geography.py:229 -msgid "United Kingdom" +#: shared/web/geography.py:221 +msgid "East Timor" msgstr "" #: shared/web/TranslationsWeb.py:395 msgid "Original String" msgstr "" -#: shared/web/TranslationsWeb.py:360 -msgid "Fuzzy" -msgstr "" - #: shared/web/TranslationsWeb.py:375 msgid "Similar String" msgstr "" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Saturday" msgstr "" -#: shared/common/CardsCommon.py:348 +#: shared/common/CardsCommon.py:393 msgid "cards" msgstr "" @@ -2133,7 +2162,7 @@ msgstr "" msgid "Missing value!" msgstr "" -#: shared/common/kinds.py:172 +#: shared/common/kinds.py:174 msgid "Field Label" msgstr "" @@ -2165,7 +2194,7 @@ msgstr "" msgid "Ireland" msgstr "" -#: shared/common/xhtmlgenerator.py:78 +#: shared/common/xhtmlgenerator.py:82 msgid "History" msgstr "" @@ -2177,7 +2206,7 @@ msgstr "" msgid "translation" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:465 +#: shared/web/AuthenticationLoginPasswordWeb.py:470 #: shared/web/AuthenticationLdapWeb.py:181 msgid "To access this part of the site, you need to sign in." msgstr "" @@ -2186,11 +2215,11 @@ msgstr "" msgid "Are you sure you want to delete the %s \"%s\" ?" msgstr "" -#: shared/common/kinds.py:3057 +#: shared/common/kinds.py:3134 msgid "Select the people and groups who are allowed to modify the item." msgstr "" -#: shared/common/xhtmlgenerator.py:111 +#: shared/common/xhtmlgenerator.py:115 msgid "Vote " msgstr "" @@ -2202,11 +2231,11 @@ msgstr "" msgid "Gambia" msgstr "" -#: shared/common/kinds.py:1351 shared/common/kinds.py:1359 +#: shared/common/kinds.py:1367 shared/common/kinds.py:1375 msgid "Language" msgstr "Lengua" -#: shared/web/GlasnostTALGenerator.py:97 +#: shared/web/GlasnostTALGenerator.py:100 talTranslations.py:3 msgid "Search" msgstr "" @@ -2214,9 +2243,9 @@ msgstr "" msgid "Blank Ballots:" msgstr "" -#: shared/common/kinds.py:804 shared/common/kinds.py:1189 -#: shared/common/kinds.py:1357 shared/common/kinds.py:1969 -#: shared/common/kinds.py:3206 +#: shared/common/kinds.py:820 shared/common/kinds.py:1205 +#: shared/common/kinds.py:1373 shared/common/kinds.py:2030 +#: shared/common/kinds.py:3283 shared/common/kinds.py:3312 msgid "Data" msgstr "" @@ -2232,7 +2261,7 @@ msgstr "" msgid "Ties" msgstr "" -#: shared/common/kinds.py:982 shared/common/widgets.py:224 +#: shared/common/kinds.py:998 shared/common/widgets.py:224 #: shared/web/ArticlesWeb.py:347 msgid "Date" msgstr "" @@ -2249,8 +2278,8 @@ msgstr "" msgid "No options for this authentication method." msgstr "" -#: shared/common/kinds.py:197 shared/common/kinds.py:215 -#: shared/common/kinds.py:233 +#: shared/common/kinds.py:199 shared/common/kinds.py:217 +#: shared/common/kinds.py:235 msgid "Read/Write" msgstr "" @@ -2258,11 +2287,11 @@ msgstr "" msgid "None Label" msgstr "" -#: shared/common/xhtmlgenerator.py:76 +#: shared/common/xhtmlgenerator.py:80 msgid "Every Article" msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Monday" msgstr "" @@ -2284,19 +2313,27 @@ msgstr "" msgid "New Comment" msgstr "" +#: shared/common/scripts.py:62 +msgid "Execute On Edit" +msgstr "" + #: shared/common/PreferencesCommon.py:78 msgid "Use Browser Settings" msgstr "" -#: shared/web/AppointmentsWeb.py:77 +#: shared/web/calendaring.py:71 +msgid "xOctober" +msgstr "" + +#: shared/web/AppointmentsWeb.py:79 msgid "Categories" msgstr "" -#: shared/web/AppointmentsWeb.py:84 +#: shared/web/AppointmentsWeb.py:86 msgid "Participants" msgstr "" -#: shared/web/AppointmentsWeb.py:86 +#: shared/web/AppointmentsWeb.py:88 msgid "Start" msgstr "" @@ -2325,11 +2362,11 @@ msgstr "" msgid "(%d words)" msgstr "" -#: shared/common/widgets.py:434 +#: shared/common/widgets.py:444 msgid "Multi-Line Text Entry Field" msgstr "" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:425 +#: shared/web/calendaring.py:68 msgid "xFebruary" msgstr "" @@ -2353,6 +2390,13 @@ msgstr "" msgid "Headings" msgstr "" +#: shared/web/VotesWeb.py:94 shared/web/VotesWeb.py:142 +#: shared/web/VotesWeb.py:185 shared/web/VotesWeb.py:229 +#: shared/web/VotesWeb.py:428 shared/web/VotesWeb.py:472 +#: shared/web/VotesWeb.py:532 shared/web/VotesWeb.py:590 +msgid "Blank Vote" +msgstr "" + #: shared/web/ForumsWeb.py:189 msgid "replies: %d" msgstr "" @@ -2361,7 +2405,7 @@ msgstr "" msgid "Currency" msgstr "" -#: shared/common/kinds.py:1961 +#: shared/common/kinds.py:2022 msgid "Item Type" msgstr "" @@ -2377,10 +2421,6 @@ msgstr "" msgid "Enter the title of the document." msgstr "" -#: shared/web/VirtualHostsWeb.py:78 -msgid "Template" -msgstr "" - #: shared/common/BrevesCommon.py:180 msgid "The election \"%s\" is closed." msgstr "" @@ -2393,7 +2433,7 @@ msgstr "" msgid "Chad" msgstr "" -#: shared/common/kinds.py:1003 shared/web/VirtualHostsWeb.py:69 +#: shared/common/kinds.py:1019 shared/common/VirtualHostsCommon.py:88 msgid "Glasnost Dispatcher ID" msgstr "" @@ -2401,19 +2441,19 @@ msgstr "" msgid "Angola" msgstr "" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:427 -msgid "xApril" +#: shared/web/PeopleWeb.py:91 +msgid "Nickname" msgstr "" -#: shared/common/kinds.py:2273 shared/common/kinds.py:2275 +#: shared/common/kinds.py:2336 shared/common/kinds.py:2338 msgid "Readers" msgstr "" -#: shared/common/xhtmlgenerator.py:70 shared/web/ObjectsWeb.py:581 +#: shared/common/xhtmlgenerator.py:74 shared/web/ObjectsWeb.py:587 msgid "Delete" msgstr "" -#: shared/common/CardsCommon.py:346 +#: shared/common/CardsCommon.py:391 msgid "card" msgstr "" @@ -2437,7 +2477,7 @@ msgstr "" msgid "Tunisia" msgstr "" -#: shared/common/AppointmentsCommon.py:178 +#: shared/common/AppointmentsCommon.py:173 msgid "appointments" msgstr "" @@ -2445,8 +2485,8 @@ msgstr "" msgid "Every Type" msgstr "" -#: shared/web/geography.py:168 -msgid "Mauritius" +#: shared/web/calendaring.py:68 +msgid "xMarch" msgstr "" #: shared/web/ElectionsWeb.py:541 @@ -2459,7 +2499,7 @@ msgstr "" msgid "Indonesia" msgstr "" -#: shared/common/xhtmlgenerator.py:96 +#: shared/common/xhtmlgenerator.py:100 msgid "Send by Email" msgstr "" @@ -2469,10 +2509,14 @@ msgstr "" #: shared/common/widgets.py:388 shared/common/widgets.py:413 #: shared/web/TranslationsWeb.py:123 shared/web/TranslationsWeb.py:133 -#: shared/web/widgets.py:391 +#: shared/web/widgets.py:400 msgid "None" msgstr "" +#: shared/common/scripts.py:87 +msgid "Source Code" +msgstr "" + #: shared/web/geography.py:227 msgid "Ukraine" msgstr "" @@ -2498,7 +2542,7 @@ msgstr "Art msgid "China" msgstr "" -#: shared/common/kinds.py:94 +#: shared/common/kinds.py:96 msgid "Default Value" msgstr "" @@ -2527,7 +2571,7 @@ msgstr "" msgid "Translations" msgstr "" -#: shared/common/xhtmlgenerator.py:75 +#: shared/common/xhtmlgenerator.py:79 msgid "Evaluate" msgstr "" @@ -2541,7 +2585,7 @@ msgstr "" #: shared/common/AuthenticationLoginPasswordCommon.py:57 #: shared/common/AuthenticationLdapCommon.py:56 -#: shared/web/AuthenticationLoginPasswordWeb.py:131 +#: shared/web/AuthenticationLoginPasswordWeb.py:135 msgid "Username" msgstr "" @@ -2549,7 +2593,7 @@ msgstr "" msgid "Benin" msgstr "" -#: shared/common/kinds.py:1888 +#: shared/common/kinds.py:1921 msgid "Python Identifier" msgstr "" @@ -2557,7 +2601,7 @@ msgstr "" msgid " to " msgstr "" -#: shared/common/kinds.py:295 shared/common/xhtmlgenerator.py:108 +#: shared/common/kinds.py:297 shared/common/xhtmlgenerator.py:112 #: shared/common/properties.py:55 shared/web/GroupsWeb.py:85 msgid "Type" msgstr "" @@ -2574,11 +2618,11 @@ msgstr "" msgid "Bermuda" msgstr "" -#: shared/common/kinds.py:78 +#: shared/common/kinds.py:80 msgid "Balloon Help" msgstr "" -#: shared/common/xhtmlgenerator.py:84 +#: shared/common/xhtmlgenerator.py:88 msgid "Next" msgstr "" @@ -2602,15 +2646,15 @@ msgstr "" msgid "Multi-Line Field" msgstr "" -#: shared/common/VirtualHostsCommon.py:205 +#: shared/common/VirtualHostsCommon.py:224 msgid "Virtual Host" msgstr "" -#: shared/web/AppointmentsWeb.py:79 +#: shared/web/AppointmentsWeb.py:81 msgid "End" msgstr "" -#: shared/common/kinds.py:191 +#: shared/common/kinds.py:193 msgid "Creation Mode" msgstr "" @@ -2623,7 +2667,7 @@ msgstr "" msgid "Subject" msgstr "" -#: shared/common/kinds.py:229 shared/common/kinds.py:2619 +#: shared/common/kinds.py:231 shared/common/kinds.py:2682 msgid "Same As View Mode" msgstr "" @@ -2631,7 +2675,7 @@ msgstr "" msgid "Kenya" msgstr "" -#: shared/common/kinds.py:1146 +#: shared/common/kinds.py:1162 msgid "Function Name" msgstr "" @@ -2647,7 +2691,7 @@ msgstr "" msgid "Best Average" msgstr "" -#: shared/common/kinds.py:3136 +#: shared/common/kinds.py:3213 msgid "Kind Name" msgstr "" @@ -2668,7 +2712,7 @@ msgid "" msgstr "" #: shared/common/BrevesCommon.py:204 shared/web/tools.py:644 -#: shared/web/BrevesWeb.py:165 +#: shared/web/BrevesWeb.py:165 talTranslations.py:6 msgid "Short News" msgstr "" @@ -2676,7 +2720,7 @@ msgstr "" msgid "The last strings to leave untranslated" msgstr "" -#: shared/common/xhtmlgenerator.py:64 +#: shared/common/xhtmlgenerator.py:68 msgid "Cancel" msgstr "" @@ -2696,7 +2740,7 @@ msgstr "" msgid "The election \"%s\"" msgstr "" -#: shared/web/AppointmentsWeb.py:641 +#: shared/web/AppointmentsWeb.py:633 msgid "Agenda" msgstr "" @@ -2732,10 +2776,14 @@ msgstr "" msgid "Number of Results" msgstr "" -#: shared/web/widgets.py:842 +#: shared/web/widgets.py:839 msgid "URL" msgstr "" +#: shared/common/scripts.py:70 +msgid "Execute On Use" +msgstr "" + #: shared/web/geography.py:230 msgid "United States" msgstr "" @@ -2748,15 +2796,19 @@ msgstr "" msgid "System Files" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:100 +#: shared/web/AuthenticationLoginPasswordWeb.py:103 msgid "Enter your new password." msgstr "" +#: shared/web/geography.py:168 +msgid "Mauritius" +msgstr "" + #: shared/web/ElectionsWeb.py:870 msgid "Your last closed elections" msgstr "" -#: shared/common/kinds.py:1081 shared/web/SystemFilesWeb.py:71 +#: shared/common/kinds.py:1097 shared/web/SystemFilesWeb.py:71 msgid "Path" msgstr "" @@ -2784,16 +2836,16 @@ msgstr "" msgid "Authentication (LDAP)" msgstr "" -#: shared/common/VirtualHostsCommon.py:206 +#: shared/common/VirtualHostsCommon.py:225 msgid "virtual hosts" msgstr "" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 -msgid "March" +#: shared/common/GroupsCommon.py:406 +msgid "group" msgstr "" -#: shared/common/kinds.py:317 shared/common/kinds.py:3238 -#: shared/common/xhtmlgenerator.py:110 shared/common/widgets.py:102 +#: shared/common/kinds.py:319 shared/common/kinds.py:3344 +#: shared/common/xhtmlgenerator.py:114 shared/common/widgets.py:102 msgid "Widget" msgstr "" @@ -2813,11 +2865,11 @@ msgid "" "GNU General Public License for more details.\n" msgstr "" -#: shared/web/AppointmentsWeb.py:55 +#: shared/web/AppointmentsWeb.py:57 msgid "Categories Group" msgstr "" -#: shared/common/xhtmlgenerator.py:101 +#: shared/common/xhtmlgenerator.py:105 msgid "Translate" msgstr "Traducir" @@ -2825,11 +2877,17 @@ msgstr "Traducir" msgid "Guinea-Bissau" msgstr "" -#: shared/common/AppointmentsCommon.py:68 -msgid "Select the group that holds categories for the appointments." +#: shared/web/PeopleWeb.py:273 +msgid "" +"The account has successfully been created, but a SMTP error has occurred.\n" +"Maybe the Mail Transport Agent on the Glasnost server is badly configured." msgstr "" -#: glasnost-web/about.py:290 shared/common/xhtmlgenerator.py:57 +#: shared/web/CardsWeb.py:203 +msgid "Definition of Card \"%s\"" +msgstr "" + +#: glasnost-web/about.py:290 shared/common/xhtmlgenerator.py:61 msgid "About Glasnost" msgstr "" @@ -2855,11 +2913,11 @@ msgstr "" msgid "Author" msgstr "" -#: shared/common/VirtualHostsCommon.py:204 +#: shared/common/VirtualHostsCommon.py:223 msgid "virtual host" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:91 +#: shared/web/AuthenticationLoginPasswordWeb.py:94 msgid "Enter your current password." msgstr "" @@ -2867,15 +2925,15 @@ msgstr "" msgid "Sao Tome and Principe" msgstr "" -#: shared/common/kinds.py:2173 +#: shared/common/kinds.py:2234 msgid "Choose the author(s) for this object." msgstr "" -#: shared/common/xhtmlgenerator.py:107 +#: shared/common/xhtmlgenerator.py:111 msgid "List" msgstr "" -#: shared/common/xhtmlgenerator.py:62 +#: shared/common/xhtmlgenerator.py:66 msgid "Apply" msgstr "" @@ -2883,13 +2941,13 @@ msgstr "" msgid "Greece" msgstr "" -#: shared/common/kinds.py:3208 shared/common/UploadFilesCommon.py:135 +#: shared/common/kinds.py:3314 shared/common/UploadFilesCommon.py:135 #: shared/common/uploads.py:74 shared/web/UploadFilesWeb.py:76 #: shared/web/uploads.py:66 msgid "File" msgstr "" -#: shared/common/kinds.py:961 shared/common/kinds.py:963 +#: shared/common/kinds.py:977 shared/common/kinds.py:979 msgid "Date & Time" msgstr "" @@ -2901,7 +2959,7 @@ msgstr "" msgid "Enter the name of this heading." msgstr "" -#: shared/web/AppointmentsWeb.py:636 shared/web/widgets.py:488 +#: shared/web/AppointmentsWeb.py:628 shared/web/widgets.py:484 msgid "Year" msgstr "" @@ -2909,14 +2967,14 @@ msgstr "" msgid "Results" msgstr "" -#: shared/common/xhtmlgenerator.py:86 -#: shared/web/AuthenticationLoginPasswordWeb.py:405 -#: shared/web/AuthenticationLoginPasswordWeb.py:589 +#: shared/common/xhtmlgenerator.py:90 +#: shared/web/AuthenticationLoginPasswordWeb.py:411 +#: shared/web/AuthenticationLoginPasswordWeb.py:584 #: shared/web/PeopleWeb.py:159 msgid "New Account" msgstr "" -#: shared/common/xhtmlgenerator.py:97 +#: shared/common/xhtmlgenerator.py:101 msgid "Send Password by Email" msgstr "Enviar contraseña por email" @@ -2956,11 +3014,11 @@ msgstr "" msgid "Japan" msgstr "" -#: shared/common/kinds.py:644 shared/common/PageNamesCommon.py:99 +#: shared/common/kinds.py:660 shared/common/PageNamesCommon.py:99 msgid "Alias" msgstr "" -#: shared/common/kinds.py:2589 +#: shared/common/kinds.py:2652 msgid "Access in Creation Mode" msgstr "" @@ -2968,11 +3026,11 @@ msgstr "" msgid "Choose the persons or groups who will vote for this election." msgstr "" -#: shared/common/VirtualHostsCommon.py:88 +#: shared/common/VirtualHostsCommon.py:96 msgid "Enter the host name." msgstr "" -#: shared/common/CardsCommon.py:349 +#: shared/common/CardsCommon.py:394 msgid "Cards" msgstr "" @@ -3000,6 +3058,10 @@ msgstr "" msgid "Botswana" msgstr "" +#: shared/web/ForumsWeb.py:195 +msgid "Replies List" +msgstr "" + #: shared/common/AtomsCommon.py:78 msgid "Atom" msgstr "" @@ -3016,11 +3078,11 @@ msgstr "" msgid "The last short news" msgstr "" -#: shared/common/widgets.py:395 shared/common/widgets.py:417 +#: shared/common/widgets.py:395 shared/common/widgets.py:421 msgid "Option Menu" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:266 +#: shared/web/AuthenticationLoginPasswordWeb.py:270 msgid "Changing Password" msgstr "" @@ -3032,11 +3094,10 @@ msgstr "" msgid "Format" msgstr "" -#: shared/web/PeopleWeb.py:273 -msgid "" -"The account has successfully been created, but a SMTP error has occurred.\n" -"Maybe the Mail Transport Agent on the Glasnost server is badly configured." -msgstr "" +#: shared/common/scripts.py:83 +#, fuzzy +msgid "TextArea" +msgstr "Texto" #: shared/common/UploadFilesCommon.py:64 msgid "Select the file to upload." @@ -3054,7 +3115,7 @@ msgstr "" msgid "Suriname" msgstr "" -#: shared/web/VirtualHostsWeb.py:59 +#: shared/common/VirtualHostsCommon.py:56 msgid "Default Virtual Host" msgstr "" @@ -3066,7 +3127,7 @@ msgstr "" msgid "Kind of Ballot" msgstr "" -#: shared/common/kinds.py:2078 +#: shared/common/kinds.py:2139 msgid "Select accepted types of items." msgstr "" @@ -3088,7 +3149,7 @@ msgstr "" msgid "Palau" msgstr "" -#: shared/common/xhtmlgenerator.py:99 +#: shared/common/xhtmlgenerator.py:103 msgid "Spell Check" msgstr "" @@ -3096,7 +3157,7 @@ msgstr "" msgid "ReStructured Text" msgstr "" -#: shared/common/widgets.py:492 +#: shared/common/widgets.py:502 msgid "Combo Box" msgstr "" @@ -3113,8 +3174,8 @@ msgid "" "%s\n" msgstr "" -#: shared/common/kinds.py:700 shared/common/kinds.py:1127 -#: shared/common/kinds.py:1300 +#: shared/common/kinds.py:716 shared/common/kinds.py:1143 +#: shared/common/kinds.py:1316 msgid "Numbers" msgstr "" @@ -3126,11 +3187,15 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:428 +#: shared/web/calendaring.py:69 msgid "xMay" msgstr "" -#: shared/common/widgets.py:431 shared/web/UploadFilesWeb.py:94 +#: shared/common/kinds.py:3285 +msgid "Script" +msgstr "" + +#: shared/common/widgets.py:441 shared/web/UploadFilesWeb.py:94 #: shared/web/uploads.py:84 msgid "Height" msgstr "" @@ -3139,10 +3204,10 @@ msgstr "" msgid "Lebanon" msgstr "" -#: shared/common/kinds.py:264 shared/common/kinds.py:1039 -#: shared/common/kinds.py:1113 shared/common/kinds.py:1870 -#: shared/common/kinds.py:2535 shared/common/kinds.py:2537 -#: shared/web/AppointmentsWeb.py:65 shared/web/BrevesWeb.py:63 +#: shared/common/kinds.py:266 shared/common/kinds.py:1055 +#: shared/common/kinds.py:1129 shared/common/kinds.py:1898 +#: shared/common/kinds.py:2598 shared/common/kinds.py:2600 +#: shared/web/AppointmentsWeb.py:67 shared/web/BrevesWeb.py:63 #: shared/web/CommentsWeb.py:68 shared/web/ArticlesWeb.py:67 #: shared/web/ArticlesWeb.py:83 msgid "Text" @@ -3152,7 +3217,7 @@ msgstr "Texto" msgid "German" msgstr "" -#: shared/web/widgets.py:548 +#: shared/web/widgets.py:545 msgid "hour" msgstr "" @@ -3160,23 +3225,27 @@ msgstr "" msgid "Korea, Republic of" msgstr "" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:435 +#: shared/web/calendaring.py:71 msgid "xDecember" msgstr "" -#: shared/web/geography.py:184 -msgid "Panama" +#: shared/web/calendaring.py:60 +msgid "March" msgstr "" -#: shared/common/kinds.py:262 +#: shared/common/kinds.py:264 msgid "Text Format" msgstr "" -#: shared/common/kinds.py:1291 +#: shared/common/kinds.py:1307 msgid "Maximum Value" msgstr "" -#: shared/common/kinds.py:695 shared/common/kinds.py:799 +#: shared/web/ElectionsWeb.py:135 +msgid "Approval" +msgstr "" + +#: shared/common/kinds.py:711 shared/common/kinds.py:815 msgid "Sort Labels" msgstr "" @@ -3204,7 +3273,7 @@ msgstr "" msgid "Sudan" msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Wednesday" msgstr "" @@ -3220,12 +3289,12 @@ msgstr "" msgid "Denmark" msgstr "" -#: shared/common/kinds.py:2592 shared/common/kinds.py:2606 -#: shared/common/kinds.py:2620 shared/common/kinds.py:2634 +#: shared/common/kinds.py:2655 shared/common/kinds.py:2669 +#: shared/common/kinds.py:2683 shared/common/kinds.py:2697 msgid "Embedded" msgstr "" -#: shared/web/widgets.py:547 +#: shared/web/widgets.py:544 msgid "day" msgstr "" @@ -3236,19 +3305,19 @@ msgid "" "the results to be displayed)" msgstr "" -#: shared/common/kinds.py:178 +#: shared/common/kinds.py:180 msgid "Label (plural form)" msgstr "" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/calendaring.py:63 msgid "October" msgstr "" -#: shared/common/kinds.py:268 shared/web/ArticlesWeb.py:82 +#: shared/common/kinds.py:270 shared/web/ArticlesWeb.py:82 msgid "SPIP" msgstr "" -#: shared/common/kinds.py:2266 +#: shared/common/kinds.py:2329 msgid "Select the people and groups who are allowed to read the item." msgstr "" @@ -3256,6 +3325,10 @@ msgstr "" msgid "Main Heading" msgstr "" +#: shared/common/scripts.py:58 +msgid "Execute On Create" +msgstr "" + #: glasnost-web/sessions.py:101 shared/web/ElectionsWeb.py:85 msgid "End Time" msgstr "" @@ -3268,11 +3341,11 @@ msgstr "" msgid "Being Written" msgstr "" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 +#: shared/web/calendaring.py:61 msgid "June" msgstr "" -#: shared/common/xhtmlgenerator.py:71 +#: shared/common/xhtmlgenerator.py:75 msgid "Differences" msgstr "" @@ -3284,15 +3357,15 @@ msgstr "" msgid "GNU GENERAL PUBLIC LICENSE" msgstr "" -#: shared/common/kinds.py:1129 +#: shared/common/kinds.py:1145 msgid "Float Number" msgstr "" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "August" msgstr "" -#: shared/common/widgets.py:427 +#: shared/common/widgets.py:437 msgid "Show Preview" msgstr "" @@ -3308,7 +3381,7 @@ msgstr "" msgid "forums" msgstr "" -#: shared/common/kinds.py:1952 +#: shared/common/kinds.py:2013 msgid "Minimum Number of Items to Edit" msgstr "" @@ -3320,7 +3393,7 @@ msgstr "" msgid "Spellcheck Entries" msgstr "" -#: shared/common/xhtmlgenerator.py:61 +#: shared/common/xhtmlgenerator.py:65 msgid "Add Candidate" msgstr "" @@ -3328,14 +3401,22 @@ msgstr "" msgid "Australia" msgstr "" -#: shared/common/xhtmlgenerator.py:82 +#: shared/common/xhtmlgenerator.py:86 talTranslations.py:13 msgid "Exit" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:109 +#: shared/web/AuthenticationLoginPasswordWeb.py:112 msgid "Re-enter your new password." msgstr "" +#: shared/web/ElectionsWeb.py:113 +msgid "State" +msgstr "Estado" + +#: shared/web/geography.py:229 +msgid "United Kingdom" +msgstr "" + #: shared/common/widgets.py:208 msgid "Single-Line Text Entry Field" msgstr "" @@ -3352,7 +3433,7 @@ msgstr "" msgid "Kuwait" msgstr "" -#: shared/common/xhtmlgenerator.py:109 +#: shared/common/xhtmlgenerator.py:113 msgid "Utilization" msgstr "" @@ -3368,7 +3449,7 @@ msgstr "" msgid "Counting of the Votes" msgstr "" -#: shared/common/xhtmlgenerator.py:63 +#: shared/common/xhtmlgenerator.py:67 msgid "Back" msgstr "" @@ -3376,11 +3457,11 @@ msgstr "" msgid "Sessions History" msgstr "" -#: glasnost-web/index.py:180 +#: glasnost-web/index.py:180 talTranslations.py:17 msgid "Home" msgstr "Inicio" -#: shared/common/CardsCommon.py:344 +#: shared/common/CardsCommon.py:389 msgid "New Card" msgstr "" @@ -3397,7 +3478,7 @@ msgid "Dutch" msgstr "" #: shared/web/AuthenticationWeb.py:155 -#: shared/web/AuthenticationLoginPasswordWeb.py:206 +#: shared/web/AuthenticationLoginPasswordWeb.py:210 #: shared/web/AuthenticationLibertyAllianceWeb.py:126 #: shared/web/AuthenticationLdapWeb.py:129 msgid "Editing Authentication Settings" @@ -3417,15 +3498,12 @@ msgstr "" msgid "Enter your email address." msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 -msgid "Tuesday" +#: shared/proxy/ObjectsProxy.py:1222 shared/proxy/ObjectsProxy.py:1279 +msgid " (at <%s>)" msgstr "" -#: shared/web/VotesWeb.py:94 shared/web/VotesWeb.py:142 -#: shared/web/VotesWeb.py:185 shared/web/VotesWeb.py:229 -#: shared/web/VotesWeb.py:428 shared/web/VotesWeb.py:472 -#: shared/web/VotesWeb.py:532 shared/web/VotesWeb.py:590 -msgid "Blank Vote" +#: shared/web/PeopleWeb.py:80 +msgid "Last Name" msgstr "" #: shared/common/widgets.py:350 @@ -3436,12 +3514,12 @@ msgstr "" msgid "forum" msgstr "" -#: shared/common/xhtmlgenerator.py:65 -#: shared/web/AuthenticationLoginPasswordWeb.py:409 +#: shared/common/xhtmlgenerator.py:69 +#: shared/web/AuthenticationLoginPasswordWeb.py:415 msgid "Change Password" msgstr "" -#: shared/common/kinds.py:1028 +#: shared/common/kinds.py:1044 msgid "Duration" msgstr "" @@ -3473,12 +3551,12 @@ msgstr "" msgid "objects" msgstr "" -#: shared/common/kinds.py:1097 +#: shared/common/kinds.py:1113 msgid "File Path" msgstr "" -#: shared/common/AtomsCommon.py:79 -msgid "atoms" +#: shared/web/AuthenticationLoginPasswordWeb.py:85 +msgid "Enter the username you use on this site." msgstr "" #: shared/web/geography.py:81 @@ -3489,7 +3567,7 @@ msgstr "" msgid "Finland" msgstr "" -#: shared/common/kinds.py:2830 shared/web/GroupsWeb.py:137 +#: shared/common/kinds.py:2902 shared/web/GroupsWeb.py:137 msgid "Items" msgstr "" @@ -3511,7 +3589,7 @@ msgstr "" msgid "person" msgstr "" -#: shared/common/kinds.py:681 +#: shared/common/kinds.py:697 msgid "True" msgstr "" @@ -3520,25 +3598,25 @@ msgstr "" msgid "Translation" msgstr "" -#: shared/common/kinds.py:2433 +#: shared/common/kinds.py:2496 msgid "Glasnost Server ID" msgstr "" -#: shared/common/kinds.py:2952 shared/common/kinds.py:2954 +#: shared/common/kinds.py:3029 shared/common/kinds.py:3031 msgid "Modification Time" msgstr "" -#: shared/common/kinds.py:1373 shared/common/kinds.py:2593 -#: shared/common/kinds.py:2607 shared/common/kinds.py:2621 -#: shared/common/kinds.py:2635 +#: shared/common/kinds.py:1389 shared/common/kinds.py:2656 +#: shared/common/kinds.py:2670 shared/common/kinds.py:2684 +#: shared/common/kinds.py:2698 msgid "Link" msgstr "" -#: shared/common/kinds.py:266 shared/web/ArticlesWeb.py:81 +#: shared/common/kinds.py:268 shared/web/ArticlesWeb.py:81 msgid "HTML" msgstr "" -#: shared/common/kinds.py:2604 +#: shared/common/kinds.py:2667 msgid "Access in Edition Mode" msgstr "" @@ -3554,11 +3632,11 @@ msgstr "" msgid "Korea, Democratic People's Republic of" msgstr "" -#: shared/common/xhtmlgenerator.py:66 +#: shared/common/xhtmlgenerator.py:70 msgid "Change Translation" msgstr "" -#: shared/common/kinds.py:1115 +#: shared/common/kinds.py:1131 msgid "OpenPGP Fingerprint" msgstr "" @@ -3571,11 +3649,11 @@ msgstr "" msgid "preferences" msgstr "" -#: shared/common/xhtmlgenerator.py:88 +#: shared/common/xhtmlgenerator.py:92 msgid "Pester Absentionnists" msgstr "" -#: shared/web/widgets.py:1639 +#: shared/web/widgets.py:1641 msgid "other:" msgstr "" @@ -3591,7 +3669,7 @@ msgstr "" msgid "Voter Token" msgstr "" -#: shared/web/widgets.py:1533 +#: shared/web/widgets.py:1535 msgid "download" msgstr "" @@ -3599,19 +3677,19 @@ msgstr "" msgid "Slovakia" msgstr "" -#: glasnost-web/about.py:59 shared/common/xhtmlgenerator.py:105 +#: glasnost-web/about.py:59 shared/common/xhtmlgenerator.py:109 msgid "Version" msgstr "" -#: shared/web/ElectionsWeb.py:113 -msgid "State" -msgstr "Estado" +#: shared/web/widgets.py:547 +msgid "second" +msgstr "" -#: shared/common/kinds.py:310 +#: shared/common/kinds.py:312 msgid "In External File" msgstr "" -#: shared/web/widgets.py:1640 +#: shared/web/widgets.py:1642 msgid "Label" msgstr "" @@ -3619,7 +3697,7 @@ msgstr "" msgid "DocBook - %s" msgstr "" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:424 +#: shared/web/calendaring.py:68 msgid "xJanuary" msgstr "" @@ -3631,11 +3709,12 @@ msgstr "" msgid "heading" msgstr "" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:431 +#: shared/web/calendaring.py:70 msgid "xAugust" msgstr "" -#: shared/web/GlasnostTALGenerator.py:99 +#: shared/common/xhtmlgenerator.py:191 shared/web/GlasnostTALGenerator.py:102 +#: talTranslations.py:14 msgid "Go" msgstr "" @@ -3643,10 +3722,8 @@ msgstr "" msgid "LDAP" msgstr "" -#: shared/common/kinds.py:806 shared/web/GradesWeb.py:125 -#: shared/web/VotesWeb.py:421 shared/web/VotesWeb.py:465 -#: shared/web/VotesWeb.py:525 shared/web/VotesWeb.py:583 -msgid "Choice" +#: shared/common/GroupsCommon.py:279 +msgid "Select the items to intersect." msgstr "" #: shared/common/RubricsCommon.py:69 @@ -3657,27 +3734,31 @@ msgstr "" msgid "Enter your name (if you want)." msgstr "" -#: shared/common/kinds.py:685 shared/common/kinds.py:787 +#: shared/common/kinds.py:701 shared/common/kinds.py:803 msgid "Labels" msgstr "" -#: shared/common/kinds.py:285 +#: shared/common/kinds.py:287 msgid "Maximum Number of Characters" msgstr "" -#: shared/common/kinds.py:680 +#: shared/common/kinds.py:696 msgid "False" msgstr "" -#: shared/web/widgets.py:549 +#: shared/common/kinds.py:1916 +msgid "Invalid values" +msgstr "" + +#: shared/web/widgets.py:546 msgid "minute" msgstr "" -#: shared/web/AppointmentsWeb.py:633 +#: shared/web/AppointmentsWeb.py:625 msgid "Week" msgstr "" -#: shared/common/kinds.py:171 +#: shared/common/kinds.py:173 msgid "Enter a user-friendly field name" msgstr "" @@ -3689,7 +3770,7 @@ msgstr "" msgid "Description" msgstr "" -#: shared/common/kinds.py:653 +#: shared/common/kinds.py:669 msgid "Amount" msgstr "" @@ -3697,11 +3778,11 @@ msgstr "" msgid "Authentication (Login/Password)" msgstr "" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:433 -msgid "xOctober" +#: shared/common/properties.py:53 +msgid "Select a field type" msgstr "" -#: shared/common/kinds.py:1191 +#: shared/common/kinds.py:1207 msgid "Glasnost Object" msgstr "" @@ -3717,11 +3798,11 @@ msgstr "" msgid "Cards Models" msgstr "" -#: shared/common/AppointmentsCommon.py:176 +#: shared/common/AppointmentsCommon.py:171 msgid "appointment" msgstr "" -#: shared/common/AppointmentsCommon.py:175 +#: shared/common/AppointmentsCommon.py:170 msgid "New Appointment" msgstr "" @@ -3729,7 +3810,7 @@ msgstr "" msgid "Choose the candidates for this election." msgstr "" -#: shared/web/AppointmentsWeb.py:631 shared/web/widgets.py:517 +#: shared/web/AppointmentsWeb.py:623 shared/web/widgets.py:514 msgid "Day" msgstr "" @@ -3741,19 +3822,23 @@ msgstr "" msgid "Russian Federation" msgstr "" -#: shared/common/kinds.py:2183 shared/common/kinds.py:2185 -msgid "Authors" -msgstr "Autores" +#: shared/web/AuthenticationLoginPasswordWeb.py:86 +msgid "Enter your password." +msgstr "" -#: shared/common/kinds.py:265 shared/web/ArticlesWeb.py:80 +#: shared/common/kinds.py:267 shared/web/ArticlesWeb.py:80 msgid "DocBook" msgstr "" +#: shared/web/calendaring.py:69 +msgid "xApril" +msgstr "" + #: shared/common/ObjectsCommon.py:206 msgid "Object" msgstr "" -#: shared/common/kinds.py:3106 +#: shared/common/kinds.py:3183 msgid "Input Connector" msgstr "" @@ -3777,7 +3862,7 @@ msgstr "" msgid "votes" msgstr "" -#: shared/common/kinds.py:1331 +#: shared/common/kinds.py:1347 msgid "Integer Choice" msgstr "" @@ -3815,7 +3900,7 @@ msgstr "" msgid "Swaziland" msgstr "" -#: shared/common/kinds.py:227 +#: shared/common/kinds.py:229 msgid "Utilization Mode" msgstr "" @@ -3823,8 +3908,9 @@ msgstr "" msgid "File Name" msgstr "" -#: shared/web/widgets.py:550 -msgid "second" +#: shared/common/kinds.py:3200 shared/common/instructions.py:316 +#: shared/common/values.py:53 +msgid "Kind" msgstr "" #: shared/common/widgets.py:297 @@ -3848,23 +3934,23 @@ msgstr "" msgid "Unknown" msgstr "" -#: shared/web/AppointmentsWeb.py:88 shared/web/ElectionsWeb.py:128 -#: shared/web/BrevesWeb.py:73 shared/web/CommentsWeb.py:85 -#: shared/web/ForumsWeb.py:71 shared/web/widgets.py:836 -#: shared/web/ArticlesWeb.py:92 shared/web/SystemFilesWeb.py:82 -#: shared/web/UploadFilesWeb.py:106 shared/web/VirtualHostsWeb.py:81 +#: shared/common/VirtualHostsCommon.py:126 shared/web/AppointmentsWeb.py:90 +#: shared/web/ElectionsWeb.py:128 shared/web/BrevesWeb.py:73 +#: shared/web/CommentsWeb.py:85 shared/web/ForumsWeb.py:71 +#: shared/web/widgets.py:833 shared/web/ArticlesWeb.py:92 +#: shared/web/SystemFilesWeb.py:82 shared/web/UploadFilesWeb.py:106 msgid "Title" msgstr "Título" -#: shared/common/ArticlesCommon.py:57 -msgid "Select the author(s) of the document." -msgstr "" +#: shared/common/kinds.py:2244 shared/common/kinds.py:2246 +msgid "Authors" +msgstr "Autores" #: shared/common/things.py:149 msgid "Internal Name" msgstr "" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:430 +#: shared/web/calendaring.py:70 msgid "xJuly" msgstr "" diff --git a/po/glasnost-web/fi.po b/po/glasnost-web/fi.po index deea4fe4..cd125194 100644 --- a/po/glasnost-web/fi.po +++ b/po/glasnost-web/fi.po @@ -25,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: glasnost-web $Revision$\n" -"POT-Creation-Date: Wed Sep 24 21:17:49 2003\n" +"POT-Creation-Date: Wed Oct 1 18:00:09 2003\n" "PO-Revision-Date: 2002-03-29 20:28+0100\n" "Last-Translator: Adam Huuva \n" "Language-Team: Finnish \n" @@ -34,7 +34,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.1\n" -#: shared/common/VirtualHostsCommon.py:207 +#: shared/common/VirtualHostsCommon.py:226 msgid "Virtual Hosts" msgstr "" @@ -46,6 +46,10 @@ msgstr "Mime-tyyppi" msgid "Liberty Alliance Server" msgstr "" +#: shared/common/AtomsCommon.py:79 +msgid "atoms" +msgstr "atomit" + #: shared/web/geography.py:150 msgid "Sri Lanka" msgstr "" @@ -58,11 +62,11 @@ msgstr "" msgid "Yugoslavia" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:136 +#: shared/web/AuthenticationLoginPasswordWeb.py:140 msgid "Enter the password." msgstr "" -#: shared/common/kinds.py:111 +#: shared/common/kinds.py:113 #, fuzzy msgid "Private" msgstr "Luo" @@ -72,11 +76,11 @@ msgstr "Luo" msgid "New Translation" msgstr "Kääntäjät" -#: shared/common/kinds.py:1971 +#: shared/common/kinds.py:2032 msgid "Sequence" msgstr "" -#: shared/web/GlasnostTALGenerator.py:98 +#: shared/web/GlasnostTALGenerator.py:101 talTranslations.py:4 msgid "You are not logged in" msgstr "" @@ -84,7 +88,7 @@ msgstr "" msgid "Secret Ballot" msgstr "Salainen äänestyslippu" -#: shared/web/AuthenticationLoginPasswordWeb.py:341 +#: shared/web/AuthenticationLoginPasswordWeb.py:347 #, fuzzy msgid "Changing User Password" msgstr "Vaihda salasana" @@ -94,19 +98,15 @@ msgstr "Vaihda salasana" msgid "Enter your nickname (optional)." msgstr "Kääntäjät" -#: shared/web/PeopleWeb.py:91 -msgid "Nickname" -msgstr "Lempinimi" - #: shared/web/geography.py:92 msgid "Cyprus" msgstr "" -#: shared/common/kinds.py:193 shared/common/kinds.py:2591 +#: shared/common/kinds.py:195 shared/common/kinds.py:2654 msgid "Same As Edition Mode" msgstr "" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:434 +#: shared/web/calendaring.py:71 #, fuzzy msgid "xNovember" msgstr "Ei-jäsen" @@ -115,12 +115,11 @@ msgstr "Ei-j msgid "Check Box" msgstr "" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 -#, fuzzy -msgid "April" -msgstr "Artikkeli" +#: shared/common/scripts.py:66 +msgid "Execute On Submit" +msgstr "" -#: shared/common/kinds.py:2991 +#: shared/common/kinds.py:3068 #, fuzzy msgid "User Token" msgstr "Äänestäjäpoletti" @@ -130,12 +129,12 @@ msgstr " msgid "Are you sure you want to delete the %s?" msgstr "Haluatko varmasti poistaa kohteen?" -#: shared/common/CardsCommon.py:70 shared/common/kinds.py:1061 +#: shared/common/CardsCommon.py:70 shared/common/kinds.py:1077 #, fuzzy msgid "Fields" msgstr "Tiedostot" -#: shared/common/xhtmlgenerator.py:73 +#: shared/common/xhtmlgenerator.py:77 msgid "Edit" msgstr "Editoi" @@ -144,7 +143,7 @@ msgstr "Editoi" msgid "New Heading" msgstr "Uusi sijoitus" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 +#: shared/web/calendaring.py:60 msgid "February" msgstr "" @@ -152,14 +151,14 @@ msgstr "" msgid "Liberia" msgstr "" -#: shared/common/kinds.py:2569 +#: shared/common/kinds.py:2632 msgid "Structure" msgstr "" #: shared/common/AuthenticationLoginPasswordCommon.py:64 -#: shared/common/kinds.py:1872 shared/common/AuthenticationLdapCommon.py:63 +#: shared/common/kinds.py:1900 shared/common/AuthenticationLdapCommon.py:63 #: shared/web/AuthenticationLoginPasswordWeb.py:67 -#: shared/web/AuthenticationLoginPasswordWeb.py:139 +#: shared/web/AuthenticationLoginPasswordWeb.py:143 msgid "Password" msgstr "Salasana" @@ -183,15 +182,24 @@ msgstr "Atomit" msgid "Never" msgstr "Ei koskaan" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 +#: shared/web/calendaring.py:61 msgid "May" msgstr "" +#: talTranslations.py:7 +#, fuzzy +msgid "Sessions" +msgstr "äänestykset" + #: shared/web/TranslationsWeb.py:140 msgid "From " msgstr "" -#: shared/common/kinds.py:87 +#: shared/common/kinds.py:1988 +msgid "Script Source Code" +msgstr "" + +#: shared/common/kinds.py:89 #, fuzzy msgid "Containers" msgstr "Yhteydet" @@ -204,7 +212,7 @@ msgstr "tiedosto" msgid "Needed" msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Thursday" msgstr "" @@ -212,12 +220,7 @@ msgstr "" msgid "Bhutan" msgstr "" -#: shared/common/GroupsCommon.py:279 -#, fuzzy -msgid "Select the items to intersect." -msgstr "Valitse lisättävä ehdokas" - -#: shared/common/kinds.py:2835 shared/web/GroupsWeb.py:90 +#: shared/common/kinds.py:2907 shared/web/GroupsWeb.py:90 #, fuzzy msgid "Union" msgstr "Tuntematon" @@ -239,7 +242,7 @@ msgstr "Editointiaika" msgid "Burundi" msgstr "" -#: shared/common/kinds.py:269 +#: shared/common/kinds.py:271 msgid "Preformatted Text" msgstr "" @@ -247,7 +250,16 @@ msgstr "" msgid "IP Address" msgstr "" -#: shared/common/kinds.py:1345 +#: talTranslations.py:19 +#, fuzzy +msgid "Navigation" +msgstr "Kääntäjät" + +#: talTranslations.py:16 +msgid ", l'entreprise ouverte" +msgstr "" + +#: shared/common/kinds.py:1361 #, fuzzy msgid "Select the language used to fill in this card." msgstr "Valitse lisättävä ehdokas" @@ -268,8 +280,8 @@ msgstr "" msgid "Bahamas" msgstr "" -#: shared/common/kinds.py:195 shared/common/kinds.py:213 -#: shared/common/kinds.py:231 shared/common/kinds.py:249 +#: shared/common/kinds.py:197 shared/common/kinds.py:215 +#: shared/common/kinds.py:233 shared/common/kinds.py:251 #, fuzzy msgid "Read Only" msgstr "Lukija" @@ -278,7 +290,7 @@ msgstr "Lukija" msgid "Grenada" msgstr "" -#: shared/common/kinds.py:956 +#: shared/common/kinds.py:972 #, fuzzy msgid "Date & Time Format" msgstr "Edellisen kirjoittautumisen aika" @@ -304,7 +316,7 @@ msgstr "Erot - %s" msgid "Debian Maintainers" msgstr "Debian ylläpitäjät" -#: shared/common/kinds.py:1966 +#: shared/common/kinds.py:2027 msgid "Minimum Number of Items" msgstr "" @@ -312,11 +324,11 @@ msgstr "" msgid "Losses" msgstr "Tappiot" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 +#: shared/web/calendaring.py:60 msgid "January" msgstr "" -#: shared/common/xhtmlgenerator.py:68 +#: shared/common/xhtmlgenerator.py:72 #, fuzzy msgid "Compute" msgstr "Katso lähdekoodi" @@ -325,7 +337,7 @@ msgstr "Katso l msgid "files" msgstr "tiedostot" -#: shared/common/kinds.py:3262 +#: shared/common/kinds.py:3368 #, fuzzy msgid "Widget Name" msgstr "Leveys" @@ -334,21 +346,20 @@ msgstr "Leveys" #: glasnost-web/about.py:124 glasnost-web/about.py:134 #: glasnost-web/about.py:154 shared/web/TranslationsWeb.py:165 #: shared/web/TranslationsWeb.py:712 shared/web/GradesWeb.py:85 -#: shared/web/widgets.py:142 shared/web/widgets.py:836 -#: shared/web/widgets.py:842 shared/web/VotesWeb.py:157 +#: shared/web/widgets.py:144 shared/web/widgets.py:833 +#: shared/web/widgets.py:839 shared/web/VotesWeb.py:157 #: shared/web/VotesWeb.py:244 msgid ":" msgstr ":" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/calendaring.py:63 #, fuzzy msgid "November" msgstr "Ei-jäsen" -#: shared/web/ElectionsWeb.py:135 -#, fuzzy -msgid "Approval" -msgstr "Käytä" +#: shared/web/TranslationsWeb.py:360 +msgid "Fuzzy" +msgstr "" #: shared/web/geography.py:85 #, fuzzy @@ -361,11 +372,11 @@ msgstr "Tiedosto" msgid "User" msgstr "Käyttäjä:" -#: shared/common/xhtmlgenerator.py:112 +#: shared/common/xhtmlgenerator.py:116 msgid "Vote Blank" msgstr "Tyhjä ääni" -#: shared/common/kinds.py:3179 +#: shared/common/kinds.py:3256 msgid "Output Connector" msgstr "" @@ -393,7 +404,7 @@ msgstr "%s asetuksien editointi" msgid "Belarus" msgstr "" -#: shared/web/AppointmentsWeb.py:312 +#: shared/web/AppointmentsWeb.py:298 msgid "Week %d of %d" msgstr "" @@ -423,7 +434,7 @@ msgstr "Asetukset" msgid "Election in progress" msgstr "Meneillä oleva äänestys" -#: shared/common/xhtmlgenerator.py:67 +#: shared/common/xhtmlgenerator.py:71 #, fuzzy msgid "Duplicate" msgstr "Sama arvo annettu kahdesti!" @@ -432,12 +443,12 @@ msgstr "Sama arvo annettu kahdesti!" msgid "Weightings" msgstr "Painot" -#: shared/common/VirtualHostsCommon.py:107 +#: shared/common/VirtualHostsCommon.py:124 #, fuzzy msgid "Enter the title of this virtual host." msgstr "Viimeiset artikkelit" -#: shared/common/VirtualHostsCommon.py:202 +#: shared/common/VirtualHostsCommon.py:221 #, fuzzy msgid "New Virtual Host" msgstr "Ääni - %s" @@ -460,7 +471,7 @@ msgstr "Luovutus" msgid "Select the items to subtract." msgstr "Valitse lisättävä ehdokas" -#: shared/common/xhtmlgenerator.py:103 +#: shared/common/xhtmlgenerator.py:107 #, fuzzy msgid "Use" msgstr "Käyttäjä:" @@ -474,24 +485,20 @@ msgstr "" msgid "Aliases" msgstr "Ratkaisemattomat" -#: shared/common/AppointmentsCommon.py:99 +#: talTranslations.py:18 +#, fuzzy +msgid "Calendar" +msgstr "Ehdokas" + +#: shared/common/AppointmentsCommon.py:94 #, fuzzy msgid "Enter the day of the appointment." msgstr "Viimeiset artikkelit" -#: shared/common/properties.py:53 -#, fuzzy -msgid "Select a field type" -msgstr "Valitse lisättävä ehdokas" - #: shared/web/geography.py:173 msgid "Mozambique" msgstr "" -#: shared/proxy/ObjectsProxy.py:1224 shared/proxy/ObjectsProxy.py:1281 -msgid " (at <%s>)" -msgstr "" - #: shared/web/geography.py:58 #, fuzzy msgid "Austria" @@ -510,14 +517,14 @@ msgstr "" msgid "Expiration Time" msgstr "Editointiaika" -#: shared/common/kinds.py:267 +#: shared/common/kinds.py:269 msgid "reStructuredText" msgstr "" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/ObjectsWeb.py:82 #, fuzzy -msgid "December" -msgstr "Jäsenet" +msgid "Version Number" +msgstr "Versio:" #: shared/web/ElectionsWeb.py:143 msgid "Voters" @@ -528,11 +535,11 @@ msgstr " msgid "Translation to %s" msgstr "Kääntäjät" -#: shared/common/xhtmlgenerator.py:80 +#: shared/common/xhtmlgenerator.py:84 msgid "Read the License" msgstr "Lue lisenssi" -#: shared/common/kinds.py:246 +#: shared/common/kinds.py:248 msgid "Viewing Mode" msgstr "" @@ -558,7 +565,7 @@ msgstr "suomen ja ruotsin kieli" msgid "History - %s" msgstr "Historiikka - %s" -#: shared/common/kinds.py:2982 +#: shared/common/kinds.py:3059 #, fuzzy msgid "Application Token" msgstr "Äänestyspoletti" @@ -568,17 +575,17 @@ msgstr " msgid "Sweden" msgstr "Ruotsi" -#: shared/common/kinds.py:2652 +#: shared/common/kinds.py:2715 #, fuzzy msgid "Thing" msgstr "otsikko" -#: shared/common/kinds.py:161 +#: shared/common/kinds.py:163 #, fuzzy msgid "Translatable" msgstr "Kääntäjät" -#: shared/common/kinds.py:2911 shared/common/kinds.py:2913 +#: shared/common/kinds.py:2983 shared/common/kinds.py:2985 msgid "Creation Time" msgstr "Luotu" @@ -586,10 +593,6 @@ msgstr "Luotu" msgid "%(from)s to %(to)s Translators" msgstr "" -#: shared/common/GroupsCommon.py:406 -msgid "group" -msgstr "ryhmä" - #: shared/web/geography.py:197 msgid "Saudi Arabia" msgstr "" @@ -599,12 +602,12 @@ msgstr "" msgid "Intersection" msgstr "Kääntäjät" -#: shared/common/kinds.py:2968 +#: shared/common/kinds.py:3045 #, fuzzy msgid "Token" msgstr "Äänipoletti" -#: shared/common/AppointmentsCommon.py:104 +#: shared/common/AppointmentsCommon.py:99 #, fuzzy msgid "Enter a title for this appointment." msgstr "Viimeiset artikkelit" @@ -613,7 +616,7 @@ msgstr "Viimeiset artikkelit" msgid "Year Minimum Value" msgstr "" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:432 +#: shared/web/calendaring.py:70 #, fuzzy msgid "xSeptember" msgstr "Jäsenet" @@ -628,11 +631,11 @@ msgstr "Uloskirjaus" msgid "Members Types" msgstr "Mime-tyyppi" -#: shared/web/GlasnostTALGenerator.py:100 +#: shared/web/GlasnostTALGenerator.py:103 talTranslations.py:10 msgid "All Objects" msgstr "Kaikki kohteet" -#: shared/common/kinds.py:1865 +#: shared/common/kinds.py:1893 #, fuzzy msgid "Enter Twice" msgstr "Äänestäjien valinta" @@ -645,12 +648,12 @@ msgstr "Viimeiset j msgid "grading" msgstr "sijoitus" -#: shared/web/AuthenticationLoginPasswordWeb.py:94 +#: shared/web/AuthenticationLoginPasswordWeb.py:97 #, fuzzy msgid "Current Password" msgstr "Vaihda salasana" -#: shared/web/kinds.py:1351 +#: shared/web/kinds.py:1352 #, fuzzy msgid "Default Values" msgstr "Standardiryhmä" @@ -669,11 +672,11 @@ msgstr "Tiedosto" msgid "New Grade" msgstr "Uusi sijoitus" -#: shared/common/xhtmlgenerator.py:85 +#: shared/common/xhtmlgenerator.py:89 msgid "New" msgstr "Uusi" -#: shared/common/xhtmlgenerator.py:92 +#: shared/common/xhtmlgenerator.py:96 #, fuzzy msgid "Pretion" msgstr "Presidenttivaali" @@ -729,18 +732,20 @@ msgstr "Ruotsi" msgid "GnuPG Fingerprint" msgstr "GnuPG sormenjälki" -#: shared/common/xhtmlgenerator.py:77 +#: shared/common/xhtmlgenerator.py:81 msgid "Find" msgstr "Haku" -#: shared/web/VirtualHostsWeb.py:73 +#: shared/common/VirtualHostsCommon.py:99 #, fuzzy msgid "Web Host Name" msgstr "Sukunimi" -#: shared/web/ForumsWeb.py:195 -msgid "Replies List" -msgstr "" +#: shared/web/CardsWeb.py:229 shared/web/ObjectsWeb.py:366 +#: shared/web/VotesWeb.py:710 shared/web/UploadFilesWeb.py:227 +#, fuzzy +msgid "Editing %s - %s" +msgstr "Henkilön editointi - %s" #: shared/common/widgets.py:375 #, fuzzy @@ -754,7 +759,7 @@ msgid "" "be displayed." msgstr "" -#: shared/common/xhtmlgenerator.py:69 +#: shared/common/xhtmlgenerator.py:73 msgid "Create" msgstr "Luo" @@ -784,7 +789,7 @@ msgstr "Viimeiset artikkelit" msgid "Links" msgstr "Linkit" -#: shared/common/xhtmlgenerator.py:87 +#: shared/common/xhtmlgenerator.py:91 msgid "OK" msgstr "OK" @@ -792,7 +797,7 @@ msgstr "OK" msgid "Albania" msgstr "" -#: shared/common/kinds.py:3221 shared/common/instructions.py:294 +#: shared/common/kinds.py:3327 shared/common/instructions.py:294 msgid "Value Holder" msgstr "" @@ -819,7 +824,7 @@ msgstr "" msgid "New Zealand" msgstr "Uusi otsikko" -#: shared/common/xhtmlgenerator.py:210 +#: shared/common/xhtmlgenerator.py:303 msgid "Missing Object (%s)" msgstr "" @@ -837,7 +842,7 @@ msgstr "Poistetut msgid "Error!" msgstr "Vika!" -#: shared/common/xhtmlgenerator.py:89 +#: shared/common/xhtmlgenerator.py:93 #, fuzzy msgid "Post a Comment" msgstr "Kommentti" @@ -846,7 +851,7 @@ msgstr "Kommentti" msgid "Wins" msgstr "Voitot" -#: shared/web/AuthenticationLoginPasswordWeb.py:112 +#: shared/web/AuthenticationLoginPasswordWeb.py:115 #, fuzzy msgid "New Password (Confirmation)" msgstr "Salasana" @@ -856,7 +861,7 @@ msgstr "Salasana" msgid "Oman" msgstr "saksa" -#: shared/common/xhtmlgenerator.py:95 +#: shared/common/xhtmlgenerator.py:99 #, fuzzy msgid "Refuse" msgstr "Tulokset" @@ -881,7 +886,7 @@ msgstr "%s asetuksien editointi" msgid "New Election" msgstr "äänestys" -#: shared/common/kinds.py:1295 +#: shared/common/kinds.py:1311 msgid "Minimum Value" msgstr "" @@ -895,7 +900,7 @@ msgid "" "mails." msgstr "" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 #, fuzzy msgid "Friday" msgstr "Haku" @@ -909,11 +914,11 @@ msgstr " msgid "DocBook Source - %s" msgstr "DocBook lähde - %s" -#: shared/common/kinds.py:309 +#: shared/common/kinds.py:311 msgid "Internal" msgstr "" -#: shared/common/xhtmlgenerator.py:94 +#: shared/common/xhtmlgenerator.py:98 msgid "Submit For Evaluation" msgstr "Ehdota vahvistukseen" @@ -921,17 +926,17 @@ msgstr "Ehdota vahvistukseen" msgid "Analyze" msgstr "Analyysi" -#: shared/common/VirtualHostsCommon.py:53 +#: shared/common/VirtualHostsCommon.py:54 #, fuzzy msgid "Select the default virtual host to use on this server" msgstr "Viimeiset hoidettavat tiedostot" -#: shared/web/AuthenticationLoginPasswordWeb.py:426 +#: shared/web/AuthenticationLoginPasswordWeb.py:432 #, fuzzy msgid "Change password for user:" msgstr "Vaihda salasana" -#: shared/common/xhtmlgenerator.py:79 +#: shared/common/xhtmlgenerator.py:83 #, fuzzy msgid "New Implementation" msgstr "Uusi järjestö" @@ -940,7 +945,7 @@ msgstr "Uusi j msgid "Specified path is not a file!" msgstr "Ilmoitettu hakutie ei osoita tiedostoa!" -#: shared/common/kinds.py:2148 +#: shared/common/kinds.py:2209 #, fuzzy msgid "Choose the user(s) of this object." msgstr "Päätettyjen äänestyksien äänet" @@ -960,10 +965,6 @@ msgid "" "\"?" msgstr "Haluatko varmasti lähettää salasanan e-postitse osoitteeseen %s?" -#: shared/web/geography.py:137 -msgid "Kyrgyzstan" -msgstr "" - #: shared/common/widgets.py:198 msgid "Amount Entry Field" msgstr "" @@ -1023,7 +1024,7 @@ msgstr "Viimeiset artikkelit" msgid "Instruction" msgstr "Kääntäjät" -#: shared/web/widgets.py:633 +#: shared/web/widgets.py:630 msgid "undefined" msgstr "" @@ -1035,16 +1036,16 @@ msgstr "" msgid "ID" msgstr "" -#: shared/web/AppointmentsWeb.py:214 +#: shared/web/AppointmentsWeb.py:200 #, fuzzy msgid "Day long appointments" msgstr "Sisältö" -#: shared/common/kinds.py:1302 +#: shared/common/kinds.py:1318 msgid "Integer Number" msgstr "" -#: shared/common/kinds.py:820 +#: shared/common/kinds.py:836 #, fuzzy msgid "Values" msgstr "Epäonnistui" @@ -1078,15 +1079,15 @@ msgstr "K msgid "Yemen" msgstr "Ei koskaan" -#: shared/common/kinds.py:2457 +#: shared/common/kinds.py:2520 msgid "Server Role" msgstr "" -#: shared/common/kinds.py:1041 +#: shared/common/kinds.py:1057 msgid "Email Address" msgstr "" -#: shared/common/VirtualHostsCommon.py:80 +#: shared/common/VirtualHostsCommon.py:82 msgid "" "Enter the Glasnost dispatcher id for this virtual host (you may have to " "consult your administrator)." @@ -1100,8 +1101,8 @@ msgstr "tyhj msgid "Mauritania" msgstr "" -#: shared/common/kinds.py:196 shared/common/kinds.py:214 -#: shared/common/kinds.py:232 shared/common/kinds.py:250 +#: shared/common/kinds.py:198 shared/common/kinds.py:216 +#: shared/common/kinds.py:234 shared/common/kinds.py:252 msgid "Read Only / Hidden If Empty" msgstr "" @@ -1118,17 +1119,11 @@ msgstr "L msgid "Editing Global Settings" msgstr "%s asetuksien editointi" -#: shared/web/ObjectsWeb.py:366 shared/web/VotesWeb.py:710 -#: shared/web/UploadFilesWeb.py:223 -#, fuzzy -msgid "Editing %s - %s" -msgstr "Henkilön editointi - %s" - #: shared/web/ElectionsWeb.py:90 msgid "One-Time" msgstr "Kertaäänestys" -#: shared/common/kinds.py:108 +#: shared/common/kinds.py:110 msgid "Import / Export" msgstr "" @@ -1162,6 +1157,10 @@ msgstr "Luku" msgid "Time Entry Field" msgstr "Tiedosto" +#: shared/common/scripts.py:78 +msgid "Output Console" +msgstr "" + #: shared/web/AuthenticationLoginPasswordWeb.py:70 #, fuzzy msgid "User Choice" @@ -1175,16 +1174,20 @@ msgstr "" msgid "Israel" msgstr "" +#: shared/web/ElectionsWeb.py:353 shared/web/ElectionsWeb.py:369 +msgid "secret" +msgstr "salainen" + #: shared/common/PeopleCommon.py:90 msgid "Enter the first name." msgstr "" -#: shared/common/widgets.py:479 +#: shared/common/widgets.py:489 msgid "URL Entry Field" msgstr "" -#: shared/common/kinds.py:194 shared/common/kinds.py:212 -#: shared/common/kinds.py:230 shared/common/kinds.py:248 +#: shared/common/kinds.py:196 shared/common/kinds.py:214 +#: shared/common/kinds.py:232 shared/common/kinds.py:250 #, fuzzy msgid "Hidden" msgstr "Tiedosto" @@ -1246,7 +1249,7 @@ msgstr "Prosenttia" msgid "The last short news to administer" msgstr "Viimeiset hoidettavat lyhytuutiset" -#: shared/common/kinds.py:210 +#: shared/common/kinds.py:212 #, fuzzy msgid "Edition Mode" msgstr "Editointiaika" @@ -1265,12 +1268,12 @@ msgstr "Koko" msgid "Barbados" msgstr "Luvut" -#: shared/common/kinds.py:670 +#: shared/common/kinds.py:686 #, fuzzy msgid "Any" msgstr "Analyysi" -#: shared/common/ForumsCommon.py:102 +#: shared/common/ForumsCommon.py:102 talTranslations.py:1 #, fuzzy msgid "Forums" msgstr "Muoto" @@ -1280,7 +1283,7 @@ msgstr "Muoto" msgid "Taiwan" msgstr "Tiedosto" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 #, fuzzy msgid "September" msgstr "Jäsenet" @@ -1305,15 +1308,15 @@ msgstr "" msgid "Nicaragua" msgstr "" -#: shared/web/UploadFilesWeb.py:429 +#: shared/web/UploadFilesWeb.py:433 msgid "Your last files" msgstr "Viimeiset tiedostosi" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:429 +#: shared/web/calendaring.py:69 msgid "xJune" msgstr "" -#: shared/common/kinds.py:146 +#: shared/common/kinds.py:148 #, fuzzy msgid "Mandatory" msgstr "Kääntäjät" @@ -1322,7 +1325,7 @@ msgstr "K msgid "Public Ballot" msgstr "Avoin äänestyslippu" -#: shared/common/kinds.py:113 +#: shared/common/kinds.py:115 #, fuzzy msgid "To Server Only" msgstr "Ei koskaan" @@ -1331,7 +1334,7 @@ msgstr "Ei koskaan" msgid "Heading" msgstr "Otsikko" -#: shared/common/kinds.py:2490 +#: shared/common/kinds.py:2553 #, fuzzy msgid "Slot Name" msgstr "Etunimi" @@ -1345,8 +1348,8 @@ msgstr "Uusi" msgid "Winners Count" msgstr "Voittajien määrä" -#: shared/web/CardsWeb.py:343 shared/web/VotesWeb.py:708 -#: shared/web/UploadFilesWeb.py:221 +#: shared/web/CardsWeb.py:406 shared/web/VotesWeb.py:708 +#: shared/web/UploadFilesWeb.py:225 #, fuzzy msgid "New %s" msgstr "Uusi" @@ -1355,11 +1358,12 @@ msgstr "Uusi" msgid "Reverse Year Order?" msgstr "" -#: shared/common/kinds.py:2091 +#: shared/common/kinds.py:2152 msgid "Accepted Types" msgstr "" #: shared/common/ElectionsCommon.py:254 shared/web/ElectionsWeb.py:882 +#: talTranslations.py:9 msgid "Elections" msgstr "Äänestykset" @@ -1386,22 +1390,23 @@ msgstr "Arviointiin ehdotettu" msgid "Georgia" msgstr "Saksa" -#: shared/common/xhtmlgenerator.py:106 +#: shared/common/xhtmlgenerator.py:110 #, fuzzy msgid "Definition" msgstr "äänestys" -#: shared/common/CardsCommon.py:347 +#: shared/common/CardsCommon.py:392 #, fuzzy msgid "Card" msgstr "Luo" -#: shared/common/kinds.py:2197 shared/common/kinds.py:2201 +#: shared/common/kinds.py:2258 shared/common/kinds.py:2264 #, fuzzy msgid "Properties" msgstr "järjestöt" -#: shared/common/UploadFilesCommon.py:137 shared/web/UploadFilesWeb.py:440 +#: shared/common/UploadFilesCommon.py:137 shared/web/UploadFilesWeb.py:444 +#: talTranslations.py:15 msgid "Files" msgstr "Tiedostot" @@ -1418,6 +1423,10 @@ msgstr "ryhm msgid "Active" msgstr "Artikkeli" +#: shared/common/scripts.py:74 +msgid "Execute On View" +msgstr "" + #: shared/common/GroupsCommon.py:409 msgid "Groups" msgstr "Ryhmät" @@ -1430,11 +1439,12 @@ msgstr "artikkelit" msgid "Added to slot" msgstr "" -#: shared/web/ElectionsWeb.py:353 shared/web/ElectionsWeb.py:369 -msgid "secret" -msgstr "salainen" +#: shared/common/widgets.py:418 +#, fuzzy +msgid "Others Button" +msgstr "Avoin äänestyslippu" -#: shared/web/AuthenticationLoginPasswordWeb.py:103 +#: shared/web/AuthenticationLoginPasswordWeb.py:106 #, fuzzy msgid "New Password" msgstr "Salasana" @@ -1447,7 +1457,7 @@ msgstr "" msgid "Armenia" msgstr "" -#: shared/common/AppointmentsCommon.py:177 +#: shared/common/AppointmentsCommon.py:172 #, fuzzy msgid "Appointment" msgstr "Sisältö" @@ -1456,25 +1466,29 @@ msgstr "Sis msgid "Kind of Ballots" msgstr "Äänestyslippujen tyyppi" -#: shared/common/kinds.py:2109 shared/common/kinds.py:2113 +#: shared/common/kinds.py:2170 shared/common/kinds.py:2174 #, fuzzy msgid "Argument Pins" msgstr "Luovutus" -#: shared/common/AppointmentsCommon.py:179 +#: shared/common/AppointmentsCommon.py:174 #, fuzzy msgid "Appointments" msgstr "Sisältö" -#: shared/common/xhtmlgenerator.py:93 +#: shared/common/xhtmlgenerator.py:97 msgid "Preview" msgstr "" -#: shared/common/kinds.py:104 shared/common/widgets.py:80 +#: shared/common/kinds.py:106 shared/common/widgets.py:80 #, fuzzy msgid "Hide Field Label" msgstr "Etunimi" +#: shared/web/calendaring.py:57 +msgid "Tuesday" +msgstr "" + #: shared/web/ForumsWeb.py:294 #, fuzzy msgid "Subjects" @@ -1498,9 +1512,9 @@ msgstr "" msgid "New Short Article" msgstr "Lyhytuutinen" -#: shared/web/PeopleWeb.py:80 -msgid "Last Name" -msgstr "Sukunimi" +#: shared/web/geography.py:184 +msgid "Panama" +msgstr "" #: shared/web/geography.py:115 msgid "Guinea" @@ -1522,7 +1536,7 @@ msgstr "" msgid "Yes" msgstr "" -#: shared/common/kinds.py:110 +#: shared/common/kinds.py:112 msgid "From Server Only" msgstr "" @@ -1539,7 +1553,7 @@ msgstr "" msgid "Duration Entry Field" msgstr "" -#: shared/common/kinds.py:708 shared/common/kinds.py:812 +#: shared/common/kinds.py:724 shared/common/kinds.py:828 #, fuzzy msgid "Titles" msgstr "Nimi" @@ -1549,7 +1563,7 @@ msgstr "Nimi" msgid "Malaysia" msgstr "Epäonnistui" -#: shared/web/AppointmentsWeb.py:635 shared/web/widgets.py:502 +#: shared/web/AppointmentsWeb.py:627 shared/web/widgets.py:498 msgid "Month" msgstr "" @@ -1609,7 +1623,7 @@ msgstr "" msgid "Choose whether to crypt e-mails Glasnost sends to you." msgstr "" -#: shared/common/kinds.py:1426 +#: shared/common/kinds.py:1442 #, fuzzy msgid "Mapping" msgstr "Keskiarvo" @@ -1624,7 +1638,7 @@ msgstr "Ei koskaan" msgid "Login & Password" msgstr "Vaihda salasana" -#: shared/common/xhtmlgenerator.py:98 +#: shared/common/xhtmlgenerator.py:102 talTranslations.py:5 msgid "Settings" msgstr "Asetukset" @@ -1637,7 +1651,7 @@ msgstr "Muoto" msgid "Bulgaria" msgstr "" -#: shared/common/xhtmlgenerator.py:60 +#: shared/common/xhtmlgenerator.py:64 #, fuzzy msgid "Add Article" msgstr "Artikkeli" @@ -1646,11 +1660,10 @@ msgstr "Artikkeli" msgid "Developers" msgstr "Kehittäjät" -#: shared/common/kinds.py:3123 shared/common/instructions.py:316 -#: shared/common/values.py:53 +#: shared/common/AppointmentsCommon.py:63 #, fuzzy -msgid "Kind" -msgstr "Haku" +msgid "Select the group that holds categories for the appointments." +msgstr "Valitse lisättävä ehdokas" #: shared/web/ElectionsWeb.py:700 #, fuzzy @@ -1662,11 +1675,11 @@ msgstr "Vahvista salasanan l msgid "Translation Language" msgstr "Kieli" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "July" msgstr "" -#: shared/common/xhtmlgenerator.py:72 +#: shared/common/xhtmlgenerator.py:76 msgid "Download Glasnost" msgstr "Lataa" @@ -1675,24 +1688,20 @@ msgstr "Lataa" msgid "Members" msgstr "Jäsenet" -#: shared/web/ObjectsWeb.py:82 -#, fuzzy -msgid "Version Number" -msgstr "Versio:" - -#: shared/web/AppointmentsWeb.py:82 +#: shared/web/AppointmentsWeb.py:84 msgid "Select the people and groups who are assigned to this appointment." msgstr "" -#: shared/common/xhtmlgenerator.py:91 shared/common/PreferencesCommon.py:117 +#: shared/common/xhtmlgenerator.py:95 shared/common/PreferencesCommon.py:117 #: shared/common/PreferencesCommon.py:119 shared/web/PreferencesWeb.py:191 msgid "Preferences" msgstr "Asetukset" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:426 -#, fuzzy -msgid "xMarch" -msgstr "Lukija" +#: shared/common/kinds.py:822 shared/web/GradesWeb.py:125 +#: shared/web/VotesWeb.py:421 shared/web/VotesWeb.py:465 +#: shared/web/VotesWeb.py:525 shared/web/VotesWeb.py:583 +msgid "Choice" +msgstr "Valinta" #: shared/common/PeopleCommon.py:78 msgid "Enter the e-mail address." @@ -1727,12 +1736,12 @@ msgstr "" msgid "Malawi" msgstr "" -#: shared/common/xhtmlgenerator.py:90 +#: shared/common/xhtmlgenerator.py:94 #, fuzzy msgid "Reply" msgstr "Käytä" -#: shared/web/CardsWeb.py:248 +#: shared/web/CardsWeb.py:313 #, fuzzy msgid "Editing Definition of Card \"%s\"" msgstr "Äänen muokkaus - %s" @@ -1751,7 +1760,7 @@ msgstr " msgid "Winners" msgstr "Voittaja(t)" -#: shared/common/xhtmlgenerator.py:100 +#: shared/common/xhtmlgenerator.py:104 #, fuzzy msgid "Source" msgstr "Katso lähdekoodi" @@ -1761,12 +1770,12 @@ msgstr "Katso l msgid "France" msgstr "Ranska" -#: shared/common/kinds.py:307 +#: shared/common/kinds.py:309 #, fuzzy msgid "Storage" msgstr "Tila" -#: shared/common/xhtmlgenerator.py:102 +#: shared/common/xhtmlgenerator.py:106 #, fuzzy msgid "Update Translation" msgstr "Kääntäjät" @@ -1783,6 +1792,10 @@ msgstr "Sijoitus" msgid "Candidates One-on-One Comparison" msgstr "Ehdokkaiden parittainen vertailu" +#: shared/common/xhtmlgenerator.py:78 +msgid "Edit Arguments" +msgstr "" + #: shared/web/geography.py:52 msgid "Afghanistan" msgstr "" @@ -1799,16 +1812,21 @@ msgstr "Versio - %s" msgid "Select the objects that are parts of this heading." msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:176 +#: shared/web/calendaring.py:63 +#, fuzzy +msgid "December" +msgstr "Jäsenet" + +#: shared/web/AuthenticationLoginPasswordWeb.py:180 #, fuzzy msgid "Authentication (Login/Password) Settings" msgstr "%s asetuksien editointi" -#: shared/common/kinds.py:692 shared/common/kinds.py:797 +#: shared/common/kinds.py:708 shared/common/kinds.py:813 msgid "Check the box to sort labels alphabetically" msgstr "" -#: shared/common/AppointmentsCommon.py:78 +#: shared/common/AppointmentsCommon.py:73 #, fuzzy msgid "Enter the text of this appointment." msgstr "Viimeiset artikkelit" @@ -1855,11 +1873,11 @@ msgstr "Asetuksien editointi" msgid "Finnish" msgstr "Suomi" -#: shared/common/kinds.py:2097 +#: shared/common/kinds.py:2158 msgid "Accepted Roles" msgstr "" -#: shared/common/kinds.py:530 +#: shared/common/kinds.py:538 msgid "Maximum Number of Items" msgstr "" @@ -1868,7 +1886,7 @@ msgstr "" msgid "Maldives" msgstr "Epäonnistui" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Sunday" msgstr "" @@ -1877,7 +1895,7 @@ msgstr "" msgid "Argentina" msgstr "Luovutus" -#: shared/common/kinds.py:3075 +#: shared/common/kinds.py:3152 #, fuzzy msgid "Extended Choice" msgstr "Äänestäjien valinta" @@ -1887,7 +1905,7 @@ msgstr " msgid "Dispatcher" msgstr "Lataa" -#: shared/common/xhtmlgenerator.py:104 +#: shared/common/xhtmlgenerator.py:108 #, fuzzy msgid "Validate" msgstr "Ehdokas" @@ -1897,12 +1915,12 @@ msgid "" "Select the people and groups who are allowed to read items of this kind." msgstr "" -#: shared/web/widgets.py:1337 +#: shared/web/widgets.py:1342 #, fuzzy msgid "Others" msgstr "Äänestäjä" -#: shared/web/AppointmentsWeb.py:596 +#: shared/web/AppointmentsWeb.py:587 #, fuzzy msgid "Hour: %s - %s" msgstr "Henkilö - %s" @@ -1929,11 +1947,11 @@ msgstr "Kieli" msgid "French" msgstr "Ranska" -#: shared/common/xhtmlgenerator.py:83 +#: shared/common/xhtmlgenerator.py:87 msgid "Modify" msgstr "Muokkaa" -#: shared/web/AuthenticationLoginPasswordWeb.py:393 +#: shared/web/AuthenticationLoginPasswordWeb.py:399 #, fuzzy msgid "The account has been removed successfully." msgstr "Salasana lähetetty osoitteeseen %s!" @@ -1942,21 +1960,22 @@ msgstr "Salasana l msgid "Vote Token" msgstr "Äänipoletti" -#: shared/web/AuthenticationLoginPasswordWeb.py:435 +#: shared/web/AuthenticationLoginPasswordWeb.py:441 #, fuzzy msgid "Delete user:" msgstr "Poista" -#: shared/common/xhtmlgenerator.py:59 +#: shared/common/xhtmlgenerator.py:63 shared/common/xhtmlgenerator.py:219 +#: talTranslations.py:12 msgid "Add" msgstr "Lisää" -#: shared/web/ObjectsWeb.py:769 +#: shared/web/ObjectsWeb.py:775 #, fuzzy msgid "Search Results" msgstr "Tulokset" -#: shared/common/kinds.py:112 +#: shared/common/kinds.py:114 #, fuzzy msgid "Public" msgstr "Avoin äänestyslippu" @@ -1965,8 +1984,8 @@ msgstr "Avoin msgid "Enter the text of the document." msgstr "" -#: shared/common/xhtmlgenerator.py:74 -msgid "Edit Arguments" +#: shared/common/VirtualHostsCommon.py:120 +msgid "Template" msgstr "" #: shared/common/GroupsCommon.py:65 @@ -1981,8 +2000,8 @@ msgid "Authentication" msgstr "Luovutus" #: shared/common/widgets.py:204 shared/common/widgets.py:248 -#: shared/common/widgets.py:292 shared/common/widgets.py:423 -#: shared/common/widgets.py:475 shared/common/widgets.py:488 +#: shared/common/widgets.py:292 shared/common/widgets.py:433 +#: shared/common/widgets.py:485 shared/common/widgets.py:498 #: shared/web/UploadFilesWeb.py:115 shared/web/uploads.py:101 msgid "Width" msgstr "Leveys" @@ -2021,12 +2040,11 @@ msgstr "" msgid "system files" msgstr "järjestelmätiedostot" -#: shared/web/geography.py:221 -#, fuzzy -msgid "East Timor" -msgstr "Editoinut viimeisenä" +#: shared/common/ArticlesCommon.py:57 +msgid "Select the author(s) of the document." +msgstr "" -#: shared/common/kinds.py:2166 +#: shared/common/kinds.py:2227 #, fuzzy msgid "People Set" msgstr "Henkilöt" @@ -2036,12 +2054,12 @@ msgstr "Henkil msgid "South Africa" msgstr "Lyhytuutinen" -#: shared/common/widgets.py:438 +#: shared/common/widgets.py:448 msgid "View In Text Area" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:309 -#: shared/web/AuthenticationLoginPasswordWeb.py:375 +#: shared/web/AuthenticationLoginPasswordWeb.py:315 +#: shared/web/AuthenticationLoginPasswordWeb.py:381 #, fuzzy msgid "The password has been modified successfully." msgstr "Salasana lähetetty osoitteeseen %s!" @@ -2066,7 +2084,7 @@ msgstr " msgid "Enter the name of this alias (will be used in the URL)." msgstr "" -#: shared/common/kinds.py:702 +#: shared/common/kinds.py:718 msgid "Boolean" msgstr "" @@ -2074,6 +2092,10 @@ msgstr "" msgid "Switzerland" msgstr "" +#: talTranslations.py:11 +msgid "Back to home" +msgstr "" + #: shared/web/CommentsWeb.py:90 #, fuzzy msgid "Commented Item" @@ -2083,6 +2105,11 @@ msgstr "Kommentti" msgid "Enter an eventual nickname here." msgstr "" +#: talTranslations.py:8 +#, fuzzy +msgid "User:" +msgstr "Käyttäjä:" + #: shared/web/geography.py:102 msgid "Egypt" msgstr "" @@ -2091,7 +2118,7 @@ msgstr "" msgid "Honduras" msgstr "" -#: shared/common/xhtmlgenerator.py:58 +#: shared/common/xhtmlgenerator.py:62 msgid "Abstain" msgstr "Luovuta" @@ -2103,8 +2130,8 @@ msgstr "" msgid "Crypt Emails" msgstr "Kryptaa e-posti" -#: shared/common/xhtmlgenerator.py:81 -#: shared/web/AuthenticationLoginPasswordWeb.py:491 +#: shared/common/xhtmlgenerator.py:85 +#: shared/web/AuthenticationLoginPasswordWeb.py:496 #: shared/web/AuthenticationLdapWeb.py:205 msgid "Login" msgstr "Liittymätunnus" @@ -2114,7 +2141,7 @@ msgstr "Liittym msgid "Guyana" msgstr "Saksa" -#: shared/common/kinds.py:2617 +#: shared/common/kinds.py:2680 #, fuzzy msgid "Access in Utilization Mode" msgstr "Tunnistus" @@ -2141,7 +2168,7 @@ msgstr "kohde" msgid "Button" msgstr "Avoin äänestyslippu" -#: shared/common/kinds.py:3093 +#: shared/common/kinds.py:3170 #, fuzzy msgid "Fault" msgstr "Epäonnistui" @@ -2151,18 +2178,19 @@ msgstr "Ep msgid "Other Translations" msgstr "Kääntäjät" -#: shared/common/properties.py:62 shared/common/things.py:163 +#: shared/common/properties.py:65 shared/common/things.py:163 #: shared/web/AtomsWeb.py:60 shared/web/CommentsWeb.py:79 #: shared/web/GradesWeb.py:133 shared/web/GroupsWeb.py:94 #: shared/web/PageNamesWeb.py:65 shared/web/RubricsWeb.py:75 msgid "Name" msgstr "Nimi" -#: shared/web/CardsWeb.py:190 -msgid "Definition of Card \"%s\"" +#: shared/web/geography.py:137 +msgid "Kyrgyzstan" msgstr "" #: shared/common/ArticlesCommon.py:140 shared/web/ArticlesWeb.py:461 +#: talTranslations.py:2 msgid "Articles" msgstr "Artikkelit" @@ -2175,7 +2203,7 @@ msgstr "Jos mahdollista" msgid "Instructions" msgstr "Kääntäjät" -#: shared/web/UploadFilesWeb.py:436 +#: shared/web/UploadFilesWeb.py:440 msgid "The last files" msgstr "Viimeiset tiedostot" @@ -2184,7 +2212,7 @@ msgstr "Viimeiset tiedostot" msgid "Difference" msgstr "Katso erot" -#: shared/common/kinds.py:2632 +#: shared/common/kinds.py:2695 msgid "Access in Viewing Mode" msgstr "" @@ -2193,7 +2221,7 @@ msgstr "" msgid "Germany" msgstr "Saksa" -#: shared/common/VirtualHostsCommon.py:101 +#: shared/common/VirtualHostsCommon.py:116 msgid "Select the template (skin) to use for this host." msgstr "" @@ -2215,7 +2243,12 @@ msgstr "" msgid "Global Settings" msgstr "Asetukset" -#: shared/common/kinds.py:2162 shared/common/kinds.py:2168 +#: shared/web/calendaring.py:61 +#, fuzzy +msgid "April" +msgstr "Artikkeli" + +#: shared/common/kinds.py:2223 shared/common/kinds.py:2229 #, fuzzy msgid "Users" msgstr "Käyttäjä:" @@ -2257,7 +2290,7 @@ msgstr "" msgid "headings" msgstr "otsikot" -#: shared/common/kinds.py:3064 shared/common/kinds.py:3066 +#: shared/common/kinds.py:3141 shared/common/kinds.py:3143 msgid "Writers" msgstr "Editoijat" @@ -2279,7 +2312,7 @@ msgstr " msgid "Winners Grading" msgstr "Voittajien sijoitus" -#: shared/common/kinds.py:2289 shared/common/kinds.py:2293 +#: shared/common/kinds.py:2352 shared/common/kinds.py:2356 #, fuzzy msgid "Result Pins" msgstr "Tulokset" @@ -2293,27 +2326,24 @@ msgstr "Katso l msgid "Select the group new users will be automatically added to." msgstr "" -#: shared/web/geography.py:229 -msgid "United Kingdom" -msgstr "" +#: shared/web/geography.py:221 +#, fuzzy +msgid "East Timor" +msgstr "Editoinut viimeisenä" #: shared/web/TranslationsWeb.py:395 msgid "Original String" msgstr "" -#: shared/web/TranslationsWeb.py:360 -msgid "Fuzzy" -msgstr "" - #: shared/web/TranslationsWeb.py:375 msgid "Similar String" msgstr "" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Saturday" msgstr "" -#: shared/common/CardsCommon.py:348 +#: shared/common/CardsCommon.py:393 msgid "cards" msgstr "" @@ -2334,7 +2364,7 @@ msgstr "" msgid "Missing value!" msgstr "Puuttuva arvo!" -#: shared/common/kinds.py:172 +#: shared/common/kinds.py:174 #, fuzzy msgid "Field Label" msgstr "Etunimi" @@ -2369,7 +2399,7 @@ msgstr "" msgid "Ireland" msgstr "" -#: shared/common/xhtmlgenerator.py:78 +#: shared/common/xhtmlgenerator.py:82 #, fuzzy msgid "History" msgstr "Historiikka - %s" @@ -2383,7 +2413,7 @@ msgstr "" msgid "translation" msgstr "Kääntäjät" -#: shared/web/AuthenticationLoginPasswordWeb.py:465 +#: shared/web/AuthenticationLoginPasswordWeb.py:470 #: shared/web/AuthenticationLdapWeb.py:181 msgid "To access this part of the site, you need to sign in." msgstr "" @@ -2393,11 +2423,11 @@ msgstr "" msgid "Are you sure you want to delete the %s \"%s\" ?" msgstr "Haluatko varmasti poistaa kohteen?" -#: shared/common/kinds.py:3057 +#: shared/common/kinds.py:3134 msgid "Select the people and groups who are allowed to modify the item." msgstr "" -#: shared/common/xhtmlgenerator.py:111 +#: shared/common/xhtmlgenerator.py:115 msgid "Vote " msgstr "Äänestä " @@ -2410,11 +2440,11 @@ msgstr "Lis msgid "Gambia" msgstr "" -#: shared/common/kinds.py:1351 shared/common/kinds.py:1359 +#: shared/common/kinds.py:1367 shared/common/kinds.py:1375 msgid "Language" msgstr "Kieli" -#: shared/web/GlasnostTALGenerator.py:97 +#: shared/web/GlasnostTALGenerator.py:100 talTranslations.py:3 #, fuzzy msgid "Search" msgstr "Lukija" @@ -2423,9 +2453,9 @@ msgstr "Lukija" msgid "Blank Ballots:" msgstr "Tyhjiä äänilippuja:" -#: shared/common/kinds.py:804 shared/common/kinds.py:1189 -#: shared/common/kinds.py:1357 shared/common/kinds.py:1969 -#: shared/common/kinds.py:3206 +#: shared/common/kinds.py:820 shared/common/kinds.py:1205 +#: shared/common/kinds.py:1373 shared/common/kinds.py:2030 +#: shared/common/kinds.py:3283 shared/common/kinds.py:3312 #, fuzzy msgid "Data" msgstr "Tila" @@ -2442,7 +2472,7 @@ msgstr "" msgid "Ties" msgstr "Ratkaisemattomat" -#: shared/common/kinds.py:982 shared/common/widgets.py:224 +#: shared/common/kinds.py:998 shared/common/widgets.py:224 #: shared/web/ArticlesWeb.py:347 #, fuzzy msgid "Date" @@ -2460,8 +2490,8 @@ msgstr "" msgid "No options for this authentication method." msgstr "" -#: shared/common/kinds.py:197 shared/common/kinds.py:215 -#: shared/common/kinds.py:233 +#: shared/common/kinds.py:199 shared/common/kinds.py:217 +#: shared/common/kinds.py:235 #, fuzzy msgid "Read/Write" msgstr "Lukija" @@ -2471,12 +2501,12 @@ msgstr "Lukija" msgid "None Label" msgstr "Uusi käyttäjätili" -#: shared/common/xhtmlgenerator.py:76 +#: shared/common/xhtmlgenerator.py:80 #, fuzzy msgid "Every Article" msgstr "Uusi artikkeli" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 #, fuzzy msgid "Monday" msgstr "Yhteys" @@ -2501,21 +2531,30 @@ msgstr "" msgid "New Comment" msgstr "Kommentti" +#: shared/common/scripts.py:62 +msgid "Execute On Edit" +msgstr "" + #: shared/common/PreferencesCommon.py:78 msgid "Use Browser Settings" msgstr "Käytä selainasetuksia" -#: shared/web/AppointmentsWeb.py:77 +#: shared/web/calendaring.py:71 +#, fuzzy +msgid "xOctober" +msgstr "Äänestäjä" + +#: shared/web/AppointmentsWeb.py:79 #, fuzzy msgid "Categories" msgstr "Luku" -#: shared/web/AppointmentsWeb.py:84 +#: shared/web/AppointmentsWeb.py:86 #, fuzzy msgid "Participants" msgstr "artikkelit" -#: shared/web/AppointmentsWeb.py:86 +#: shared/web/AppointmentsWeb.py:88 #, fuzzy msgid "Start" msgstr "Tila" @@ -2545,11 +2584,11 @@ msgstr "" msgid "(%d words)" msgstr "" -#: shared/common/widgets.py:434 +#: shared/common/widgets.py:444 msgid "Multi-Line Text Entry Field" msgstr "" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:425 +#: shared/web/calendaring.py:68 msgid "xFebruary" msgstr "" @@ -2574,6 +2613,13 @@ msgstr "" msgid "Headings" msgstr "Otsikot" +#: shared/web/VotesWeb.py:94 shared/web/VotesWeb.py:142 +#: shared/web/VotesWeb.py:185 shared/web/VotesWeb.py:229 +#: shared/web/VotesWeb.py:428 shared/web/VotesWeb.py:472 +#: shared/web/VotesWeb.py:532 shared/web/VotesWeb.py:590 +msgid "Blank Vote" +msgstr "Tyhjä ääni" + #: shared/web/ForumsWeb.py:189 msgid "replies: %d" msgstr "" @@ -2582,7 +2628,7 @@ msgstr "" msgid "Currency" msgstr "" -#: shared/common/kinds.py:1961 +#: shared/common/kinds.py:2022 #, fuzzy msgid "Item Type" msgstr "Mime-tyyppi" @@ -2599,10 +2645,6 @@ msgstr "Condorcet-menetelm msgid "Enter the title of the document." msgstr "" -#: shared/web/VirtualHostsWeb.py:78 -msgid "Template" -msgstr "" - #: shared/common/BrevesCommon.py:180 msgid "The election \"%s\" is closed." msgstr "Äänestys \"%s\" on päättynyt" @@ -2616,7 +2658,7 @@ msgstr "Henkil msgid "Chad" msgstr "Luo" -#: shared/common/kinds.py:1003 shared/web/VirtualHostsWeb.py:69 +#: shared/common/kinds.py:1019 shared/common/VirtualHostsCommon.py:88 #, fuzzy msgid "Glasnost Dispatcher ID" msgstr "Lataa" @@ -2625,20 +2667,19 @@ msgstr "Lataa" msgid "Angola" msgstr "" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:427 -#, fuzzy -msgid "xApril" -msgstr "Artikkeli" +#: shared/web/PeopleWeb.py:91 +msgid "Nickname" +msgstr "Lempinimi" -#: shared/common/kinds.py:2273 shared/common/kinds.py:2275 +#: shared/common/kinds.py:2336 shared/common/kinds.py:2338 msgid "Readers" msgstr "Lukijat" -#: shared/common/xhtmlgenerator.py:70 shared/web/ObjectsWeb.py:581 +#: shared/common/xhtmlgenerator.py:74 shared/web/ObjectsWeb.py:587 msgid "Delete" msgstr "Poista" -#: shared/common/CardsCommon.py:346 +#: shared/common/CardsCommon.py:391 msgid "card" msgstr "" @@ -2665,7 +2706,7 @@ msgstr "Meneill msgid "Tunisia" msgstr "" -#: shared/common/AppointmentsCommon.py:178 +#: shared/common/AppointmentsCommon.py:173 #, fuzzy msgid "appointments" msgstr "Sisältö" @@ -2675,9 +2716,10 @@ msgstr "Sis msgid "Every Type" msgstr "Mime-tyyppi" -#: shared/web/geography.py:168 -msgid "Mauritius" -msgstr "" +#: shared/web/calendaring.py:68 +#, fuzzy +msgid "xMarch" +msgstr "Lukija" #: shared/web/ElectionsWeb.py:541 msgid "" @@ -2691,7 +2733,7 @@ msgstr "" msgid "Indonesia" msgstr "" -#: shared/common/xhtmlgenerator.py:96 +#: shared/common/xhtmlgenerator.py:100 msgid "Send by Email" msgstr "Lähetä e-postitse" @@ -2701,10 +2743,15 @@ msgstr "" #: shared/common/widgets.py:388 shared/common/widgets.py:413 #: shared/web/TranslationsWeb.py:123 shared/web/TranslationsWeb.py:133 -#: shared/web/widgets.py:391 +#: shared/web/widgets.py:400 msgid "None" msgstr "Ei yksikään" +#: shared/common/scripts.py:87 +#, fuzzy +msgid "Source Code" +msgstr "Katso lähdekoodi" + #: shared/web/geography.py:227 msgid "Ukraine" msgstr "" @@ -2731,7 +2778,7 @@ msgstr "Artikkeli" msgid "China" msgstr "otsikko" -#: shared/common/kinds.py:94 +#: shared/common/kinds.py:96 #, fuzzy msgid "Default Value" msgstr "Standardiryhmä" @@ -2775,7 +2822,7 @@ msgstr "" msgid "Translations" msgstr "Kääntäjät" -#: shared/common/xhtmlgenerator.py:75 +#: shared/common/xhtmlgenerator.py:79 msgid "Evaluate" msgstr "" @@ -2789,7 +2836,7 @@ msgstr "" #: shared/common/AuthenticationLoginPasswordCommon.py:57 #: shared/common/AuthenticationLdapCommon.py:56 -#: shared/web/AuthenticationLoginPasswordWeb.py:131 +#: shared/web/AuthenticationLoginPasswordWeb.py:135 msgid "Username" msgstr "Käyttäjätunnus" @@ -2797,7 +2844,7 @@ msgstr "K msgid "Benin" msgstr "" -#: shared/common/kinds.py:1888 +#: shared/common/kinds.py:1921 msgid "Python Identifier" msgstr "" @@ -2805,7 +2852,7 @@ msgstr "" msgid " to " msgstr "" -#: shared/common/kinds.py:295 shared/common/xhtmlgenerator.py:108 +#: shared/common/kinds.py:297 shared/common/xhtmlgenerator.py:112 #: shared/common/properties.py:55 shared/web/GroupsWeb.py:85 msgid "Type" msgstr "Tyyppi" @@ -2824,11 +2871,11 @@ msgstr "Henkil msgid "Bermuda" msgstr "Saksa" -#: shared/common/kinds.py:78 +#: shared/common/kinds.py:80 msgid "Balloon Help" msgstr "" -#: shared/common/xhtmlgenerator.py:84 +#: shared/common/xhtmlgenerator.py:88 #, fuzzy msgid "Next" msgstr "Texti" @@ -2853,16 +2900,16 @@ msgstr "" msgid "Multi-Line Field" msgstr "" -#: shared/common/VirtualHostsCommon.py:205 +#: shared/common/VirtualHostsCommon.py:224 msgid "Virtual Host" msgstr "" -#: shared/web/AppointmentsWeb.py:79 +#: shared/web/AppointmentsWeb.py:81 #, fuzzy msgid "End" msgstr "Päättynyt" -#: shared/common/kinds.py:191 +#: shared/common/kinds.py:193 #, fuzzy msgid "Creation Mode" msgstr "Luotu" @@ -2876,7 +2923,7 @@ msgstr "%s Asetukset" msgid "Subject" msgstr "Aihe" -#: shared/common/kinds.py:229 shared/common/kinds.py:2619 +#: shared/common/kinds.py:231 shared/common/kinds.py:2682 msgid "Same As View Mode" msgstr "" @@ -2885,7 +2932,7 @@ msgstr "" msgid "Kenya" msgstr "Ei koskaan" -#: shared/common/kinds.py:1146 +#: shared/common/kinds.py:1162 #, fuzzy msgid "Function Name" msgstr "Etunimi" @@ -2902,7 +2949,7 @@ msgstr "Avoimet msgid "Best Average" msgstr "Paras keskiarvo" -#: shared/common/kinds.py:3136 +#: shared/common/kinds.py:3213 #, fuzzy msgid "Kind Name" msgstr "Etunimi" @@ -2927,7 +2974,7 @@ msgid "" msgstr "" #: shared/common/BrevesCommon.py:204 shared/web/tools.py:644 -#: shared/web/BrevesWeb.py:165 +#: shared/web/BrevesWeb.py:165 talTranslations.py:6 msgid "Short News" msgstr "Lyhytuutiset" @@ -2936,7 +2983,7 @@ msgstr "Lyhytuutiset" msgid "The last strings to leave untranslated" msgstr "Viimeiset päättyneet äänestykset" -#: shared/common/xhtmlgenerator.py:64 +#: shared/common/xhtmlgenerator.py:68 #, fuzzy msgid "Cancel" msgstr "Ranska" @@ -2959,7 +3006,7 @@ msgstr "" msgid "The election \"%s\"" msgstr "Äänestys \"%s\"" -#: shared/web/AppointmentsWeb.py:641 +#: shared/web/AppointmentsWeb.py:633 #, fuzzy msgid "Agenda" msgstr "Lukija" @@ -2998,10 +3045,14 @@ msgstr "" msgid "Number of Results" msgstr "" -#: shared/web/widgets.py:842 +#: shared/web/widgets.py:839 msgid "URL" msgstr "URL" +#: shared/common/scripts.py:70 +msgid "Execute On Use" +msgstr "" + #: shared/web/geography.py:230 #, fuzzy msgid "United States" @@ -3015,16 +3066,20 @@ msgstr "" msgid "System Files" msgstr "Järjestelmätiedostot" -#: shared/web/AuthenticationLoginPasswordWeb.py:100 +#: shared/web/AuthenticationLoginPasswordWeb.py:103 #, fuzzy msgid "Enter your new password." msgstr "Kääntäjät" +#: shared/web/geography.py:168 +msgid "Mauritius" +msgstr "" + #: shared/web/ElectionsWeb.py:870 msgid "Your last closed elections" msgstr "Viimeiset päättyneet äänestyksesi" -#: shared/common/kinds.py:1081 shared/web/SystemFilesWeb.py:71 +#: shared/common/kinds.py:1097 shared/web/SystemFilesWeb.py:71 msgid "Path" msgstr "Pääsytie" @@ -3054,16 +3109,16 @@ msgstr "" msgid "Authentication (LDAP)" msgstr "Luovutus" -#: shared/common/VirtualHostsCommon.py:206 +#: shared/common/VirtualHostsCommon.py:225 msgid "virtual hosts" msgstr "" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 -msgid "March" -msgstr "" +#: shared/common/GroupsCommon.py:406 +msgid "group" +msgstr "ryhmä" -#: shared/common/kinds.py:317 shared/common/kinds.py:3238 -#: shared/common/xhtmlgenerator.py:110 shared/common/widgets.py:102 +#: shared/common/kinds.py:319 shared/common/kinds.py:3344 +#: shared/common/xhtmlgenerator.py:114 shared/common/widgets.py:102 #, fuzzy msgid "Widget" msgstr "Leveys" @@ -3098,12 +3153,12 @@ msgstr "" " GNU:n Yleisestä Avoimesta Lisenssistä yksityiskohdat.\n" "

\n" -#: shared/web/AppointmentsWeb.py:55 +#: shared/web/AppointmentsWeb.py:57 #, fuzzy msgid "Categories Group" msgstr "Voittajien ryhmä" -#: shared/common/xhtmlgenerator.py:101 +#: shared/common/xhtmlgenerator.py:105 #, fuzzy msgid "Translate" msgstr "Kääntäjät" @@ -3112,12 +3167,17 @@ msgstr "K msgid "Guinea-Bissau" msgstr "" -#: shared/common/AppointmentsCommon.py:68 -#, fuzzy -msgid "Select the group that holds categories for the appointments." -msgstr "Valitse lisättävä ehdokas" +#: shared/web/PeopleWeb.py:273 +msgid "" +"The account has successfully been created, but a SMTP error has occurred.\n" +"Maybe the Mail Transport Agent on the Glasnost server is badly configured." +msgstr "" -#: glasnost-web/about.py:290 shared/common/xhtmlgenerator.py:57 +#: shared/web/CardsWeb.py:203 +msgid "Definition of Card \"%s\"" +msgstr "" + +#: glasnost-web/about.py:290 shared/common/xhtmlgenerator.py:61 #, fuzzy msgid "About Glasnost" msgstr "Lataa" @@ -3151,11 +3211,11 @@ msgstr "" msgid "Author" msgstr "Luoja" -#: shared/common/VirtualHostsCommon.py:204 +#: shared/common/VirtualHostsCommon.py:223 msgid "virtual host" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:91 +#: shared/web/AuthenticationLoginPasswordWeb.py:94 #, fuzzy msgid "Enter your current password." msgstr "Kääntäjät" @@ -3164,16 +3224,16 @@ msgstr "K msgid "Sao Tome and Principe" msgstr "" -#: shared/common/kinds.py:2173 +#: shared/common/kinds.py:2234 msgid "Choose the author(s) for this object." msgstr "" -#: shared/common/xhtmlgenerator.py:107 +#: shared/common/xhtmlgenerator.py:111 #, fuzzy msgid "List" msgstr "Linkit" -#: shared/common/xhtmlgenerator.py:62 +#: shared/common/xhtmlgenerator.py:66 msgid "Apply" msgstr "Käytä" @@ -3181,13 +3241,13 @@ msgstr "K msgid "Greece" msgstr "" -#: shared/common/kinds.py:3208 shared/common/UploadFilesCommon.py:135 +#: shared/common/kinds.py:3314 shared/common/UploadFilesCommon.py:135 #: shared/common/uploads.py:74 shared/web/UploadFilesWeb.py:76 #: shared/web/uploads.py:66 msgid "File" msgstr "Tiedosto" -#: shared/common/kinds.py:961 shared/common/kinds.py:963 +#: shared/common/kinds.py:977 shared/common/kinds.py:979 #, fuzzy msgid "Date & Time" msgstr "Edellisen kirjoittautumisen aika" @@ -3200,7 +3260,7 @@ msgstr "P msgid "Enter the name of this heading." msgstr "" -#: shared/web/AppointmentsWeb.py:636 shared/web/widgets.py:488 +#: shared/web/AppointmentsWeb.py:628 shared/web/widgets.py:484 #, fuzzy msgid "Year" msgstr "Lukija" @@ -3209,14 +3269,14 @@ msgstr "Lukija" msgid "Results" msgstr "Tulokset" -#: shared/common/xhtmlgenerator.py:86 -#: shared/web/AuthenticationLoginPasswordWeb.py:405 -#: shared/web/AuthenticationLoginPasswordWeb.py:589 +#: shared/common/xhtmlgenerator.py:90 +#: shared/web/AuthenticationLoginPasswordWeb.py:411 +#: shared/web/AuthenticationLoginPasswordWeb.py:584 #: shared/web/PeopleWeb.py:159 msgid "New Account" msgstr "Uusi käyttäjätili" -#: shared/common/xhtmlgenerator.py:97 +#: shared/common/xhtmlgenerator.py:101 msgid "Send Password by Email" msgstr "Lähetä salasana e-postitse" @@ -3259,11 +3319,11 @@ msgstr "" msgid "Japan" msgstr "" -#: shared/common/kinds.py:644 shared/common/PageNamesCommon.py:99 +#: shared/common/kinds.py:660 shared/common/PageNamesCommon.py:99 msgid "Alias" msgstr "" -#: shared/common/kinds.py:2589 +#: shared/common/kinds.py:2652 #, fuzzy msgid "Access in Creation Mode" msgstr "Luotu" @@ -3272,11 +3332,11 @@ msgstr "Luotu" msgid "Choose the persons or groups who will vote for this election." msgstr "" -#: shared/common/VirtualHostsCommon.py:88 +#: shared/common/VirtualHostsCommon.py:96 msgid "Enter the host name." msgstr "" -#: shared/common/CardsCommon.py:349 +#: shared/common/CardsCommon.py:394 #, fuzzy msgid "Cards" msgstr "Luvut" @@ -3307,6 +3367,10 @@ msgstr "" msgid "Botswana" msgstr "" +#: shared/web/ForumsWeb.py:195 +msgid "Replies List" +msgstr "" + #: shared/common/AtomsCommon.py:78 msgid "Atom" msgstr "Atomi" @@ -3323,12 +3387,12 @@ msgstr "" msgid "The last short news" msgstr "Viimeiset lyhytuutiset" -#: shared/common/widgets.py:395 shared/common/widgets.py:417 +#: shared/common/widgets.py:395 shared/common/widgets.py:421 #, fuzzy msgid "Option Menu" msgstr "Järjestö" -#: shared/web/AuthenticationLoginPasswordWeb.py:266 +#: shared/web/AuthenticationLoginPasswordWeb.py:270 #, fuzzy msgid "Changing Password" msgstr "Vaihda salasana" @@ -3341,11 +3405,10 @@ msgstr "" msgid "Format" msgstr "Muoto" -#: shared/web/PeopleWeb.py:273 -msgid "" -"The account has successfully been created, but a SMTP error has occurred.\n" -"Maybe the Mail Transport Agent on the Glasnost server is badly configured." -msgstr "" +#: shared/common/scripts.py:83 +#, fuzzy +msgid "TextArea" +msgstr "Texti" #: shared/common/UploadFilesCommon.py:64 #, fuzzy @@ -3366,7 +3429,7 @@ msgstr "Uusi henkil msgid "Suriname" msgstr "Lempinimi" -#: shared/web/VirtualHostsWeb.py:59 +#: shared/common/VirtualHostsCommon.py:56 #, fuzzy msgid "Default Virtual Host" msgstr "Ääni - %s" @@ -3380,7 +3443,7 @@ msgstr "P msgid "Kind of Ballot" msgstr "Äänestyslipun tyyppi" -#: shared/common/kinds.py:2078 +#: shared/common/kinds.py:2139 #, fuzzy msgid "Select accepted types of items." msgstr "Valitse lisättävä ehdokas" @@ -3406,7 +3469,7 @@ msgstr "Ilmoitettua hakutiet msgid "Palau" msgstr "Epäonnistui" -#: shared/common/xhtmlgenerator.py:99 +#: shared/common/xhtmlgenerator.py:103 msgid "Spell Check" msgstr "" @@ -3414,7 +3477,7 @@ msgstr "" msgid "ReStructured Text" msgstr "" -#: shared/common/widgets.py:492 +#: shared/common/widgets.py:502 msgid "Combo Box" msgstr "" @@ -3436,8 +3499,8 @@ msgstr "" "\n" "%s\n" -#: shared/common/kinds.py:700 shared/common/kinds.py:1127 -#: shared/common/kinds.py:1300 +#: shared/common/kinds.py:716 shared/common/kinds.py:1143 +#: shared/common/kinds.py:1316 #, fuzzy msgid "Numbers" msgstr "Ei-jäsen" @@ -3450,11 +3513,15 @@ msgstr "J msgid "Holy See (Vatican City State)" msgstr "" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:428 +#: shared/web/calendaring.py:69 msgid "xMay" msgstr "" -#: shared/common/widgets.py:431 shared/web/UploadFilesWeb.py:94 +#: shared/common/kinds.py:3285 +msgid "Script" +msgstr "" + +#: shared/common/widgets.py:441 shared/web/UploadFilesWeb.py:94 #: shared/web/uploads.py:84 msgid "Height" msgstr "Korkeus" @@ -3463,10 +3530,10 @@ msgstr "Korkeus" msgid "Lebanon" msgstr "" -#: shared/common/kinds.py:264 shared/common/kinds.py:1039 -#: shared/common/kinds.py:1113 shared/common/kinds.py:1870 -#: shared/common/kinds.py:2535 shared/common/kinds.py:2537 -#: shared/web/AppointmentsWeb.py:65 shared/web/BrevesWeb.py:63 +#: shared/common/kinds.py:266 shared/common/kinds.py:1055 +#: shared/common/kinds.py:1129 shared/common/kinds.py:1898 +#: shared/common/kinds.py:2598 shared/common/kinds.py:2600 +#: shared/web/AppointmentsWeb.py:67 shared/web/BrevesWeb.py:63 #: shared/web/CommentsWeb.py:68 shared/web/ArticlesWeb.py:67 #: shared/web/ArticlesWeb.py:83 msgid "Text" @@ -3476,7 +3543,7 @@ msgstr "Texti" msgid "German" msgstr "Saksa" -#: shared/web/widgets.py:548 +#: shared/web/widgets.py:545 #, fuzzy msgid "hour" msgstr "Luoja" @@ -3485,26 +3552,31 @@ msgstr "Luoja" msgid "Korea, Republic of" msgstr "" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:435 +#: shared/web/calendaring.py:71 #, fuzzy msgid "xDecember" msgstr "Jäsenet" -#: shared/web/geography.py:184 -msgid "Panama" +#: shared/web/calendaring.py:60 +msgid "March" msgstr "" -#: shared/common/kinds.py:262 +#: shared/common/kinds.py:264 #, fuzzy msgid "Text Format" msgstr "Muoto" -#: shared/common/kinds.py:1291 +#: shared/common/kinds.py:1307 #, fuzzy msgid "Maximum Value" msgstr "Standardiryhmä" -#: shared/common/kinds.py:695 shared/common/kinds.py:799 +#: shared/web/ElectionsWeb.py:135 +#, fuzzy +msgid "Approval" +msgstr "Käytä" + +#: shared/common/kinds.py:711 shared/common/kinds.py:815 #, fuzzy msgid "Sort Labels" msgstr "atomit" @@ -3537,7 +3609,7 @@ msgstr "Henkil msgid "Sudan" msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Wednesday" msgstr "" @@ -3553,13 +3625,13 @@ msgstr "" msgid "Denmark" msgstr "" -#: shared/common/kinds.py:2592 shared/common/kinds.py:2606 -#: shared/common/kinds.py:2620 shared/common/kinds.py:2634 +#: shared/common/kinds.py:2655 shared/common/kinds.py:2669 +#: shared/common/kinds.py:2683 shared/common/kinds.py:2697 #, fuzzy msgid "Embedded" msgstr "Päättynyt" -#: shared/web/widgets.py:547 +#: shared/web/widgets.py:544 msgid "day" msgstr "" @@ -3570,19 +3642,19 @@ msgid "" "the results to be displayed)" msgstr "" -#: shared/common/kinds.py:178 +#: shared/common/kinds.py:180 msgid "Label (plural form)" msgstr "" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/calendaring.py:63 msgid "October" msgstr "" -#: shared/common/kinds.py:268 shared/web/ArticlesWeb.py:82 +#: shared/common/kinds.py:270 shared/web/ArticlesWeb.py:82 msgid "SPIP" msgstr "SPIP" -#: shared/common/kinds.py:2266 +#: shared/common/kinds.py:2329 msgid "Select the people and groups who are allowed to read the item." msgstr "" @@ -3590,6 +3662,10 @@ msgstr "" msgid "Main Heading" msgstr "Pääotsikko" +#: shared/common/scripts.py:58 +msgid "Execute On Create" +msgstr "" + #: glasnost-web/sessions.py:101 shared/web/ElectionsWeb.py:85 msgid "End Time" msgstr "Loppuu" @@ -3603,11 +3679,11 @@ msgstr "Kohde" msgid "Being Written" msgstr "Toimituksen alla" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 +#: shared/web/calendaring.py:61 msgid "June" msgstr "" -#: shared/common/xhtmlgenerator.py:71 +#: shared/common/xhtmlgenerator.py:75 #, fuzzy msgid "Differences" msgstr "Katso erot" @@ -3620,15 +3696,15 @@ msgstr "Lyhytuutinen" msgid "GNU GENERAL PUBLIC LICENSE" msgstr "" -#: shared/common/kinds.py:1129 +#: shared/common/kinds.py:1145 msgid "Float Number" msgstr "" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "August" msgstr "" -#: shared/common/widgets.py:427 +#: shared/common/widgets.py:437 #, fuzzy msgid "Show Preview" msgstr "Poistetut artikkelit" @@ -3645,7 +3721,7 @@ msgstr "" msgid "forums" msgstr "" -#: shared/common/kinds.py:1952 +#: shared/common/kinds.py:2013 msgid "Minimum Number of Items to Edit" msgstr "" @@ -3658,7 +3734,7 @@ msgstr "P msgid "Spellcheck Entries" msgstr "" -#: shared/common/xhtmlgenerator.py:61 +#: shared/common/xhtmlgenerator.py:65 msgid "Add Candidate" msgstr "Lisää ehdokas" @@ -3667,14 +3743,22 @@ msgstr "Lis msgid "Australia" msgstr "Luovuta" -#: shared/common/xhtmlgenerator.py:82 +#: shared/common/xhtmlgenerator.py:86 talTranslations.py:13 msgid "Exit" msgstr "Poistu" -#: shared/web/AuthenticationLoginPasswordWeb.py:109 +#: shared/web/AuthenticationLoginPasswordWeb.py:112 msgid "Re-enter your new password." msgstr "" +#: shared/web/ElectionsWeb.py:113 +msgid "State" +msgstr "Tila" + +#: shared/web/geography.py:229 +msgid "United Kingdom" +msgstr "" + #: shared/common/widgets.py:208 msgid "Single-Line Text Entry Field" msgstr "" @@ -3691,7 +3775,7 @@ msgstr "Viimeiset j msgid "Kuwait" msgstr "" -#: shared/common/xhtmlgenerator.py:109 +#: shared/common/xhtmlgenerator.py:113 #, fuzzy msgid "Utilization" msgstr "Tunnistus" @@ -3709,7 +3793,7 @@ msgstr "Luku" msgid "Counting of the Votes" msgstr "Äänien laskenta" -#: shared/common/xhtmlgenerator.py:63 +#: shared/common/xhtmlgenerator.py:67 msgid "Back" msgstr "" @@ -3718,11 +3802,11 @@ msgstr "" msgid "Sessions History" msgstr "Katso historiikka" -#: glasnost-web/index.py:180 +#: glasnost-web/index.py:180 talTranslations.py:17 msgid "Home" msgstr "Koti" -#: shared/common/CardsCommon.py:344 +#: shared/common/CardsCommon.py:389 #, fuzzy msgid "New Card" msgstr "Uusi äänestys" @@ -3740,7 +3824,7 @@ msgid "Dutch" msgstr "" #: shared/web/AuthenticationWeb.py:155 -#: shared/web/AuthenticationLoginPasswordWeb.py:206 +#: shared/web/AuthenticationLoginPasswordWeb.py:210 #: shared/web/AuthenticationLibertyAllianceWeb.py:126 #: shared/web/AuthenticationLdapWeb.py:129 #, fuzzy @@ -3761,16 +3845,13 @@ msgstr "" msgid "Enter your email address." msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 -msgid "Tuesday" +#: shared/proxy/ObjectsProxy.py:1222 shared/proxy/ObjectsProxy.py:1279 +msgid " (at <%s>)" msgstr "" -#: shared/web/VotesWeb.py:94 shared/web/VotesWeb.py:142 -#: shared/web/VotesWeb.py:185 shared/web/VotesWeb.py:229 -#: shared/web/VotesWeb.py:428 shared/web/VotesWeb.py:472 -#: shared/web/VotesWeb.py:532 shared/web/VotesWeb.py:590 -msgid "Blank Vote" -msgstr "Tyhjä ääni" +#: shared/web/PeopleWeb.py:80 +msgid "Last Name" +msgstr "Sukunimi" #: shared/common/widgets.py:350 #, fuzzy @@ -3781,12 +3862,12 @@ msgstr "Standardiryhm msgid "forum" msgstr "" -#: shared/common/xhtmlgenerator.py:65 -#: shared/web/AuthenticationLoginPasswordWeb.py:409 +#: shared/common/xhtmlgenerator.py:69 +#: shared/web/AuthenticationLoginPasswordWeb.py:415 msgid "Change Password" msgstr "Vaihda salasana" -#: shared/common/kinds.py:1028 +#: shared/common/kinds.py:1044 #, fuzzy msgid "Duration" msgstr "Avoin äänestyslippu" @@ -3821,14 +3902,15 @@ msgstr "Viimeiset lyhytuutisesi" msgid "objects" msgstr "kohteet" -#: shared/common/kinds.py:1097 +#: shared/common/kinds.py:1113 #, fuzzy msgid "File Path" msgstr "Pääsytie" -#: shared/common/AtomsCommon.py:79 -msgid "atoms" -msgstr "atomit" +#: shared/web/AuthenticationLoginPasswordWeb.py:85 +#, fuzzy +msgid "Enter the username you use on this site." +msgstr "Viimeiset artikkelit" #: shared/web/geography.py:81 msgid "Central African Republic" @@ -3839,7 +3921,7 @@ msgstr "" msgid "Finland" msgstr "Haku" -#: shared/common/kinds.py:2830 shared/web/GroupsWeb.py:137 +#: shared/common/kinds.py:2902 shared/web/GroupsWeb.py:137 msgid "Items" msgstr "Yksiköt" @@ -3865,7 +3947,7 @@ msgstr "" msgid "person" msgstr "henkilö" -#: shared/common/kinds.py:681 +#: shared/common/kinds.py:697 msgid "True" msgstr "" @@ -3875,26 +3957,26 @@ msgstr "" msgid "Translation" msgstr "Kääntäjät" -#: shared/common/kinds.py:2433 +#: shared/common/kinds.py:2496 #, fuzzy msgid "Glasnost Server ID" msgstr "Lataa" -#: shared/common/kinds.py:2952 shared/common/kinds.py:2954 +#: shared/common/kinds.py:3029 shared/common/kinds.py:3031 msgid "Modification Time" msgstr "Editointiaika" -#: shared/common/kinds.py:1373 shared/common/kinds.py:2593 -#: shared/common/kinds.py:2607 shared/common/kinds.py:2621 -#: shared/common/kinds.py:2635 +#: shared/common/kinds.py:1389 shared/common/kinds.py:2656 +#: shared/common/kinds.py:2670 shared/common/kinds.py:2684 +#: shared/common/kinds.py:2698 msgid "Link" msgstr "Linkki" -#: shared/common/kinds.py:266 shared/web/ArticlesWeb.py:81 +#: shared/common/kinds.py:268 shared/web/ArticlesWeb.py:81 msgid "HTML" msgstr "" -#: shared/common/kinds.py:2604 +#: shared/common/kinds.py:2667 #, fuzzy msgid "Access in Edition Mode" msgstr "Editointiaika" @@ -3911,12 +3993,12 @@ msgstr "" msgid "Korea, Democratic People's Republic of" msgstr "" -#: shared/common/xhtmlgenerator.py:66 +#: shared/common/xhtmlgenerator.py:70 #, fuzzy msgid "Change Translation" msgstr "Kääntäjät" -#: shared/common/kinds.py:1115 +#: shared/common/kinds.py:1131 #, fuzzy msgid "OpenPGP Fingerprint" msgstr "GnuPG sormenjälki" @@ -3931,12 +4013,12 @@ msgstr "P msgid "preferences" msgstr "asetukset" -#: shared/common/xhtmlgenerator.py:88 +#: shared/common/xhtmlgenerator.py:92 #, fuzzy msgid "Pester Absentionnists" msgstr "Luopuneita:" -#: shared/web/widgets.py:1639 +#: shared/web/widgets.py:1641 #, fuzzy msgid "other:" msgstr "Äänestäjää:" @@ -3953,7 +4035,7 @@ msgstr "" msgid "Voter Token" msgstr "Äänestäjäpoletti" -#: shared/web/widgets.py:1533 +#: shared/web/widgets.py:1535 msgid "download" msgstr "" @@ -3961,21 +4043,21 @@ msgstr "" msgid "Slovakia" msgstr "" -#: glasnost-web/about.py:59 shared/common/xhtmlgenerator.py:105 +#: glasnost-web/about.py:59 shared/common/xhtmlgenerator.py:109 #, fuzzy msgid "Version" msgstr "Versio:" -#: shared/web/ElectionsWeb.py:113 -msgid "State" -msgstr "Tila" +#: shared/web/widgets.py:547 +msgid "second" +msgstr "" -#: shared/common/kinds.py:310 +#: shared/common/kinds.py:312 #, fuzzy msgid "In External File" msgstr "Tiedosto" -#: shared/web/widgets.py:1640 +#: shared/web/widgets.py:1642 msgid "Label" msgstr "" @@ -3983,7 +4065,7 @@ msgstr "" msgid "DocBook - %s" msgstr "DocBook - %s" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:424 +#: shared/web/calendaring.py:68 msgid "xJanuary" msgstr "" @@ -3995,11 +4077,12 @@ msgstr "" msgid "heading" msgstr "otsikko" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:431 +#: shared/web/calendaring.py:70 msgid "xAugust" msgstr "" -#: shared/web/GlasnostTALGenerator.py:99 +#: shared/common/xhtmlgenerator.py:191 shared/web/GlasnostTALGenerator.py:102 +#: talTranslations.py:14 msgid "Go" msgstr "" @@ -4007,11 +4090,10 @@ msgstr "" msgid "LDAP" msgstr "" -#: shared/common/kinds.py:806 shared/web/GradesWeb.py:125 -#: shared/web/VotesWeb.py:421 shared/web/VotesWeb.py:465 -#: shared/web/VotesWeb.py:525 shared/web/VotesWeb.py:583 -msgid "Choice" -msgstr "Valinta" +#: shared/common/GroupsCommon.py:279 +#, fuzzy +msgid "Select the items to intersect." +msgstr "Valitse lisättävä ehdokas" #: shared/common/RubricsCommon.py:69 msgid "Select the front article of this heading." @@ -4021,30 +4103,34 @@ msgstr "" msgid "Enter your name (if you want)." msgstr "" -#: shared/common/kinds.py:685 shared/common/kinds.py:787 +#: shared/common/kinds.py:701 shared/common/kinds.py:803 #, fuzzy msgid "Labels" msgstr "atomit" -#: shared/common/kinds.py:285 +#: shared/common/kinds.py:287 msgid "Maximum Number of Characters" msgstr "" -#: shared/common/kinds.py:680 +#: shared/common/kinds.py:696 #, fuzzy msgid "False" msgstr "Epäonnistui" -#: shared/web/widgets.py:549 +#: shared/common/kinds.py:1916 +msgid "Invalid values" +msgstr "" + +#: shared/web/widgets.py:546 #, fuzzy msgid "minute" msgstr "Ei-jäsen" -#: shared/web/AppointmentsWeb.py:633 +#: shared/web/AppointmentsWeb.py:625 msgid "Week" msgstr "" -#: shared/common/kinds.py:171 +#: shared/common/kinds.py:173 msgid "Enter a user-friendly field name" msgstr "" @@ -4057,7 +4143,7 @@ msgstr "" msgid "Description" msgstr "äänestys" -#: shared/common/kinds.py:653 +#: shared/common/kinds.py:669 #, fuzzy msgid "Amount" msgstr "Ohjelmatiedot" @@ -4067,12 +4153,12 @@ msgstr "Ohjelmatiedot" msgid "Authentication (Login/Password)" msgstr "%s asetuksien editointi" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:433 +#: shared/common/properties.py:53 #, fuzzy -msgid "xOctober" -msgstr "Äänestäjä" +msgid "Select a field type" +msgstr "Valitse lisättävä ehdokas" -#: shared/common/kinds.py:1191 +#: shared/common/kinds.py:1207 #, fuzzy msgid "Glasnost Object" msgstr "Kohde" @@ -4090,12 +4176,12 @@ msgstr "" msgid "Cards Models" msgstr "" -#: shared/common/AppointmentsCommon.py:176 +#: shared/common/AppointmentsCommon.py:171 #, fuzzy msgid "appointment" msgstr "Sisältö" -#: shared/common/AppointmentsCommon.py:175 +#: shared/common/AppointmentsCommon.py:170 #, fuzzy msgid "New Appointment" msgstr "Sisältö" @@ -4105,7 +4191,7 @@ msgstr "Sis msgid "Choose the candidates for this election." msgstr "Päätettyjen äänestyksien äänet" -#: shared/web/AppointmentsWeb.py:631 shared/web/widgets.py:517 +#: shared/web/AppointmentsWeb.py:623 shared/web/widgets.py:514 msgid "Day" msgstr "" @@ -4117,19 +4203,25 @@ msgstr "" msgid "Russian Federation" msgstr "" -#: shared/common/kinds.py:2183 shared/common/kinds.py:2185 -msgid "Authors" -msgstr "Luonut" +#: shared/web/AuthenticationLoginPasswordWeb.py:86 +#, fuzzy +msgid "Enter your password." +msgstr "Kääntäjät" -#: shared/common/kinds.py:265 shared/web/ArticlesWeb.py:80 +#: shared/common/kinds.py:267 shared/web/ArticlesWeb.py:80 msgid "DocBook" msgstr "DocBook" +#: shared/web/calendaring.py:69 +#, fuzzy +msgid "xApril" +msgstr "Artikkeli" + #: shared/common/ObjectsCommon.py:206 msgid "Object" msgstr "Kohde" -#: shared/common/kinds.py:3106 +#: shared/common/kinds.py:3183 msgid "Input Connector" msgstr "" @@ -4156,7 +4248,7 @@ msgstr "Uusi k msgid "votes" msgstr "äänet" -#: shared/common/kinds.py:1331 +#: shared/common/kinds.py:1347 #, fuzzy msgid "Integer Choice" msgstr "Äänestäjien valinta" @@ -4198,7 +4290,7 @@ msgstr "K msgid "Swaziland" msgstr "" -#: shared/common/kinds.py:227 +#: shared/common/kinds.py:229 #, fuzzy msgid "Utilization Mode" msgstr "Tunnistus" @@ -4208,9 +4300,11 @@ msgstr "Tunnistus" msgid "File Name" msgstr "Etunimi" -#: shared/web/widgets.py:550 -msgid "second" -msgstr "" +#: shared/common/kinds.py:3200 shared/common/instructions.py:316 +#: shared/common/values.py:53 +#, fuzzy +msgid "Kind" +msgstr "Haku" #: shared/common/widgets.py:297 #, fuzzy @@ -4235,24 +4329,24 @@ msgstr "Ep msgid "Unknown" msgstr "Tuntematon" -#: shared/web/AppointmentsWeb.py:88 shared/web/ElectionsWeb.py:128 -#: shared/web/BrevesWeb.py:73 shared/web/CommentsWeb.py:85 -#: shared/web/ForumsWeb.py:71 shared/web/widgets.py:836 -#: shared/web/ArticlesWeb.py:92 shared/web/SystemFilesWeb.py:82 -#: shared/web/UploadFilesWeb.py:106 shared/web/VirtualHostsWeb.py:81 +#: shared/common/VirtualHostsCommon.py:126 shared/web/AppointmentsWeb.py:90 +#: shared/web/ElectionsWeb.py:128 shared/web/BrevesWeb.py:73 +#: shared/web/CommentsWeb.py:85 shared/web/ForumsWeb.py:71 +#: shared/web/widgets.py:833 shared/web/ArticlesWeb.py:92 +#: shared/web/SystemFilesWeb.py:82 shared/web/UploadFilesWeb.py:106 msgid "Title" msgstr "Nimi" -#: shared/common/ArticlesCommon.py:57 -msgid "Select the author(s) of the document." -msgstr "" +#: shared/common/kinds.py:2244 shared/common/kinds.py:2246 +msgid "Authors" +msgstr "Luonut" #: shared/common/things.py:149 #, fuzzy msgid "Internal Name" msgstr "Tiedosto" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:430 +#: shared/web/calendaring.py:70 msgid "xJuly" msgstr "" @@ -4480,10 +4574,6 @@ msgstr "Ehdokas" #~ msgid "Holidays" #~ msgstr "Epäonnistui" -#, fuzzy -#~ msgid "Organization" -#~ msgstr "Kääntäjät" - #, fuzzy #~ msgid "Organizations" #~ msgstr "Kääntäjät" @@ -4694,10 +4784,6 @@ msgstr "Ehdokas" #~ msgid "The new password has been sent by email to %s!" #~ msgstr "Salasana lähetetty osoitteeseen %s!" -#, fuzzy -#~ msgid "Enter the username you use on this site." -#~ msgstr "Viimeiset artikkelit" - #~ msgid "Non Members" #~ msgstr "Ei-jäsenet" @@ -4749,10 +4835,6 @@ msgstr "Ehdokas" #~ msgid "type" #~ msgstr "Tyyppi" -#, fuzzy -#~ msgid "Calendar" -#~ msgstr "Ehdokas" - #, fuzzy #~ msgid "Abstract" #~ msgstr "Luovuta" diff --git a/po/glasnost-web/fr.po b/po/glasnost-web/fr.po index 22c13b33..5e79f09e 100644 --- a/po/glasnost-web/fr.po +++ b/po/glasnost-web/fr.po @@ -25,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: glasnost-web $Revision$\n" -"POT-Creation-Date: Wed Sep 24 21:17:49 2003\n" +"POT-Creation-Date: Wed Oct 1 18:00:09 2003\n" "PO-Revision-Date: 2003-09-24 09:27+0100\n" "Last-Translator: Frédéric Péters \n" "Language-Team: French \n" @@ -33,7 +33,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" -#: shared/common/VirtualHostsCommon.py:207 +#: shared/common/VirtualHostsCommon.py:226 msgid "Virtual Hosts" msgstr "Hôtes virtuels" @@ -45,6 +45,10 @@ msgstr "Type Mime" msgid "Liberty Alliance Server" msgstr "Serveur Liberty Alliance" +#: shared/common/AtomsCommon.py:79 +msgid "atoms" +msgstr "atomes" + #: shared/web/geography.py:150 msgid "Sri Lanka" msgstr "Sri Lanka" @@ -57,11 +61,11 @@ msgstr "Espagnol" msgid "Yugoslavia" msgstr "Yougoslavie" -#: shared/web/AuthenticationLoginPasswordWeb.py:136 +#: shared/web/AuthenticationLoginPasswordWeb.py:140 msgid "Enter the password." msgstr "Entrez le mot de passe." -#: shared/common/kinds.py:111 +#: shared/common/kinds.py:113 msgid "Private" msgstr "Privé" @@ -69,11 +73,11 @@ msgstr "Priv msgid "New Translation" msgstr "Nouvelle traduction" -#: shared/common/kinds.py:1971 +#: shared/common/kinds.py:2032 msgid "Sequence" msgstr "Suite" -#: shared/web/GlasnostTALGenerator.py:98 +#: shared/web/GlasnostTALGenerator.py:101 talTranslations.py:4 msgid "You are not logged in" msgstr "Vous n'êtes pas identifié" @@ -81,7 +85,7 @@ msgstr "Vous n' msgid "Secret Ballot" msgstr "Bulletin secret" -#: shared/web/AuthenticationLoginPasswordWeb.py:341 +#: shared/web/AuthenticationLoginPasswordWeb.py:347 msgid "Changing User Password" msgstr "Changer le mot de passe d'un utilisateur" @@ -89,19 +93,15 @@ msgstr "Changer le mot de passe d'un utilisateur" msgid "Enter your nickname (optional)." msgstr "Entrez votre surnom (si vous voulez)." -#: shared/web/PeopleWeb.py:91 -msgid "Nickname" -msgstr "Surnom" - #: shared/web/geography.py:92 msgid "Cyprus" msgstr "Chypre" -#: shared/common/kinds.py:193 shared/common/kinds.py:2591 +#: shared/common/kinds.py:195 shared/common/kinds.py:2654 msgid "Same As Edition Mode" msgstr "Identique au mode d'édition" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:434 +#: shared/web/calendaring.py:71 msgid "xNovember" msgstr "xnovembre" @@ -109,11 +109,11 @@ msgstr "xnovembre" msgid "Check Box" msgstr "Case à cocher" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 -msgid "April" -msgstr "Avril" +#: shared/common/scripts.py:66 +msgid "Execute On Submit" +msgstr "" -#: shared/common/kinds.py:2991 +#: shared/common/kinds.py:3068 msgid "User Token" msgstr "Jeton d'utilisateur" @@ -121,11 +121,11 @@ msgstr "Jeton d'utilisateur" msgid "Are you sure you want to delete the %s?" msgstr "Êtes-vous sûr de vouloir supprimer la fiche %s ?" -#: shared/common/CardsCommon.py:70 shared/common/kinds.py:1061 +#: shared/common/CardsCommon.py:70 shared/common/kinds.py:1077 msgid "Fields" msgstr "Champs" -#: shared/common/xhtmlgenerator.py:73 +#: shared/common/xhtmlgenerator.py:77 msgid "Edit" msgstr "Éditer" @@ -133,7 +133,7 @@ msgstr " msgid "New Heading" msgstr "Nouvelle rubrique" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 +#: shared/web/calendaring.py:60 msgid "February" msgstr "Février" @@ -141,14 +141,14 @@ msgstr "F msgid "Liberia" msgstr "Liberia" -#: shared/common/kinds.py:2569 +#: shared/common/kinds.py:2632 msgid "Structure" msgstr "Structure" #: shared/common/AuthenticationLoginPasswordCommon.py:64 -#: shared/common/kinds.py:1872 shared/common/AuthenticationLdapCommon.py:63 +#: shared/common/kinds.py:1900 shared/common/AuthenticationLdapCommon.py:63 #: shared/web/AuthenticationLoginPasswordWeb.py:67 -#: shared/web/AuthenticationLoginPasswordWeb.py:139 +#: shared/web/AuthenticationLoginPasswordWeb.py:143 msgid "Password" msgstr "Mot de passe" @@ -172,15 +172,24 @@ msgstr "Atomes" msgid "Never" msgstr "Jamais" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 +#: shared/web/calendaring.py:61 msgid "May" msgstr "Mai" +#: talTranslations.py:7 +#, fuzzy +msgid "Sessions" +msgstr "Sessions en cours" + #: shared/web/TranslationsWeb.py:140 msgid "From " msgstr "De " -#: shared/common/kinds.py:87 +#: shared/common/kinds.py:1988 +msgid "Script Source Code" +msgstr "" + +#: shared/common/kinds.py:89 msgid "Containers" msgstr "Conteneurs" @@ -192,7 +201,7 @@ msgstr "fichier" msgid "Needed" msgstr "Nécessaire" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Thursday" msgstr "Jeudi" @@ -200,12 +209,7 @@ msgstr "Jeudi" msgid "Bhutan" msgstr "Bhoutan" -#: shared/common/GroupsCommon.py:279 -#, fuzzy -msgid "Select the items to intersect." -msgstr "Choisissez le mode de scrutin." - -#: shared/common/kinds.py:2835 shared/web/GroupsWeb.py:90 +#: shared/common/kinds.py:2907 shared/web/GroupsWeb.py:90 msgid "Union" msgstr "Union" @@ -225,7 +229,7 @@ msgstr "Date d' msgid "Burundi" msgstr "Burundi" -#: shared/common/kinds.py:269 +#: shared/common/kinds.py:271 msgid "Preformatted Text" msgstr "Texte préformatté" @@ -233,10 +237,17 @@ msgstr "Texte pr msgid "IP Address" msgstr "Adresse IP" -#: shared/common/kinds.py:1345 -#, fuzzy +#: talTranslations.py:19 +msgid "Navigation" +msgstr "Navigation" + +#: talTranslations.py:16 +msgid ", l'entreprise ouverte" +msgstr ", the open company" + +#: shared/common/kinds.py:1361 msgid "Select the language used to fill in this card." -msgstr "Choisissez la langue que vous souhaitez utiliser." +msgstr "Choisissez la langue utilisée pour compléter cette fiche." #: shared/web/geography.py:231 msgid "Uruguay" @@ -254,8 +265,8 @@ msgstr "Seychelles" msgid "Bahamas" msgstr "Bahamas" -#: shared/common/kinds.py:195 shared/common/kinds.py:213 -#: shared/common/kinds.py:231 shared/common/kinds.py:249 +#: shared/common/kinds.py:197 shared/common/kinds.py:215 +#: shared/common/kinds.py:233 shared/common/kinds.py:251 msgid "Read Only" msgstr "Lecture seule" @@ -263,7 +274,7 @@ msgstr "Lecture seule" msgid "Grenada" msgstr "Grenade" -#: shared/common/kinds.py:956 +#: shared/common/kinds.py:972 #, fuzzy msgid "Date & Time Format" msgstr "Date & heure" @@ -288,7 +299,7 @@ msgstr "Diff msgid "Debian Maintainers" msgstr "Mainteneurs Debian" -#: shared/common/kinds.py:1966 +#: shared/common/kinds.py:2027 #, fuzzy msgid "Minimum Number of Items" msgstr "Nombre de résultats" @@ -297,11 +308,11 @@ msgstr "Nombre de r msgid "Losses" msgstr "Défaites" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 +#: shared/web/calendaring.py:60 msgid "January" msgstr "Janvier" -#: shared/common/xhtmlgenerator.py:68 +#: shared/common/xhtmlgenerator.py:72 msgid "Compute" msgstr "Calculer" @@ -309,7 +320,7 @@ msgstr "Calculer" msgid "files" msgstr "fichiers" -#: shared/common/kinds.py:3262 +#: shared/common/kinds.py:3368 msgid "Widget Name" msgstr "Nom du composant graphique" @@ -317,19 +328,19 @@ msgstr "Nom du composant graphique" #: glasnost-web/about.py:124 glasnost-web/about.py:134 #: glasnost-web/about.py:154 shared/web/TranslationsWeb.py:165 #: shared/web/TranslationsWeb.py:712 shared/web/GradesWeb.py:85 -#: shared/web/widgets.py:142 shared/web/widgets.py:836 -#: shared/web/widgets.py:842 shared/web/VotesWeb.py:157 +#: shared/web/widgets.py:144 shared/web/widgets.py:833 +#: shared/web/widgets.py:839 shared/web/VotesWeb.py:157 #: shared/web/VotesWeb.py:244 msgid ":" msgstr " :" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/calendaring.py:63 msgid "November" msgstr "Novembre" -#: shared/web/ElectionsWeb.py:135 -msgid "Approval" -msgstr "Assentiment" +#: shared/web/TranslationsWeb.py:360 +msgid "Fuzzy" +msgstr "Approximative" #: shared/web/geography.py:85 msgid "Chile" @@ -340,11 +351,11 @@ msgstr "Chili" msgid "User" msgstr "Utilisateur" -#: shared/common/xhtmlgenerator.py:112 +#: shared/common/xhtmlgenerator.py:116 msgid "Vote Blank" msgstr "Voter blanc" -#: shared/common/kinds.py:3179 +#: shared/common/kinds.py:3256 msgid "Output Connector" msgstr "Connecteur de sortie" @@ -372,7 +383,7 @@ msgstr " msgid "Belarus" msgstr "Biélorussie" -#: shared/web/AppointmentsWeb.py:312 +#: shared/web/AppointmentsWeb.py:298 msgid "Week %d of %d" msgstr "Semaine %d de %d" @@ -400,7 +411,7 @@ msgstr "Nouvelles pr msgid "Election in progress" msgstr "Élection en cours" -#: shared/common/xhtmlgenerator.py:67 +#: shared/common/xhtmlgenerator.py:71 msgid "Duplicate" msgstr "Dupliquer" @@ -408,11 +419,11 @@ msgstr "Dupliquer" msgid "Weightings" msgstr "Pondérations" -#: shared/common/VirtualHostsCommon.py:107 +#: shared/common/VirtualHostsCommon.py:124 msgid "Enter the title of this virtual host." msgstr "Entrez le titre de cet hôte virtuel." -#: shared/common/VirtualHostsCommon.py:202 +#: shared/common/VirtualHostsCommon.py:221 msgid "New Virtual Host" msgstr "Nouvel hôte virtuel" @@ -433,7 +444,7 @@ msgstr "Authentification (Liberty Alliance)" msgid "Select the items to subtract." msgstr "Sélectionnez le fichier à télécharger." -#: shared/common/xhtmlgenerator.py:103 +#: shared/common/xhtmlgenerator.py:107 msgid "Use" msgstr "Utiliser" @@ -445,23 +456,18 @@ msgstr "M msgid "Aliases" msgstr "Alias" -#: shared/common/AppointmentsCommon.py:99 +#: talTranslations.py:18 +msgid "Calendar" +msgstr "Calendrier" + +#: shared/common/AppointmentsCommon.py:94 msgid "Enter the day of the appointment." msgstr "Entrez le jour du rendez-vous." -#: shared/common/properties.py:53 -#, fuzzy -msgid "Select a field type" -msgstr "Sélectionnez le fichier à télécharger." - #: shared/web/geography.py:173 msgid "Mozambique" msgstr "Mozambique" -#: shared/proxy/ObjectsProxy.py:1224 shared/proxy/ObjectsProxy.py:1281 -msgid " (at <%s>)" -msgstr " ( chez <%s>)" - #: shared/web/geography.py:58 msgid "Austria" msgstr "Autriche" @@ -478,13 +484,13 @@ msgstr "Barre de bouton sp msgid "Expiration Time" msgstr "Date d'expiration" -#: shared/common/kinds.py:267 +#: shared/common/kinds.py:269 msgid "reStructuredText" msgstr "Texte ReStructuré" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 -msgid "December" -msgstr "Décembre" +#: shared/web/ObjectsWeb.py:82 +msgid "Version Number" +msgstr "Numéro de version" #: shared/web/ElectionsWeb.py:143 msgid "Voters" @@ -494,11 +500,11 @@ msgstr " msgid "Translation to %s" msgstr "Traduction vers %s" -#: shared/common/xhtmlgenerator.py:80 +#: shared/common/xhtmlgenerator.py:84 msgid "Read the License" msgstr "Lire la licence" -#: shared/common/kinds.py:246 +#: shared/common/kinds.py:248 msgid "Viewing Mode" msgstr "" @@ -523,7 +529,7 @@ msgstr "finnois & su msgid "History - %s" msgstr "Historique - %s" -#: shared/common/kinds.py:2982 +#: shared/common/kinds.py:3059 msgid "Application Token" msgstr "Jeton d'application" @@ -531,15 +537,15 @@ msgstr "Jeton d'application" msgid "Sweden" msgstr "Suède" -#: shared/common/kinds.py:2652 +#: shared/common/kinds.py:2715 msgid "Thing" msgstr "Chose" -#: shared/common/kinds.py:161 +#: shared/common/kinds.py:163 msgid "Translatable" msgstr "Traduisible" -#: shared/common/kinds.py:2911 shared/common/kinds.py:2913 +#: shared/common/kinds.py:2983 shared/common/kinds.py:2985 msgid "Creation Time" msgstr "Date de création" @@ -547,10 +553,6 @@ msgstr "Date de cr msgid "%(from)s to %(to)s Translators" msgstr "Traducteurs %(from)s vers %(to)s" -#: shared/common/GroupsCommon.py:406 -msgid "group" -msgstr "groupe" - #: shared/web/geography.py:197 msgid "Saudi Arabia" msgstr "Arabie saoudite" @@ -560,11 +562,11 @@ msgstr "Arabie saoudite" msgid "Intersection" msgstr "Instruction" -#: shared/common/kinds.py:2968 +#: shared/common/kinds.py:3045 msgid "Token" msgstr "Jeton" -#: shared/common/AppointmentsCommon.py:104 +#: shared/common/AppointmentsCommon.py:99 msgid "Enter a title for this appointment." msgstr "Entrez un titre pour ce rendez-vous." @@ -572,7 +574,7 @@ msgstr "Entrez un titre pour ce rendez-vous." msgid "Year Minimum Value" msgstr "Valeur année minimale" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:432 +#: shared/web/calendaring.py:70 msgid "xSeptember" msgstr "xseptembre" @@ -585,11 +587,11 @@ msgstr "Togo" msgid "Members Types" msgstr "Type Mime" -#: shared/web/GlasnostTALGenerator.py:100 +#: shared/web/GlasnostTALGenerator.py:103 talTranslations.py:10 msgid "All Objects" msgstr "Tous les objets" -#: shared/common/kinds.py:1865 +#: shared/common/kinds.py:1893 #, fuzzy msgid "Enter Twice" msgstr "Liste à valeurs entières" @@ -602,11 +604,11 @@ msgstr "Vos derniers fichiers syst msgid "grading" msgstr "classement" -#: shared/web/AuthenticationLoginPasswordWeb.py:94 +#: shared/web/AuthenticationLoginPasswordWeb.py:97 msgid "Current Password" msgstr "Mot de passe actuel" -#: shared/web/kinds.py:1351 +#: shared/web/kinds.py:1352 msgid "Default Values" msgstr "Valeurs par défaut" @@ -622,11 +624,11 @@ msgstr "Tha msgid "New Grade" msgstr "Nouveau classement" -#: shared/common/xhtmlgenerator.py:85 +#: shared/common/xhtmlgenerator.py:89 msgid "New" msgstr "Nouveau" -#: shared/common/xhtmlgenerator.py:92 +#: shared/common/xhtmlgenerator.py:96 msgid "Pretion" msgstr "Pretion" @@ -684,17 +686,18 @@ msgstr "Su msgid "GnuPG Fingerprint" msgstr "Empreinte GnuPG" -#: shared/common/xhtmlgenerator.py:77 +#: shared/common/xhtmlgenerator.py:81 msgid "Find" msgstr "Rechercher" -#: shared/web/VirtualHostsWeb.py:73 +#: shared/common/VirtualHostsCommon.py:99 msgid "Web Host Name" msgstr "Nom d'hôte du site web" -#: shared/web/ForumsWeb.py:195 -msgid "Replies List" -msgstr "Liste des réponses" +#: shared/web/CardsWeb.py:229 shared/web/ObjectsWeb.py:366 +#: shared/web/VotesWeb.py:710 shared/web/UploadFilesWeb.py:227 +msgid "Editing %s - %s" +msgstr "Édition de %s - %s" #: shared/common/widgets.py:375 #, fuzzy @@ -711,7 +714,7 @@ msgstr "" "les autres, l'élection doit être \"clôturée\" pour que les résultats soient " "affichés." -#: shared/common/xhtmlgenerator.py:69 +#: shared/common/xhtmlgenerator.py:73 msgid "Create" msgstr "Créer" @@ -739,7 +742,7 @@ msgstr "Entrez le titre de votre commentaire." msgid "Links" msgstr "Liens" -#: shared/common/xhtmlgenerator.py:87 +#: shared/common/xhtmlgenerator.py:91 msgid "OK" msgstr "OK" @@ -747,7 +750,7 @@ msgstr "OK" msgid "Albania" msgstr "Albanie" -#: shared/common/kinds.py:3221 shared/common/instructions.py:294 +#: shared/common/kinds.py:3327 shared/common/instructions.py:294 msgid "Value Holder" msgstr "Conteneur de la valeur" @@ -771,7 +774,7 @@ msgstr "" msgid "New Zealand" msgstr "Nouvelle-Zélande" -#: shared/common/xhtmlgenerator.py:210 +#: shared/common/xhtmlgenerator.py:303 msgid "Missing Object (%s)" msgstr "Objet manquant (%s)" @@ -787,7 +790,7 @@ msgstr "Informations d msgid "Error!" msgstr "Erreur !" -#: shared/common/xhtmlgenerator.py:89 +#: shared/common/xhtmlgenerator.py:93 msgid "Post a Comment" msgstr "Poster un commentaire" @@ -795,7 +798,7 @@ msgstr "Poster un commentaire" msgid "Wins" msgstr "Victoires" -#: shared/web/AuthenticationLoginPasswordWeb.py:112 +#: shared/web/AuthenticationLoginPasswordWeb.py:115 msgid "New Password (Confirmation)" msgstr "Nouveau mot de passe (confirmation)" @@ -803,7 +806,7 @@ msgstr "Nouveau mot de passe (confirmation)" msgid "Oman" msgstr "Oman" -#: shared/common/xhtmlgenerator.py:95 +#: shared/common/xhtmlgenerator.py:99 msgid "Refuse" msgstr "Refuser" @@ -827,7 +830,7 @@ msgstr "R msgid "New Election" msgstr "Nouvelle élection" -#: shared/common/kinds.py:1295 +#: shared/common/kinds.py:1311 #, fuzzy msgid "Minimum Value" msgstr "Valeur année minimale" @@ -844,7 +847,7 @@ msgstr "" "Entrez l'empreinte de la clef publique GnuPG. Indispensable pour que vous " "receviez vos emails encryptés." -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Friday" msgstr "Vendredi" @@ -856,11 +859,11 @@ msgstr "Tonga" msgid "DocBook Source - %s" msgstr "DocBook Source - %s" -#: shared/common/kinds.py:309 +#: shared/common/kinds.py:311 msgid "Internal" msgstr "Interne" -#: shared/common/xhtmlgenerator.py:94 +#: shared/common/xhtmlgenerator.py:98 msgid "Submit For Evaluation" msgstr "Proposer à l'évaluation" @@ -868,15 +871,15 @@ msgstr "Proposer msgid "Analyze" msgstr "Analyse" -#: shared/common/VirtualHostsCommon.py:53 +#: shared/common/VirtualHostsCommon.py:54 msgid "Select the default virtual host to use on this server" msgstr "Sélectionnez l'hôte virtuel par défaut pour ce serveur" -#: shared/web/AuthenticationLoginPasswordWeb.py:426 +#: shared/web/AuthenticationLoginPasswordWeb.py:432 msgid "Change password for user:" msgstr "Changer le mot de passe de l'utilisateur:" -#: shared/common/xhtmlgenerator.py:79 +#: shared/common/xhtmlgenerator.py:83 msgid "New Implementation" msgstr "Nouvelle implémentation" @@ -884,7 +887,7 @@ msgstr "Nouvelle impl msgid "Specified path is not a file!" msgstr "Le chemin d'accès spécifié n'aboutit pas à un fichier !" -#: shared/common/kinds.py:2148 +#: shared/common/kinds.py:2209 #, fuzzy msgid "Choose the user(s) of this object." msgstr "Sélectionnez le ou les auteurs de ce document." @@ -905,10 +908,6 @@ msgstr "" "Êtes-vous sûr de vouloir relancer par email les abstentionnistes de " "l'élection « %s » ?" -#: shared/web/geography.py:137 -msgid "Kyrgyzstan" -msgstr "Kirghizstan" - #: shared/common/widgets.py:198 msgid "Amount Entry Field" msgstr "" @@ -965,7 +964,7 @@ msgstr "Entrez l' msgid "Instruction" msgstr "Instruction" -#: shared/web/widgets.py:633 +#: shared/web/widgets.py:630 msgid "undefined" msgstr "" @@ -977,15 +976,15 @@ msgstr "Graphistes" msgid "ID" msgstr "Identifiant" -#: shared/web/AppointmentsWeb.py:214 +#: shared/web/AppointmentsWeb.py:200 msgid "Day long appointments" msgstr "Rendez-vous pour toute la journée" -#: shared/common/kinds.py:1302 +#: shared/common/kinds.py:1318 msgid "Integer Number" msgstr "Nombre entier" -#: shared/common/kinds.py:820 +#: shared/common/kinds.py:836 msgid "Values" msgstr "Valeurs" @@ -1016,15 +1015,15 @@ msgstr "Birmanie" msgid "Yemen" msgstr "Yémen" -#: shared/common/kinds.py:2457 +#: shared/common/kinds.py:2520 msgid "Server Role" msgstr "Rôle de serveur" -#: shared/common/kinds.py:1041 +#: shared/common/kinds.py:1057 msgid "Email Address" msgstr "Adresse email" -#: shared/common/VirtualHostsCommon.py:80 +#: shared/common/VirtualHostsCommon.py:82 msgid "" "Enter the Glasnost dispatcher id for this virtual host (you may have to " "consult your administrator)." @@ -1040,8 +1039,8 @@ msgstr "vote blanc" msgid "Mauritania" msgstr "Mauritanie" -#: shared/common/kinds.py:196 shared/common/kinds.py:214 -#: shared/common/kinds.py:232 shared/common/kinds.py:250 +#: shared/common/kinds.py:198 shared/common/kinds.py:216 +#: shared/common/kinds.py:234 shared/common/kinds.py:252 msgid "Read Only / Hidden If Empty" msgstr "" @@ -1057,16 +1056,11 @@ msgstr "Source - %s" msgid "Editing Global Settings" msgstr "Édition des réglages généraux" -#: shared/web/ObjectsWeb.py:366 shared/web/VotesWeb.py:710 -#: shared/web/UploadFilesWeb.py:223 -msgid "Editing %s - %s" -msgstr "Édition de %s - %s" - #: shared/web/ElectionsWeb.py:90 msgid "One-Time" msgstr "Ponctuelle" -#: shared/common/kinds.py:108 +#: shared/common/kinds.py:110 msgid "Import / Export" msgstr "" @@ -1099,6 +1093,11 @@ msgstr "Interne" msgid "Time Entry Field" msgstr "" +#: shared/common/scripts.py:78 +#, fuzzy +msgid "Output Console" +msgstr "Connecteur de sortie" + #: shared/web/AuthenticationLoginPasswordWeb.py:70 msgid "User Choice" msgstr "Au choix de l'utilisateur" @@ -1111,16 +1110,20 @@ msgstr "Sierra Leone" msgid "Israel" msgstr "Israël" +#: shared/web/ElectionsWeb.py:353 shared/web/ElectionsWeb.py:369 +msgid "secret" +msgstr "secret" + #: shared/common/PeopleCommon.py:90 msgid "Enter the first name." msgstr "Entrez le prénom." -#: shared/common/widgets.py:479 +#: shared/common/widgets.py:489 msgid "URL Entry Field" msgstr "" -#: shared/common/kinds.py:194 shared/common/kinds.py:212 -#: shared/common/kinds.py:230 shared/common/kinds.py:248 +#: shared/common/kinds.py:196 shared/common/kinds.py:214 +#: shared/common/kinds.py:232 shared/common/kinds.py:250 msgid "Hidden" msgstr "Caché" @@ -1178,7 +1181,7 @@ msgstr "Pourcentage" msgid "The last short news to administer" msgstr "Les dernières brèves à administrer" -#: shared/common/kinds.py:210 +#: shared/common/kinds.py:212 #, fuzzy msgid "Edition Mode" msgstr "Date d'édition" @@ -1196,11 +1199,11 @@ msgstr "Taille" msgid "Barbados" msgstr "Barbade" -#: shared/common/kinds.py:670 +#: shared/common/kinds.py:686 msgid "Any" msgstr "Générique" -#: shared/common/ForumsCommon.py:102 +#: shared/common/ForumsCommon.py:102 talTranslations.py:1 msgid "Forums" msgstr "Forums" @@ -1208,7 +1211,7 @@ msgstr "Forums" msgid "Taiwan" msgstr "Taiwan" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "September" msgstr "Septembre" @@ -1232,15 +1235,15 @@ msgstr "R msgid "Nicaragua" msgstr "Nicaragua" -#: shared/web/UploadFilesWeb.py:429 +#: shared/web/UploadFilesWeb.py:433 msgid "Your last files" msgstr "Vos derniers fichiers" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:429 +#: shared/web/calendaring.py:69 msgid "xJune" msgstr "xjuin" -#: shared/common/kinds.py:146 +#: shared/common/kinds.py:148 msgid "Mandatory" msgstr "Obligatoire" @@ -1248,7 +1251,7 @@ msgstr "Obligatoire" msgid "Public Ballot" msgstr "Bulletin public" -#: shared/common/kinds.py:113 +#: shared/common/kinds.py:115 msgid "To Server Only" msgstr "Vers serveur uniquement" @@ -1256,7 +1259,7 @@ msgstr "Vers serveur uniquement" msgid "Heading" msgstr "Rubrique" -#: shared/common/kinds.py:2490 +#: shared/common/kinds.py:2553 msgid "Slot Name" msgstr "Nom de l'emplacement" @@ -1268,8 +1271,8 @@ msgstr "Nouvel alias" msgid "Winners Count" msgstr "Nombre de vainqueurs" -#: shared/web/CardsWeb.py:343 shared/web/VotesWeb.py:708 -#: shared/web/UploadFilesWeb.py:221 +#: shared/web/CardsWeb.py:406 shared/web/VotesWeb.py:708 +#: shared/web/UploadFilesWeb.py:225 msgid "New %s" msgstr "Nouveau %s" @@ -1277,11 +1280,12 @@ msgstr "Nouveau %s" msgid "Reverse Year Order?" msgstr "Années dans l'ordre inverse ?" -#: shared/common/kinds.py:2091 +#: shared/common/kinds.py:2152 msgid "Accepted Types" msgstr "Types acceptés" #: shared/common/ElectionsCommon.py:254 shared/web/ElectionsWeb.py:882 +#: talTranslations.py:9 msgid "Elections" msgstr "Élections" @@ -1305,19 +1309,20 @@ msgstr "Propos msgid "Georgia" msgstr "Géorgie" -#: shared/common/xhtmlgenerator.py:106 +#: shared/common/xhtmlgenerator.py:110 msgid "Definition" msgstr "Définition" -#: shared/common/CardsCommon.py:347 +#: shared/common/CardsCommon.py:392 msgid "Card" msgstr "Fiche" -#: shared/common/kinds.py:2197 shared/common/kinds.py:2201 +#: shared/common/kinds.py:2258 shared/common/kinds.py:2264 msgid "Properties" msgstr "Propriétés" -#: shared/common/UploadFilesCommon.py:137 shared/web/UploadFilesWeb.py:440 +#: shared/common/UploadFilesCommon.py:137 shared/web/UploadFilesWeb.py:444 +#: talTranslations.py:15 msgid "Files" msgstr "Fichiers" @@ -1333,6 +1338,10 @@ msgstr "groupes" msgid "Active" msgstr "Actif" +#: shared/common/scripts.py:74 +msgid "Execute On View" +msgstr "" + #: shared/common/GroupsCommon.py:409 msgid "Groups" msgstr "Groupes" @@ -1345,11 +1354,12 @@ msgstr "articles" msgid "Added to slot" msgstr "Ajouté au slot" -#: shared/web/ElectionsWeb.py:353 shared/web/ElectionsWeb.py:369 -msgid "secret" -msgstr "secret" +#: shared/common/widgets.py:418 +#, fuzzy +msgid "Others Button" +msgstr "Mutation" -#: shared/web/AuthenticationLoginPasswordWeb.py:103 +#: shared/web/AuthenticationLoginPasswordWeb.py:106 msgid "New Password" msgstr "Nouveau mot de passe" @@ -1361,7 +1371,7 @@ msgstr "Salvador" msgid "Armenia" msgstr "Arménie" -#: shared/common/AppointmentsCommon.py:177 +#: shared/common/AppointmentsCommon.py:172 msgid "Appointment" msgstr "Rendez-vous" @@ -1369,23 +1379,27 @@ msgstr "Rendez-vous" msgid "Kind of Ballots" msgstr "Type de bulletins" -#: shared/common/kinds.py:2109 shared/common/kinds.py:2113 +#: shared/common/kinds.py:2170 shared/common/kinds.py:2174 msgid "Argument Pins" msgstr "Pattes d'arguments" -#: shared/common/AppointmentsCommon.py:179 +#: shared/common/AppointmentsCommon.py:174 msgid "Appointments" msgstr "Rendez-vous" -#: shared/common/xhtmlgenerator.py:93 +#: shared/common/xhtmlgenerator.py:97 msgid "Preview" msgstr "Aperçu" -#: shared/common/kinds.py:104 shared/common/widgets.py:80 +#: shared/common/kinds.py:106 shared/common/widgets.py:80 #, fuzzy msgid "Hide Field Label" msgstr "Libellé caché" +#: shared/web/calendaring.py:57 +msgid "Tuesday" +msgstr "Mardi" + #: shared/web/ForumsWeb.py:294 msgid "Subjects" msgstr "Sujets" @@ -1406,9 +1420,9 @@ msgstr "Luxembourg" msgid "New Short Article" msgstr "Nouvelle brève" -#: shared/web/PeopleWeb.py:80 -msgid "Last Name" -msgstr "Nom" +#: shared/web/geography.py:184 +msgid "Panama" +msgstr "Panama" #: shared/web/geography.py:115 msgid "Guinea" @@ -1430,7 +1444,7 @@ msgstr "Comores" msgid "Yes" msgstr "Oui" -#: shared/common/kinds.py:110 +#: shared/common/kinds.py:112 msgid "From Server Only" msgstr "En provenance du serveur uniquement" @@ -1446,7 +1460,7 @@ msgstr "Portugal" msgid "Duration Entry Field" msgstr "" -#: shared/common/kinds.py:708 shared/common/kinds.py:812 +#: shared/common/kinds.py:724 shared/common/kinds.py:828 msgid "Titles" msgstr "Titres" @@ -1454,7 +1468,7 @@ msgstr "Titres" msgid "Malaysia" msgstr "Malaisie" -#: shared/web/AppointmentsWeb.py:635 shared/web/widgets.py:502 +#: shared/web/AppointmentsWeb.py:627 shared/web/widgets.py:498 msgid "Month" msgstr "Mois" @@ -1514,7 +1528,7 @@ msgstr "" "Indiquez si vous souhaitez que Glasnost encrypte les emails qu'il vous " "envoie." -#: shared/common/kinds.py:1426 +#: shared/common/kinds.py:1442 msgid "Mapping" msgstr "Dictionnaire" @@ -1526,7 +1540,7 @@ msgstr "Serveur" msgid "Login & Password" msgstr "Identifiant et mot de passe" -#: shared/common/xhtmlgenerator.py:98 +#: shared/common/xhtmlgenerator.py:102 talTranslations.py:5 msgid "Settings" msgstr "Réglages" @@ -1538,7 +1552,7 @@ msgstr "Forum" msgid "Bulgaria" msgstr "Bulgarie" -#: shared/common/xhtmlgenerator.py:60 +#: shared/common/xhtmlgenerator.py:64 msgid "Add Article" msgstr "Ajouter un article" @@ -1546,10 +1560,11 @@ msgstr "Ajouter un article" msgid "Developers" msgstr "Développeurs" -#: shared/common/kinds.py:3123 shared/common/instructions.py:316 -#: shared/common/values.py:53 -msgid "Kind" -msgstr "Sorte" +#: shared/common/AppointmentsCommon.py:63 +msgid "Select the group that holds categories for the appointments." +msgstr "" +"Sélectionnez le groupe contenant les catégories possibles pour les rendez-" +"vous." #: shared/web/ElectionsWeb.py:700 msgid "Confirm Pestering of Abstentionnists by Email" @@ -1559,11 +1574,11 @@ msgstr "Confirmation de la relance des abstentionnistes par email" msgid "Translation Language" msgstr "Langue de traduction" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "July" msgstr "Juillet" -#: shared/common/xhtmlgenerator.py:72 +#: shared/common/xhtmlgenerator.py:76 msgid "Download Glasnost" msgstr "Télécharger Glasnost" @@ -1572,23 +1587,21 @@ msgstr "T msgid "Members" msgstr "Membres" -#: shared/web/ObjectsWeb.py:82 -msgid "Version Number" -msgstr "Numéro de version" - -#: shared/web/AppointmentsWeb.py:82 +#: shared/web/AppointmentsWeb.py:84 msgid "Select the people and groups who are assigned to this appointment." msgstr "" "Sélectionnez les personnes et les groupes qui sont assignés à ce rendez-vous." -#: shared/common/xhtmlgenerator.py:91 shared/common/PreferencesCommon.py:117 +#: shared/common/xhtmlgenerator.py:95 shared/common/PreferencesCommon.py:117 #: shared/common/PreferencesCommon.py:119 shared/web/PreferencesWeb.py:191 msgid "Preferences" msgstr "Préférences" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:426 -msgid "xMarch" -msgstr "xmars" +#: shared/common/kinds.py:822 shared/web/GradesWeb.py:125 +#: shared/web/VotesWeb.py:421 shared/web/VotesWeb.py:465 +#: shared/web/VotesWeb.py:525 shared/web/VotesWeb.py:583 +msgid "Choice" +msgstr "Choix" #: shared/common/PeopleCommon.py:78 msgid "Enter the e-mail address." @@ -1622,11 +1635,11 @@ msgstr "Attention, vous avez marqu msgid "Malawi" msgstr "Malawi" -#: shared/common/xhtmlgenerator.py:90 +#: shared/common/xhtmlgenerator.py:94 msgid "Reply" msgstr "Répondre" -#: shared/web/CardsWeb.py:248 +#: shared/web/CardsWeb.py:313 msgid "Editing Definition of Card \"%s\"" msgstr "Édition de la définition de la fiche \"%s\"" @@ -1642,7 +1655,7 @@ msgstr "Localisation" msgid "Winners" msgstr "Vainqueurs" -#: shared/common/xhtmlgenerator.py:100 +#: shared/common/xhtmlgenerator.py:104 msgid "Source" msgstr "Source" @@ -1650,11 +1663,11 @@ msgstr "Source" msgid "France" msgstr "France" -#: shared/common/kinds.py:307 +#: shared/common/kinds.py:309 msgid "Storage" msgstr "Stockage" -#: shared/common/xhtmlgenerator.py:102 +#: shared/common/xhtmlgenerator.py:106 msgid "Update Translation" msgstr "Mettre à jour la traduction" @@ -1670,6 +1683,10 @@ msgstr "Classement" msgid "Candidates One-on-One Comparison" msgstr "Comparaison des candidats deux à deux" +#: shared/common/xhtmlgenerator.py:78 +msgid "Edit Arguments" +msgstr "Éditer les arguments" + #: shared/web/geography.py:52 msgid "Afghanistan" msgstr "Afghanistan" @@ -1686,15 +1703,19 @@ msgstr "Version - %s" msgid "Select the objects that are parts of this heading." msgstr "Sélectionnez les objets qui font partie de cette rubrique." -#: shared/web/AuthenticationLoginPasswordWeb.py:176 +#: shared/web/calendaring.py:63 +msgid "December" +msgstr "Décembre" + +#: shared/web/AuthenticationLoginPasswordWeb.py:180 msgid "Authentication (Login/Password) Settings" msgstr "Réglages de l'authentification (Identifiant/mot de passe)" -#: shared/common/kinds.py:692 shared/common/kinds.py:797 +#: shared/common/kinds.py:708 shared/common/kinds.py:813 msgid "Check the box to sort labels alphabetically" msgstr "" -#: shared/common/AppointmentsCommon.py:78 +#: shared/common/AppointmentsCommon.py:73 msgid "Enter the text of this appointment." msgstr "Entrez le texte de ce rendez-vous." @@ -1738,11 +1759,11 @@ msgstr "R msgid "Finnish" msgstr "Finnois" -#: shared/common/kinds.py:2097 +#: shared/common/kinds.py:2158 msgid "Accepted Roles" msgstr "Rôles acceptés" -#: shared/common/kinds.py:530 +#: shared/common/kinds.py:538 #, fuzzy msgid "Maximum Number of Items" msgstr "Nombre de résultats" @@ -1751,7 +1772,7 @@ msgstr "Nombre de r msgid "Maldives" msgstr "Maldives" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Sunday" msgstr "Dimanche" @@ -1759,7 +1780,7 @@ msgstr "Dimanche" msgid "Argentina" msgstr "Argentine" -#: shared/common/kinds.py:3075 +#: shared/common/kinds.py:3152 msgid "Extended Choice" msgstr "Choix élargi" @@ -1767,7 +1788,7 @@ msgstr "Choix msgid "Dispatcher" msgstr "Identifiant de contrôleur Glasnost" -#: shared/common/xhtmlgenerator.py:104 +#: shared/common/xhtmlgenerator.py:108 msgid "Validate" msgstr "Valider" @@ -1778,11 +1799,11 @@ msgstr "" "Sélectionnez les personnes et les groupes qui sont autorisés à lire des " "éléments de ce type." -#: shared/web/widgets.py:1337 +#: shared/web/widgets.py:1342 msgid "Others" msgstr "Autres" -#: shared/web/AppointmentsWeb.py:596 +#: shared/web/AppointmentsWeb.py:587 msgid "Hour: %s - %s" msgstr "Heure: %s - %s" @@ -1806,11 +1827,11 @@ msgstr "Langue d'origine" msgid "French" msgstr "Français" -#: shared/common/xhtmlgenerator.py:83 +#: shared/common/xhtmlgenerator.py:87 msgid "Modify" msgstr "Modifier" -#: shared/web/AuthenticationLoginPasswordWeb.py:393 +#: shared/web/AuthenticationLoginPasswordWeb.py:399 msgid "The account has been removed successfully." msgstr "Le compte a été supprimé avec succès." @@ -1818,19 +1839,20 @@ msgstr "Le compte a msgid "Vote Token" msgstr "Jeton de vote" -#: shared/web/AuthenticationLoginPasswordWeb.py:435 +#: shared/web/AuthenticationLoginPasswordWeb.py:441 msgid "Delete user:" msgstr "Supprimer l'utilisateur:" -#: shared/common/xhtmlgenerator.py:59 +#: shared/common/xhtmlgenerator.py:63 shared/common/xhtmlgenerator.py:219 +#: talTranslations.py:12 msgid "Add" msgstr "Ajouter" -#: shared/web/ObjectsWeb.py:769 +#: shared/web/ObjectsWeb.py:775 msgid "Search Results" msgstr "Résultats de la recherche" -#: shared/common/kinds.py:112 +#: shared/common/kinds.py:114 #, fuzzy msgid "Public" msgstr "Bulletin public" @@ -1839,9 +1861,9 @@ msgstr "Bulletin public" msgid "Enter the text of the document." msgstr "Entrez le texte du document." -#: shared/common/xhtmlgenerator.py:74 -msgid "Edit Arguments" -msgstr "Éditer les arguments" +#: shared/common/VirtualHostsCommon.py:120 +msgid "Template" +msgstr "Modèle" #: shared/common/GroupsCommon.py:65 msgid "Enter the name of this group." @@ -1853,8 +1875,8 @@ msgid "Authentication" msgstr "Authentification" #: shared/common/widgets.py:204 shared/common/widgets.py:248 -#: shared/common/widgets.py:292 shared/common/widgets.py:423 -#: shared/common/widgets.py:475 shared/common/widgets.py:488 +#: shared/common/widgets.py:292 shared/common/widgets.py:433 +#: shared/common/widgets.py:485 shared/common/widgets.py:498 #: shared/web/UploadFilesWeb.py:115 shared/web/uploads.py:101 msgid "Width" msgstr "Largeur" @@ -1891,11 +1913,11 @@ msgstr "Turkm msgid "system files" msgstr "fichiers système" -#: shared/web/geography.py:221 -msgid "East Timor" -msgstr "Timor Oriental" +#: shared/common/ArticlesCommon.py:57 +msgid "Select the author(s) of the document." +msgstr "Sélectionnez le ou les auteurs de ce document." -#: shared/common/kinds.py:2166 +#: shared/common/kinds.py:2227 #, fuzzy msgid "People Set" msgstr "Personnes" @@ -1904,12 +1926,12 @@ msgstr "Personnes" msgid "South Africa" msgstr "Afrique du Sud" -#: shared/common/widgets.py:438 +#: shared/common/widgets.py:448 msgid "View In Text Area" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:309 -#: shared/web/AuthenticationLoginPasswordWeb.py:375 +#: shared/web/AuthenticationLoginPasswordWeb.py:315 +#: shared/web/AuthenticationLoginPasswordWeb.py:381 msgid "The password has been modified successfully." msgstr "Le mot de passe a été modifié avec succès." @@ -1933,7 +1955,7 @@ msgstr " msgid "Enter the name of this alias (will be used in the URL)." msgstr "Entrez le nom de cet alias (sera utilisé dans l'URL)." -#: shared/common/kinds.py:702 +#: shared/common/kinds.py:718 msgid "Boolean" msgstr "Booléen" @@ -1941,6 +1963,10 @@ msgstr "Bool msgid "Switzerland" msgstr "Suisse" +#: talTranslations.py:11 +msgid "Back to home" +msgstr "Retour à l'accueil" + #: shared/web/CommentsWeb.py:90 msgid "Commented Item" msgstr "Élément commenté" @@ -1949,6 +1975,10 @@ msgstr " msgid "Enter an eventual nickname here." msgstr "Entrez ici un éventuel surnom." +#: talTranslations.py:8 +msgid "User:" +msgstr "Utilisateur:" + #: shared/web/geography.py:102 msgid "Egypt" msgstr "Égypte" @@ -1957,7 +1987,7 @@ msgstr " msgid "Honduras" msgstr "Honduras" -#: shared/common/xhtmlgenerator.py:58 +#: shared/common/xhtmlgenerator.py:62 msgid "Abstain" msgstr "S'abstenir" @@ -1969,8 +1999,8 @@ msgstr "Portugais" msgid "Crypt Emails" msgstr "Encrypter les emails" -#: shared/common/xhtmlgenerator.py:81 -#: shared/web/AuthenticationLoginPasswordWeb.py:491 +#: shared/common/xhtmlgenerator.py:85 +#: shared/web/AuthenticationLoginPasswordWeb.py:496 #: shared/web/AuthenticationLdapWeb.py:205 msgid "Login" msgstr "S'identifier" @@ -1979,7 +2009,7 @@ msgstr "S'identifier" msgid "Guyana" msgstr "Guyana" -#: shared/common/kinds.py:2617 +#: shared/common/kinds.py:2680 #, fuzzy msgid "Access in Utilization Mode" msgstr "Utilisation" @@ -2006,7 +2036,7 @@ msgstr "objet" msgid "Button" msgstr "Mutation" -#: shared/common/kinds.py:3093 +#: shared/common/kinds.py:3170 msgid "Fault" msgstr "Erreur" @@ -2014,18 +2044,19 @@ msgstr "Erreur" msgid "Other Translations" msgstr "Autres traductions" -#: shared/common/properties.py:62 shared/common/things.py:163 +#: shared/common/properties.py:65 shared/common/things.py:163 #: shared/web/AtomsWeb.py:60 shared/web/CommentsWeb.py:79 #: shared/web/GradesWeb.py:133 shared/web/GroupsWeb.py:94 #: shared/web/PageNamesWeb.py:65 shared/web/RubricsWeb.py:75 msgid "Name" msgstr "Nom" -#: shared/web/CardsWeb.py:190 -msgid "Definition of Card \"%s\"" -msgstr "Définition de la fiche \"%s\"" +#: shared/web/geography.py:137 +msgid "Kyrgyzstan" +msgstr "Kirghizstan" #: shared/common/ArticlesCommon.py:140 shared/web/ArticlesWeb.py:461 +#: talTranslations.py:2 msgid "Articles" msgstr "Articles" @@ -2037,7 +2068,7 @@ msgstr "Si possible" msgid "Instructions" msgstr "Instructions" -#: shared/web/UploadFilesWeb.py:436 +#: shared/web/UploadFilesWeb.py:440 msgid "The last files" msgstr "Les derniers fichiers" @@ -2045,7 +2076,7 @@ msgstr "Les derniers fichiers" msgid "Difference" msgstr "Différence" -#: shared/common/kinds.py:2632 +#: shared/common/kinds.py:2695 #, fuzzy msgid "Access in Viewing Mode" msgstr "État dans le mode \"Utilisation\"" @@ -2054,7 +2085,7 @@ msgstr " msgid "Germany" msgstr "Allemagne" -#: shared/common/VirtualHostsCommon.py:101 +#: shared/common/VirtualHostsCommon.py:116 msgid "Select the template (skin) to use for this host." msgstr "Sélectionnez l'apparence à utiliser pour cet hôte." @@ -2074,7 +2105,11 @@ msgstr "Islande" msgid "Global Settings" msgstr "Réglages généraux" -#: shared/common/kinds.py:2162 shared/common/kinds.py:2168 +#: shared/web/calendaring.py:61 +msgid "April" +msgstr "Avril" + +#: shared/common/kinds.py:2223 shared/common/kinds.py:2229 msgid "Users" msgstr "Utilisateurs" @@ -2115,7 +2150,7 @@ msgstr "" msgid "headings" msgstr "Rubriques" -#: shared/common/kinds.py:3064 shared/common/kinds.py:3066 +#: shared/common/kinds.py:3141 shared/common/kinds.py:3143 msgid "Writers" msgstr "Éditeurs" @@ -2135,7 +2170,7 @@ msgstr "Barre de boutons d'action" msgid "Winners Grading" msgstr "Classement des vainqueurs" -#: shared/common/kinds.py:2289 shared/common/kinds.py:2293 +#: shared/common/kinds.py:2352 shared/common/kinds.py:2356 msgid "Result Pins" msgstr "Jetons de ésultats" @@ -2149,27 +2184,23 @@ msgstr "" "Sélectionnez le groupe auquel les nouveaux utilisateurs seront " "automatiquement ajoutés." -#: shared/web/geography.py:229 -msgid "United Kingdom" -msgstr "Royaume-Uni" +#: shared/web/geography.py:221 +msgid "East Timor" +msgstr "Timor Oriental" #: shared/web/TranslationsWeb.py:395 msgid "Original String" msgstr "Chaîne d'origine" -#: shared/web/TranslationsWeb.py:360 -msgid "Fuzzy" -msgstr "Approximative" - #: shared/web/TranslationsWeb.py:375 msgid "Similar String" msgstr "Chaîne similaire" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Saturday" msgstr "Samedi" -#: shared/common/CardsCommon.py:348 +#: shared/common/CardsCommon.py:393 msgid "cards" msgstr "fiches" @@ -2189,7 +2220,7 @@ msgstr "Mac msgid "Missing value!" msgstr "Valeur manquante !" -#: shared/common/kinds.py:172 +#: shared/common/kinds.py:174 #, fuzzy msgid "Field Label" msgstr "Libellé caché" @@ -2222,7 +2253,7 @@ msgstr "Tanzanie" msgid "Ireland" msgstr "Irlande" -#: shared/common/xhtmlgenerator.py:78 +#: shared/common/xhtmlgenerator.py:82 msgid "History" msgstr "Historique" @@ -2234,7 +2265,7 @@ msgstr "C msgid "translation" msgstr "traduction" -#: shared/web/AuthenticationLoginPasswordWeb.py:465 +#: shared/web/AuthenticationLoginPasswordWeb.py:470 #: shared/web/AuthenticationLdapWeb.py:181 msgid "To access this part of the site, you need to sign in." msgstr "Pour accéder à cette partie du site, vous devez vous identifier." @@ -2243,13 +2274,13 @@ msgstr "Pour acc msgid "Are you sure you want to delete the %s \"%s\" ?" msgstr "Êtes-vous sûr de vouloir supprimer la fiche %s \"%s\" ?" -#: shared/common/kinds.py:3057 +#: shared/common/kinds.py:3134 msgid "Select the people and groups who are allowed to modify the item." msgstr "" "Sélectionnez les personnes et groupes qui seront autorisés à modifier cet " "élément." -#: shared/common/xhtmlgenerator.py:111 +#: shared/common/xhtmlgenerator.py:115 msgid "Vote " msgstr "Voter " @@ -2261,11 +2292,11 @@ msgstr "Ajouter:" msgid "Gambia" msgstr "Gambie" -#: shared/common/kinds.py:1351 shared/common/kinds.py:1359 +#: shared/common/kinds.py:1367 shared/common/kinds.py:1375 msgid "Language" msgstr "Langue" -#: shared/web/GlasnostTALGenerator.py:97 +#: shared/web/GlasnostTALGenerator.py:100 talTranslations.py:3 msgid "Search" msgstr "Rechercher" @@ -2273,12 +2304,11 @@ msgstr "Rechercher" msgid "Blank Ballots:" msgstr "Bulletins blancs :" -#: shared/common/kinds.py:804 shared/common/kinds.py:1189 -#: shared/common/kinds.py:1357 shared/common/kinds.py:1969 -#: shared/common/kinds.py:3206 -#, fuzzy +#: shared/common/kinds.py:820 shared/common/kinds.py:1205 +#: shared/common/kinds.py:1373 shared/common/kinds.py:2030 +#: shared/common/kinds.py:3283 shared/common/kinds.py:3312 msgid "Data" -msgstr "Date" +msgstr "Données" #: shared/web/geography.py:129 msgid "Iraq" @@ -2292,7 +2322,7 @@ msgstr "Ha msgid "Ties" msgstr "Égalités" -#: shared/common/kinds.py:982 shared/common/widgets.py:224 +#: shared/common/kinds.py:998 shared/common/widgets.py:224 #: shared/web/ArticlesWeb.py:347 msgid "Date" msgstr "Date" @@ -2309,8 +2339,8 @@ msgstr "Marshall" msgid "No options for this authentication method." msgstr "Pas d'options pour cette méthode d'authentification." -#: shared/common/kinds.py:197 shared/common/kinds.py:215 -#: shared/common/kinds.py:233 +#: shared/common/kinds.py:199 shared/common/kinds.py:217 +#: shared/common/kinds.py:235 msgid "Read/Write" msgstr "Lecture/Écriture" @@ -2319,11 +2349,11 @@ msgstr "Lecture/ msgid "None Label" msgstr "Libellé" -#: shared/common/xhtmlgenerator.py:76 +#: shared/common/xhtmlgenerator.py:80 msgid "Every Article" msgstr "Tous les articles" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Monday" msgstr "Lundi" @@ -2347,19 +2377,27 @@ msgstr "" msgid "New Comment" msgstr "Nouveau commentaire" +#: shared/common/scripts.py:62 +msgid "Execute On Edit" +msgstr "" + #: shared/common/PreferencesCommon.py:78 msgid "Use Browser Settings" msgstr "Utiliser les réglages du navigateur" -#: shared/web/AppointmentsWeb.py:77 +#: shared/web/calendaring.py:71 +msgid "xOctober" +msgstr "xoctobre" + +#: shared/web/AppointmentsWeb.py:79 msgid "Categories" msgstr "Catégories" -#: shared/web/AppointmentsWeb.py:84 -msgid "Participants" -msgstr "participants" - #: shared/web/AppointmentsWeb.py:86 +msgid "Participants" +msgstr "Participants" + +#: shared/web/AppointmentsWeb.py:88 msgid "Start" msgstr "Début" @@ -2388,11 +2426,11 @@ msgstr "Br msgid "(%d words)" msgstr "(%d mots)" -#: shared/common/widgets.py:434 +#: shared/common/widgets.py:444 msgid "Multi-Line Text Entry Field" msgstr "" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:425 +#: shared/web/calendaring.py:68 msgid "xFebruary" msgstr "xfévrier" @@ -2416,6 +2454,13 @@ msgstr "Ouganda" msgid "Headings" msgstr "Rubriques" +#: shared/web/VotesWeb.py:94 shared/web/VotesWeb.py:142 +#: shared/web/VotesWeb.py:185 shared/web/VotesWeb.py:229 +#: shared/web/VotesWeb.py:428 shared/web/VotesWeb.py:472 +#: shared/web/VotesWeb.py:532 shared/web/VotesWeb.py:590 +msgid "Blank Vote" +msgstr "Bulletin blanc" + #: shared/web/ForumsWeb.py:189 msgid "replies: %d" msgstr "réponses: %d" @@ -2424,7 +2469,7 @@ msgstr "r msgid "Currency" msgstr "Devise" -#: shared/common/kinds.py:1961 +#: shared/common/kinds.py:2022 #, fuzzy msgid "Item Type" msgstr "Type Mime" @@ -2441,10 +2486,6 @@ msgstr "M msgid "Enter the title of the document." msgstr "Entrez le titre de ce document." -#: shared/web/VirtualHostsWeb.py:78 -msgid "Template" -msgstr "Modèle" - #: shared/common/BrevesCommon.py:180 msgid "The election \"%s\" is closed." msgstr "L'élection \"%s\" est terminée." @@ -2457,7 +2498,7 @@ msgstr "Personnes" msgid "Chad" msgstr "Tchad" -#: shared/common/kinds.py:1003 shared/web/VirtualHostsWeb.py:69 +#: shared/common/kinds.py:1019 shared/common/VirtualHostsCommon.py:88 msgid "Glasnost Dispatcher ID" msgstr "Identifiant de contrôleur Glasnost" @@ -2465,19 +2506,19 @@ msgstr "Identifiant de contr msgid "Angola" msgstr "Angola" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:427 -msgid "xApril" -msgstr "xavril" +#: shared/web/PeopleWeb.py:91 +msgid "Nickname" +msgstr "Surnom" -#: shared/common/kinds.py:2273 shared/common/kinds.py:2275 +#: shared/common/kinds.py:2336 shared/common/kinds.py:2338 msgid "Readers" msgstr "Lecteurs" -#: shared/common/xhtmlgenerator.py:70 shared/web/ObjectsWeb.py:581 +#: shared/common/xhtmlgenerator.py:74 shared/web/ObjectsWeb.py:587 msgid "Delete" msgstr "Supprimer" -#: shared/common/CardsCommon.py:346 +#: shared/common/CardsCommon.py:391 msgid "card" msgstr "fiche" @@ -2501,7 +2542,7 @@ msgstr "Les msgid "Tunisia" msgstr "Tunisie" -#: shared/common/AppointmentsCommon.py:178 +#: shared/common/AppointmentsCommon.py:173 msgid "appointments" msgstr "rendez-vous" @@ -2510,9 +2551,9 @@ msgstr "rendez-vous" msgid "Every Type" msgstr "Tout le monde" -#: shared/web/geography.py:168 -msgid "Mauritius" -msgstr "Maurice" +#: shared/web/calendaring.py:68 +msgid "xMarch" +msgstr "xmars" #: shared/web/ElectionsWeb.py:541 msgid "" @@ -2526,7 +2567,7 @@ msgstr "" msgid "Indonesia" msgstr "Indonésie" -#: shared/common/xhtmlgenerator.py:96 +#: shared/common/xhtmlgenerator.py:100 msgid "Send by Email" msgstr "Envoyer par email" @@ -2536,10 +2577,14 @@ msgstr "Bolivie" #: shared/common/widgets.py:388 shared/common/widgets.py:413 #: shared/web/TranslationsWeb.py:123 shared/web/TranslationsWeb.py:133 -#: shared/web/widgets.py:391 +#: shared/web/widgets.py:400 msgid "None" msgstr "Aucun" +#: shared/common/scripts.py:87 +msgid "Source Code" +msgstr "Code source" + #: shared/web/geography.py:227 msgid "Ukraine" msgstr "Ukraine" @@ -2567,7 +2612,7 @@ msgstr "Article" msgid "China" msgstr "Chine" -#: shared/common/kinds.py:94 +#: shared/common/kinds.py:96 msgid "Default Value" msgstr "Valeur par défaut" @@ -2601,7 +2646,7 @@ msgstr "Pays-Bas" msgid "Translations" msgstr "Traductions" -#: shared/common/xhtmlgenerator.py:75 +#: shared/common/xhtmlgenerator.py:79 msgid "Evaluate" msgstr "Évaluer" @@ -2615,7 +2660,7 @@ msgstr "Vous n' #: shared/common/AuthenticationLoginPasswordCommon.py:57 #: shared/common/AuthenticationLdapCommon.py:56 -#: shared/web/AuthenticationLoginPasswordWeb.py:131 +#: shared/web/AuthenticationLoginPasswordWeb.py:135 msgid "Username" msgstr "Identifiant de connexion" @@ -2623,7 +2668,7 @@ msgstr "Identifiant de connexion" msgid "Benin" msgstr "Bénin" -#: shared/common/kinds.py:1888 +#: shared/common/kinds.py:1921 msgid "Python Identifier" msgstr "Identicateur Python" @@ -2631,7 +2676,7 @@ msgstr "Identicateur Python" msgid " to " msgstr " vers " -#: shared/common/kinds.py:295 shared/common/xhtmlgenerator.py:108 +#: shared/common/kinds.py:297 shared/common/xhtmlgenerator.py:112 #: shared/common/properties.py:55 shared/web/GroupsWeb.py:85 msgid "Type" msgstr "Type" @@ -2648,11 +2693,11 @@ msgstr "P msgid "Bermuda" msgstr "Bermudes" -#: shared/common/kinds.py:78 +#: shared/common/kinds.py:80 msgid "Balloon Help" msgstr "Bulle d'aide" -#: shared/common/xhtmlgenerator.py:84 +#: shared/common/xhtmlgenerator.py:88 msgid "Next" msgstr "Suite" @@ -2678,15 +2723,15 @@ msgstr "Salomon" msgid "Multi-Line Field" msgstr "" -#: shared/common/VirtualHostsCommon.py:205 +#: shared/common/VirtualHostsCommon.py:224 msgid "Virtual Host" msgstr "Hôte virtuel" -#: shared/web/AppointmentsWeb.py:79 +#: shared/web/AppointmentsWeb.py:81 msgid "End" msgstr "Fin" -#: shared/common/kinds.py:191 +#: shared/common/kinds.py:193 msgid "Creation Mode" msgstr "Mode de création" @@ -2699,7 +2744,7 @@ msgstr "R msgid "Subject" msgstr "Sujet" -#: shared/common/kinds.py:229 shared/common/kinds.py:2619 +#: shared/common/kinds.py:231 shared/common/kinds.py:2682 #, fuzzy msgid "Same As View Mode" msgstr "État dans le mode \"Utilisation\"" @@ -2708,7 +2753,7 @@ msgstr " msgid "Kenya" msgstr "Kenya" -#: shared/common/kinds.py:1146 +#: shared/common/kinds.py:1162 msgid "Function Name" msgstr "Nom de fonction" @@ -2724,7 +2769,7 @@ msgstr "Bulletins publics" msgid "Best Average" msgstr "Meilleure moyenne" -#: shared/common/kinds.py:3136 +#: shared/common/kinds.py:3213 msgid "Kind Name" msgstr "Nom du type" @@ -2749,7 +2794,7 @@ msgstr "" "type d'éléments." #: shared/common/BrevesCommon.py:204 shared/web/tools.py:644 -#: shared/web/BrevesWeb.py:165 +#: shared/web/BrevesWeb.py:165 talTranslations.py:6 msgid "Short News" msgstr "Brèves" @@ -2757,7 +2802,7 @@ msgstr "Br msgid "The last strings to leave untranslated" msgstr "Les dernières chaînes à laisser non traduites" -#: shared/common/xhtmlgenerator.py:64 +#: shared/common/xhtmlgenerator.py:68 msgid "Cancel" msgstr "Conserver" @@ -2777,9 +2822,9 @@ msgstr "S msgid "The election \"%s\"" msgstr "L'élection \"%s\"" -#: shared/web/AppointmentsWeb.py:641 +#: shared/web/AppointmentsWeb.py:633 msgid "Agenda" -msgstr "Calendar" +msgstr "Agenda" #: shared/web/geography.py:110 msgid "Gabon" @@ -2813,10 +2858,14 @@ msgstr "" msgid "Number of Results" msgstr "Nombre de résultats" -#: shared/web/widgets.py:842 +#: shared/web/widgets.py:839 msgid "URL" msgstr "URL" +#: shared/common/scripts.py:70 +msgid "Execute On Use" +msgstr "" + #: shared/web/geography.py:230 msgid "United States" msgstr "États-Unis" @@ -2829,15 +2878,19 @@ msgstr " msgid "System Files" msgstr "Fichiers système" -#: shared/web/AuthenticationLoginPasswordWeb.py:100 +#: shared/web/AuthenticationLoginPasswordWeb.py:103 msgid "Enter your new password." msgstr "Entrez votre nouveau mot de passe." +#: shared/web/geography.py:168 +msgid "Mauritius" +msgstr "Maurice" + #: shared/web/ElectionsWeb.py:870 msgid "Your last closed elections" msgstr "Vos dernières élections terminées" -#: shared/common/kinds.py:1081 shared/web/SystemFilesWeb.py:71 +#: shared/common/kinds.py:1097 shared/web/SystemFilesWeb.py:71 msgid "Path" msgstr "Chemin d'accès" @@ -2865,16 +2918,16 @@ msgstr "Cap-Vert" msgid "Authentication (LDAP)" msgstr "Authentification (LDAP)" -#: shared/common/VirtualHostsCommon.py:206 +#: shared/common/VirtualHostsCommon.py:225 msgid "virtual hosts" msgstr "hôtes virtuels" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 -msgid "March" -msgstr "Mars" +#: shared/common/GroupsCommon.py:406 +msgid "group" +msgstr "groupe" -#: shared/common/kinds.py:317 shared/common/kinds.py:3238 -#: shared/common/xhtmlgenerator.py:110 shared/common/widgets.py:102 +#: shared/common/kinds.py:319 shared/common/kinds.py:3344 +#: shared/common/xhtmlgenerator.py:114 shared/common/widgets.py:102 msgid "Widget" msgstr "Composant graphique" @@ -2899,11 +2952,11 @@ msgstr "" "PARTICULIER. Pour plus de détails, lisez la Licence Publique\n" "Générale GNU.\n" -#: shared/web/AppointmentsWeb.py:55 +#: shared/web/AppointmentsWeb.py:57 msgid "Categories Group" msgstr "Groupe des catégories" -#: shared/common/xhtmlgenerator.py:101 +#: shared/common/xhtmlgenerator.py:105 msgid "Translate" msgstr "Traduire" @@ -2911,13 +2964,20 @@ msgstr "Traduire" msgid "Guinea-Bissau" msgstr "Guinée-Bissau" -#: shared/common/AppointmentsCommon.py:68 -msgid "Select the group that holds categories for the appointments." +#: shared/web/PeopleWeb.py:273 +msgid "" +"The account has successfully been created, but a SMTP error has occurred.\n" +"Maybe the Mail Transport Agent on the Glasnost server is badly configured." msgstr "" -"Sélectionnez le groupe contenant les catégories possibles pour les rendez-" -"vous." +"Le compte a été créé avec succès, mais une erreur SMTP est survenue.\n" +"Il se peut que l'Agent de Transport des Mails (MTA) installé sur le serveur " +"Glasnost soit mal configuré." -#: glasnost-web/about.py:290 shared/common/xhtmlgenerator.py:57 +#: shared/web/CardsWeb.py:203 +msgid "Definition of Card \"%s\"" +msgstr "Définition de la fiche \"%s\"" + +#: glasnost-web/about.py:290 shared/common/xhtmlgenerator.py:61 msgid "About Glasnost" msgstr "À propos de Glasnost" @@ -2948,11 +3008,11 @@ msgstr "" msgid "Author" msgstr "Auteur" -#: shared/common/VirtualHostsCommon.py:204 +#: shared/common/VirtualHostsCommon.py:223 msgid "virtual host" msgstr "hôte virtuel" -#: shared/web/AuthenticationLoginPasswordWeb.py:91 +#: shared/web/AuthenticationLoginPasswordWeb.py:94 msgid "Enter your current password." msgstr "Entrez votre mot de passe actuel." @@ -2960,15 +3020,15 @@ msgstr "Entrez votre mot de passe actuel." msgid "Sao Tome and Principe" msgstr "Sao Tomé-et-Principe" -#: shared/common/kinds.py:2173 +#: shared/common/kinds.py:2234 msgid "Choose the author(s) for this object." msgstr "Sélectionnez le ou les auteurs de ce document." -#: shared/common/xhtmlgenerator.py:107 +#: shared/common/xhtmlgenerator.py:111 msgid "List" msgstr "Liste" -#: shared/common/xhtmlgenerator.py:62 +#: shared/common/xhtmlgenerator.py:66 msgid "Apply" msgstr "Appliquer" @@ -2976,13 +3036,13 @@ msgstr "Appliquer" msgid "Greece" msgstr "Grèce" -#: shared/common/kinds.py:3208 shared/common/UploadFilesCommon.py:135 +#: shared/common/kinds.py:3314 shared/common/UploadFilesCommon.py:135 #: shared/common/uploads.py:74 shared/web/UploadFilesWeb.py:76 #: shared/web/uploads.py:66 msgid "File" msgstr "Fichier" -#: shared/common/kinds.py:961 shared/common/kinds.py:963 +#: shared/common/kinds.py:977 shared/common/kinds.py:979 msgid "Date & Time" msgstr "Date & heure" @@ -2994,7 +3054,7 @@ msgstr "Termin msgid "Enter the name of this heading." msgstr "Entrez le nom de cette rubrique." -#: shared/web/AppointmentsWeb.py:636 shared/web/widgets.py:488 +#: shared/web/AppointmentsWeb.py:628 shared/web/widgets.py:484 msgid "Year" msgstr "Année" @@ -3002,14 +3062,14 @@ msgstr "Ann msgid "Results" msgstr "Résultats" -#: shared/common/xhtmlgenerator.py:86 -#: shared/web/AuthenticationLoginPasswordWeb.py:405 -#: shared/web/AuthenticationLoginPasswordWeb.py:589 +#: shared/common/xhtmlgenerator.py:90 +#: shared/web/AuthenticationLoginPasswordWeb.py:411 +#: shared/web/AuthenticationLoginPasswordWeb.py:584 #: shared/web/PeopleWeb.py:159 msgid "New Account" msgstr "Nouveau compte" -#: shared/common/xhtmlgenerator.py:97 +#: shared/common/xhtmlgenerator.py:101 msgid "Send Password by Email" msgstr "Envoyer mot de passe par email" @@ -3049,11 +3109,11 @@ msgstr "Maroc" msgid "Japan" msgstr "Japon" -#: shared/common/kinds.py:644 shared/common/PageNamesCommon.py:99 +#: shared/common/kinds.py:660 shared/common/PageNamesCommon.py:99 msgid "Alias" msgstr "Alias" -#: shared/common/kinds.py:2589 +#: shared/common/kinds.py:2652 #, fuzzy msgid "Access in Creation Mode" msgstr "Date de création" @@ -3064,11 +3124,11 @@ msgstr "" "Sélectionnez les personnes ou les groupes qui pourront participer à cette " "élection." -#: shared/common/VirtualHostsCommon.py:88 +#: shared/common/VirtualHostsCommon.py:96 msgid "Enter the host name." msgstr "Entrez le nom d'hôte." -#: shared/common/CardsCommon.py:349 +#: shared/common/CardsCommon.py:394 msgid "Cards" msgstr "Fiches" @@ -3096,6 +3156,10 @@ msgstr "Samoa" msgid "Botswana" msgstr "Botswana" +#: shared/web/ForumsWeb.py:195 +msgid "Replies List" +msgstr "Liste des réponses" + #: shared/common/AtomsCommon.py:78 msgid "Atom" msgstr "Atome" @@ -3113,11 +3177,11 @@ msgstr "Jordanie" msgid "The last short news" msgstr "Les dernières brèves" -#: shared/common/widgets.py:395 shared/common/widgets.py:417 +#: shared/common/widgets.py:395 shared/common/widgets.py:421 msgid "Option Menu" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:266 +#: shared/web/AuthenticationLoginPasswordWeb.py:270 msgid "Changing Password" msgstr "Changement de mot de passe" @@ -3129,14 +3193,10 @@ msgstr "Liechtenstein" msgid "Format" msgstr "Format" -#: shared/web/PeopleWeb.py:273 -msgid "" -"The account has successfully been created, but a SMTP error has occurred.\n" -"Maybe the Mail Transport Agent on the Glasnost server is badly configured." -msgstr "" -"Le compte a été créé avec succès, mais une erreur SMTP est survenue.\n" -"Il se peut que l'Agent de Transport des Mails (MTA) installé sur le serveur " -"Glasnost soit mal configuré." +#: shared/common/scripts.py:83 +#, fuzzy +msgid "TextArea" +msgstr "Texte" #: shared/common/UploadFilesCommon.py:64 msgid "Select the file to upload." @@ -3154,7 +3214,7 @@ msgstr "Nouvelle personne" msgid "Suriname" msgstr "Suriname" -#: shared/web/VirtualHostsWeb.py:59 +#: shared/common/VirtualHostsCommon.py:56 msgid "Default Virtual Host" msgstr "Hôte virtuel par défaut" @@ -3166,7 +3226,7 @@ msgstr "Acc msgid "Kind of Ballot" msgstr "Type de bulletin" -#: shared/common/kinds.py:2078 +#: shared/common/kinds.py:2139 #, fuzzy msgid "Select accepted types of items." msgstr "Choisissez le mode de scrutin." @@ -3191,7 +3251,7 @@ msgstr "Le chemin d'acc msgid "Palau" msgstr "Palaos" -#: shared/common/xhtmlgenerator.py:99 +#: shared/common/xhtmlgenerator.py:103 msgid "Spell Check" msgstr "Orthographe" @@ -3199,7 +3259,7 @@ msgstr "Orthographe" msgid "ReStructured Text" msgstr "Texte ReStructuré" -#: shared/common/widgets.py:492 +#: shared/common/widgets.py:502 #, fuzzy msgid "Combo Box" msgstr "Comores" @@ -3222,8 +3282,8 @@ msgstr "" "\n" "%s\n" -#: shared/common/kinds.py:700 shared/common/kinds.py:1127 -#: shared/common/kinds.py:1300 +#: shared/common/kinds.py:716 shared/common/kinds.py:1143 +#: shared/common/kinds.py:1316 msgid "Numbers" msgstr "Nombres" @@ -3235,11 +3295,15 @@ msgstr "Fichier syst msgid "Holy See (Vatican City State)" msgstr "Saint-Siège, ou Vatican" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:428 +#: shared/web/calendaring.py:69 msgid "xMay" msgstr "xmai" -#: shared/common/widgets.py:431 shared/web/UploadFilesWeb.py:94 +#: shared/common/kinds.py:3285 +msgid "Script" +msgstr "" + +#: shared/common/widgets.py:441 shared/web/UploadFilesWeb.py:94 #: shared/web/uploads.py:84 msgid "Height" msgstr "Hauteur" @@ -3248,10 +3312,10 @@ msgstr "Hauteur" msgid "Lebanon" msgstr "Liban" -#: shared/common/kinds.py:264 shared/common/kinds.py:1039 -#: shared/common/kinds.py:1113 shared/common/kinds.py:1870 -#: shared/common/kinds.py:2535 shared/common/kinds.py:2537 -#: shared/web/AppointmentsWeb.py:65 shared/web/BrevesWeb.py:63 +#: shared/common/kinds.py:266 shared/common/kinds.py:1055 +#: shared/common/kinds.py:1129 shared/common/kinds.py:1898 +#: shared/common/kinds.py:2598 shared/common/kinds.py:2600 +#: shared/web/AppointmentsWeb.py:67 shared/web/BrevesWeb.py:63 #: shared/web/CommentsWeb.py:68 shared/web/ArticlesWeb.py:67 #: shared/web/ArticlesWeb.py:83 msgid "Text" @@ -3261,7 +3325,7 @@ msgstr "Texte" msgid "German" msgstr "Allemand" -#: shared/web/widgets.py:548 +#: shared/web/widgets.py:545 msgid "hour" msgstr "heure" @@ -3269,25 +3333,29 @@ msgstr "heure" msgid "Korea, Republic of" msgstr "Corée du Sud" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:435 +#: shared/web/calendaring.py:71 msgid "xDecember" msgstr "xdécembre" -#: shared/web/geography.py:184 -msgid "Panama" -msgstr "Panama" +#: shared/web/calendaring.py:60 +msgid "March" +msgstr "Mars" -#: shared/common/kinds.py:262 +#: shared/common/kinds.py:264 #, fuzzy msgid "Text Format" msgstr "Format" -#: shared/common/kinds.py:1291 +#: shared/common/kinds.py:1307 #, fuzzy msgid "Maximum Value" msgstr "Valeur année maximale" -#: shared/common/kinds.py:695 shared/common/kinds.py:799 +#: shared/web/ElectionsWeb.py:135 +msgid "Approval" +msgstr "Assentiment" + +#: shared/common/kinds.py:711 shared/common/kinds.py:815 #, fuzzy msgid "Sort Labels" msgstr "Libellés" @@ -3320,7 +3388,7 @@ msgstr "Personne" msgid "Sudan" msgstr "Soudan" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Wednesday" msgstr "Mercredi" @@ -3336,13 +3404,13 @@ msgstr "Philippines" msgid "Denmark" msgstr "Danemark" -#: shared/common/kinds.py:2592 shared/common/kinds.py:2606 -#: shared/common/kinds.py:2620 shared/common/kinds.py:2634 +#: shared/common/kinds.py:2655 shared/common/kinds.py:2669 +#: shared/common/kinds.py:2683 shared/common/kinds.py:2697 #, fuzzy msgid "Embedded" msgstr "Terminée" -#: shared/web/widgets.py:547 +#: shared/web/widgets.py:544 msgid "day" msgstr "jour" @@ -3356,19 +3424,19 @@ msgstr "" "(vous aurez à changer l'état de l'élection vers \"clôturée\" si vous voulez " "que les résultats soient affichés)" -#: shared/common/kinds.py:178 +#: shared/common/kinds.py:180 msgid "Label (plural form)" msgstr "Libellé (forme plurielle)" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/calendaring.py:63 msgid "October" msgstr "Octobre" -#: shared/common/kinds.py:268 shared/web/ArticlesWeb.py:82 +#: shared/common/kinds.py:270 shared/web/ArticlesWeb.py:82 msgid "SPIP" msgstr "SPIP" -#: shared/common/kinds.py:2266 +#: shared/common/kinds.py:2329 msgid "Select the people and groups who are allowed to read the item." msgstr "" "Sélectionnez les personnes et les groupes qui seront autorisés à lire cet " @@ -3378,6 +3446,10 @@ msgstr "" msgid "Main Heading" msgstr "Rubrique principale" +#: shared/common/scripts.py:58 +msgid "Execute On Create" +msgstr "" + #: glasnost-web/sessions.py:101 shared/web/ElectionsWeb.py:85 msgid "End Time" msgstr "Date de clôture" @@ -3390,11 +3462,11 @@ msgstr "Nouvel objet" msgid "Being Written" msgstr "En cours de rédaction" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 +#: shared/web/calendaring.py:61 msgid "June" msgstr "Juin" -#: shared/common/xhtmlgenerator.py:71 +#: shared/common/xhtmlgenerator.py:75 msgid "Differences" msgstr "Différences" @@ -3406,15 +3478,15 @@ msgstr "br msgid "GNU GENERAL PUBLIC LICENSE" msgstr "LICENCE PUBLIQUE GÉNÉRALE GNU" -#: shared/common/kinds.py:1129 +#: shared/common/kinds.py:1145 msgid "Float Number" msgstr "Nombre flottant" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "August" msgstr "Août" -#: shared/common/widgets.py:427 +#: shared/common/widgets.py:437 #, fuzzy msgid "Show Preview" msgstr "Aperçu" @@ -3431,7 +3503,7 @@ msgstr " msgid "forums" msgstr "forums" -#: shared/common/kinds.py:1952 +#: shared/common/kinds.py:2013 msgid "Minimum Number of Items to Edit" msgstr "" @@ -3443,7 +3515,7 @@ msgstr "Superflue" msgid "Spellcheck Entries" msgstr "Vérifie l'orthographe" -#: shared/common/xhtmlgenerator.py:61 +#: shared/common/xhtmlgenerator.py:65 msgid "Add Candidate" msgstr "Ajouter un candidat" @@ -3451,14 +3523,22 @@ msgstr "Ajouter un candidat" msgid "Australia" msgstr "Australie" -#: shared/common/xhtmlgenerator.py:82 +#: shared/common/xhtmlgenerator.py:86 talTranslations.py:13 msgid "Exit" msgstr "Sortir" -#: shared/web/AuthenticationLoginPasswordWeb.py:109 +#: shared/web/AuthenticationLoginPasswordWeb.py:112 msgid "Re-enter your new password." msgstr "Réentrez votre nouveau mot de passe." +#: shared/web/ElectionsWeb.py:113 +msgid "State" +msgstr "État" + +#: shared/web/geography.py:229 +msgid "United Kingdom" +msgstr "Royaume-Uni" + #: shared/common/widgets.py:208 msgid "Single-Line Text Entry Field" msgstr "" @@ -3475,7 +3555,7 @@ msgstr "Les derniers fichiers syst msgid "Kuwait" msgstr "Koweït" -#: shared/common/xhtmlgenerator.py:109 +#: shared/common/xhtmlgenerator.py:113 msgid "Utilization" msgstr "Utilisation" @@ -3491,7 +3571,7 @@ msgstr "Cat msgid "Counting of the Votes" msgstr "Dépouillement des votes" -#: shared/common/xhtmlgenerator.py:63 +#: shared/common/xhtmlgenerator.py:67 msgid "Back" msgstr "Retour" @@ -3499,11 +3579,11 @@ msgstr "Retour" msgid "Sessions History" msgstr "Historique des sessions" -#: glasnost-web/index.py:180 +#: glasnost-web/index.py:180 talTranslations.py:17 msgid "Home" msgstr "Accueil" -#: shared/common/CardsCommon.py:344 +#: shared/common/CardsCommon.py:389 msgid "New Card" msgstr "Nouvelle fiche" @@ -3520,7 +3600,7 @@ msgid "Dutch" msgstr "Néerlandais" #: shared/web/AuthenticationWeb.py:155 -#: shared/web/AuthenticationLoginPasswordWeb.py:206 +#: shared/web/AuthenticationLoginPasswordWeb.py:210 #: shared/web/AuthenticationLibertyAllianceWeb.py:126 #: shared/web/AuthenticationLdapWeb.py:129 #, fuzzy @@ -3541,16 +3621,13 @@ msgstr "Nombre d'arguments" msgid "Enter your email address." msgstr "Entrez l'adresse électronique." -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 -msgid "Tuesday" -msgstr "Mardi" +#: shared/proxy/ObjectsProxy.py:1222 shared/proxy/ObjectsProxy.py:1279 +msgid " (at <%s>)" +msgstr " ( chez <%s>)" -#: shared/web/VotesWeb.py:94 shared/web/VotesWeb.py:142 -#: shared/web/VotesWeb.py:185 shared/web/VotesWeb.py:229 -#: shared/web/VotesWeb.py:428 shared/web/VotesWeb.py:472 -#: shared/web/VotesWeb.py:532 shared/web/VotesWeb.py:590 -msgid "Blank Vote" -msgstr "Bulletin blanc" +#: shared/web/PeopleWeb.py:80 +msgid "Last Name" +msgstr "Nom" #: shared/common/widgets.py:350 msgid "Default" @@ -3560,12 +3637,12 @@ msgstr "Valeur par d msgid "forum" msgstr "forum" -#: shared/common/xhtmlgenerator.py:65 -#: shared/web/AuthenticationLoginPasswordWeb.py:409 +#: shared/common/xhtmlgenerator.py:69 +#: shared/web/AuthenticationLoginPasswordWeb.py:415 msgid "Change Password" msgstr "Changer de mot de passe" -#: shared/common/kinds.py:1028 +#: shared/common/kinds.py:1044 msgid "Duration" msgstr "Durée" @@ -3597,13 +3674,14 @@ msgstr "Vos derni msgid "objects" msgstr "objets" -#: shared/common/kinds.py:1097 +#: shared/common/kinds.py:1113 msgid "File Path" msgstr "Chemin d'accès" -#: shared/common/AtomsCommon.py:79 -msgid "atoms" -msgstr "atomes" +#: shared/web/AuthenticationLoginPasswordWeb.py:85 +#, fuzzy +msgid "Enter the username you use on this site." +msgstr "Entrez le nom de cet élément." #: shared/web/geography.py:81 msgid "Central African Republic" @@ -3613,7 +3691,7 @@ msgstr "R msgid "Finland" msgstr "Finlande" -#: shared/common/kinds.py:2830 shared/web/GroupsWeb.py:137 +#: shared/common/kinds.py:2902 shared/web/GroupsWeb.py:137 msgid "Items" msgstr "Éléments" @@ -3637,7 +3715,7 @@ msgstr "" msgid "person" msgstr "personne" -#: shared/common/kinds.py:681 +#: shared/common/kinds.py:697 msgid "True" msgstr "Vrai" @@ -3646,26 +3724,26 @@ msgstr "Vrai" msgid "Translation" msgstr "Traduction" -#: shared/common/kinds.py:2433 +#: shared/common/kinds.py:2496 #, fuzzy msgid "Glasnost Server ID" msgstr "Identifiant de contrôleur Glasnost" -#: shared/common/kinds.py:2952 shared/common/kinds.py:2954 +#: shared/common/kinds.py:3029 shared/common/kinds.py:3031 msgid "Modification Time" msgstr "Date de modification" -#: shared/common/kinds.py:1373 shared/common/kinds.py:2593 -#: shared/common/kinds.py:2607 shared/common/kinds.py:2621 -#: shared/common/kinds.py:2635 +#: shared/common/kinds.py:1389 shared/common/kinds.py:2656 +#: shared/common/kinds.py:2670 shared/common/kinds.py:2684 +#: shared/common/kinds.py:2698 msgid "Link" msgstr "Lien" -#: shared/common/kinds.py:266 shared/web/ArticlesWeb.py:81 +#: shared/common/kinds.py:268 shared/web/ArticlesWeb.py:81 msgid "HTML" msgstr "HTML" -#: shared/common/kinds.py:2604 +#: shared/common/kinds.py:2667 #, fuzzy msgid "Access in Edition Mode" msgstr "Identique au mode d'édition" @@ -3682,11 +3760,11 @@ msgstr "Italie" msgid "Korea, Democratic People's Republic of" msgstr "Corée du Nord" -#: shared/common/xhtmlgenerator.py:66 +#: shared/common/xhtmlgenerator.py:70 msgid "Change Translation" msgstr "Changer la traduction" -#: shared/common/kinds.py:1115 +#: shared/common/kinds.py:1131 msgid "OpenPGP Fingerprint" msgstr "Empreinte OpenPGP" @@ -3699,11 +3777,11 @@ msgstr "Les votes de l' msgid "preferences" msgstr "préférences" -#: shared/common/xhtmlgenerator.py:88 +#: shared/common/xhtmlgenerator.py:92 msgid "Pester Absentionnists" msgstr "Relancer les abstentionnistes" -#: shared/web/widgets.py:1639 +#: shared/web/widgets.py:1641 msgid "other:" msgstr "autre :" @@ -3719,7 +3797,7 @@ msgstr "Norv msgid "Voter Token" msgstr "Jeton d'électeur" -#: shared/web/widgets.py:1533 +#: shared/web/widgets.py:1535 msgid "download" msgstr "télécharger" @@ -3727,19 +3805,19 @@ msgstr "t msgid "Slovakia" msgstr "Slovaquie" -#: glasnost-web/about.py:59 shared/common/xhtmlgenerator.py:105 +#: glasnost-web/about.py:59 shared/common/xhtmlgenerator.py:109 msgid "Version" msgstr "Version" -#: shared/web/ElectionsWeb.py:113 -msgid "State" -msgstr "État" +#: shared/web/widgets.py:547 +msgid "second" +msgstr "seconde" -#: shared/common/kinds.py:310 +#: shared/common/kinds.py:312 msgid "In External File" msgstr "Dans un fichier externe" -#: shared/web/widgets.py:1640 +#: shared/web/widgets.py:1642 msgid "Label" msgstr "Libellé" @@ -3747,7 +3825,7 @@ msgstr "Libell msgid "DocBook - %s" msgstr "DocBook - %s" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:424 +#: shared/web/calendaring.py:68 msgid "xJanuary" msgstr "xjanvier" @@ -3759,11 +3837,12 @@ msgstr "Turquie" msgid "heading" msgstr "rubrique" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:431 +#: shared/web/calendaring.py:70 msgid "xAugust" msgstr "xaoût" -#: shared/web/GlasnostTALGenerator.py:99 +#: shared/common/xhtmlgenerator.py:191 shared/web/GlasnostTALGenerator.py:102 +#: talTranslations.py:14 msgid "Go" msgstr "Aller" @@ -3771,11 +3850,10 @@ msgstr "Aller" msgid "LDAP" msgstr "LDAP" -#: shared/common/kinds.py:806 shared/web/GradesWeb.py:125 -#: shared/web/VotesWeb.py:421 shared/web/VotesWeb.py:465 -#: shared/web/VotesWeb.py:525 shared/web/VotesWeb.py:583 -msgid "Choice" -msgstr "Choix" +#: shared/common/GroupsCommon.py:279 +#, fuzzy +msgid "Select the items to intersect." +msgstr "Choisissez le mode de scrutin." #: shared/common/RubricsCommon.py:69 msgid "Select the front article of this heading." @@ -3785,27 +3863,31 @@ msgstr "S msgid "Enter your name (if you want)." msgstr "Entrez votre nom (si vous voulez)." -#: shared/common/kinds.py:685 shared/common/kinds.py:787 +#: shared/common/kinds.py:701 shared/common/kinds.py:803 msgid "Labels" msgstr "Libellés" -#: shared/common/kinds.py:285 +#: shared/common/kinds.py:287 msgid "Maximum Number of Characters" msgstr "" -#: shared/common/kinds.py:680 +#: shared/common/kinds.py:696 msgid "False" msgstr "Faux" -#: shared/web/widgets.py:549 +#: shared/common/kinds.py:1916 +msgid "Invalid values" +msgstr "" + +#: shared/web/widgets.py:546 msgid "minute" msgstr "minute" -#: shared/web/AppointmentsWeb.py:633 +#: shared/web/AppointmentsWeb.py:625 msgid "Week" msgstr "Semaine" -#: shared/common/kinds.py:171 +#: shared/common/kinds.py:173 msgid "Enter a user-friendly field name" msgstr "" @@ -3817,7 +3899,7 @@ msgstr "Ann msgid "Description" msgstr "Description" -#: shared/common/kinds.py:653 +#: shared/common/kinds.py:669 msgid "Amount" msgstr "Montant" @@ -3825,11 +3907,12 @@ msgstr "Montant" msgid "Authentication (Login/Password)" msgstr "Authentification (Identifiant/mot de passe)" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:433 -msgid "xOctober" -msgstr "xoctobre" +#: shared/common/properties.py:53 +#, fuzzy +msgid "Select a field type" +msgstr "Sélectionnez le fichier à télécharger." -#: shared/common/kinds.py:1191 +#: shared/common/kinds.py:1207 #, fuzzy msgid "Glasnost Object" msgstr "Identifiant d'objet" @@ -3846,11 +3929,11 @@ msgstr "Kiribati" msgid "Cards Models" msgstr "" -#: shared/common/AppointmentsCommon.py:176 +#: shared/common/AppointmentsCommon.py:171 msgid "appointment" msgstr "rendez-vous" -#: shared/common/AppointmentsCommon.py:175 +#: shared/common/AppointmentsCommon.py:170 msgid "New Appointment" msgstr "Nouveau rendez-vous" @@ -3858,7 +3941,7 @@ msgstr "Nouveau rendez-vous" msgid "Choose the candidates for this election." msgstr "Sélectionnez les candidats de l'élection." -#: shared/web/AppointmentsWeb.py:631 shared/web/widgets.py:517 +#: shared/web/AppointmentsWeb.py:623 shared/web/widgets.py:514 msgid "Day" msgstr "Jour" @@ -3870,19 +3953,24 @@ msgstr "" msgid "Russian Federation" msgstr "Russie" -#: shared/common/kinds.py:2183 shared/common/kinds.py:2185 -msgid "Authors" -msgstr "Auteurs" +#: shared/web/AuthenticationLoginPasswordWeb.py:86 +#, fuzzy +msgid "Enter your password." +msgstr "Entrez votre nouveau mot de passe." -#: shared/common/kinds.py:265 shared/web/ArticlesWeb.py:80 +#: shared/common/kinds.py:267 shared/web/ArticlesWeb.py:80 msgid "DocBook" msgstr "DocBook" +#: shared/web/calendaring.py:69 +msgid "xApril" +msgstr "xavril" + #: shared/common/ObjectsCommon.py:206 msgid "Object" msgstr "Objet" -#: shared/common/kinds.py:3106 +#: shared/common/kinds.py:3183 msgid "Input Connector" msgstr "Connecteur d'entrée" @@ -3907,7 +3995,7 @@ msgstr "contact" msgid "votes" msgstr "votes" -#: shared/common/kinds.py:1331 +#: shared/common/kinds.py:1347 msgid "Integer Choice" msgstr "Liste à valeurs entières" @@ -3947,7 +4035,7 @@ msgstr "Entrez le pr msgid "Swaziland" msgstr "Swaziland" -#: shared/common/kinds.py:227 +#: shared/common/kinds.py:229 #, fuzzy msgid "Utilization Mode" msgstr "Utilisation" @@ -3956,9 +4044,10 @@ msgstr "Utilisation" msgid "File Name" msgstr "Nom de fichier" -#: shared/web/widgets.py:550 -msgid "second" -msgstr "seconde" +#: shared/common/kinds.py:3200 shared/common/instructions.py:316 +#: shared/common/values.py:53 +msgid "Kind" +msgstr "Sorte" #: shared/common/widgets.py:297 #, fuzzy @@ -3981,24 +4070,24 @@ msgstr "Somalie" msgid "Unknown" msgstr "Inconnu" -#: shared/web/AppointmentsWeb.py:88 shared/web/ElectionsWeb.py:128 -#: shared/web/BrevesWeb.py:73 shared/web/CommentsWeb.py:85 -#: shared/web/ForumsWeb.py:71 shared/web/widgets.py:836 -#: shared/web/ArticlesWeb.py:92 shared/web/SystemFilesWeb.py:82 -#: shared/web/UploadFilesWeb.py:106 shared/web/VirtualHostsWeb.py:81 +#: shared/common/VirtualHostsCommon.py:126 shared/web/AppointmentsWeb.py:90 +#: shared/web/ElectionsWeb.py:128 shared/web/BrevesWeb.py:73 +#: shared/web/CommentsWeb.py:85 shared/web/ForumsWeb.py:71 +#: shared/web/widgets.py:833 shared/web/ArticlesWeb.py:92 +#: shared/web/SystemFilesWeb.py:82 shared/web/UploadFilesWeb.py:106 msgid "Title" msgstr "Titre" -#: shared/common/ArticlesCommon.py:57 -msgid "Select the author(s) of the document." -msgstr "Sélectionnez le ou les auteurs de ce document." +#: shared/common/kinds.py:2244 shared/common/kinds.py:2246 +msgid "Authors" +msgstr "Auteurs" #: shared/common/things.py:149 #, fuzzy msgid "Internal Name" msgstr "Interne" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:430 +#: shared/web/calendaring.py:70 msgid "xJuly" msgstr "xjuillet" diff --git a/po/glasnost-web/messages.pot b/po/glasnost-web/messages.pot index 08d2d7d8..2c17f163 100644 --- a/po/glasnost-web/messages.pot +++ b/po/glasnost-web/messages.pot @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: Wed Sep 24 21:17:49 2003\n" +"POT-Creation-Date: Wed Oct 1 18:00:09 2003\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -15,7 +15,7 @@ msgstr "" "Generated-By: pygettext.py 1.3\n" -#: shared/common/VirtualHostsCommon.py:207 +#: shared/common/VirtualHostsCommon.py:226 msgid "Virtual Hosts" msgstr "" @@ -27,6 +27,10 @@ msgstr "" msgid "Liberty Alliance Server" msgstr "" +#: shared/common/AtomsCommon.py:79 +msgid "atoms" +msgstr "" + #: shared/web/geography.py:150 msgid "Sri Lanka" msgstr "" @@ -39,11 +43,11 @@ msgstr "" msgid "Yugoslavia" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:136 +#: shared/web/AuthenticationLoginPasswordWeb.py:140 msgid "Enter the password." msgstr "" -#: shared/common/kinds.py:111 +#: shared/common/kinds.py:113 msgid "Private" msgstr "" @@ -51,11 +55,11 @@ msgstr "" msgid "New Translation" msgstr "" -#: shared/common/kinds.py:1971 +#: shared/common/kinds.py:2032 msgid "Sequence" msgstr "" -#: shared/web/GlasnostTALGenerator.py:98 +#: shared/web/GlasnostTALGenerator.py:101 talTranslations.py:4 msgid "You are not logged in" msgstr "" @@ -63,7 +67,7 @@ msgstr "" msgid "Secret Ballot" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:341 +#: shared/web/AuthenticationLoginPasswordWeb.py:347 msgid "Changing User Password" msgstr "" @@ -71,19 +75,15 @@ msgstr "" msgid "Enter your nickname (optional)." msgstr "" -#: shared/web/PeopleWeb.py:91 -msgid "Nickname" -msgstr "" - #: shared/web/geography.py:92 msgid "Cyprus" msgstr "" -#: shared/common/kinds.py:193 shared/common/kinds.py:2591 +#: shared/common/kinds.py:195 shared/common/kinds.py:2654 msgid "Same As Edition Mode" msgstr "" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:434 +#: shared/web/calendaring.py:71 msgid "xNovember" msgstr "" @@ -91,11 +91,11 @@ msgstr "" msgid "Check Box" msgstr "" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 -msgid "April" +#: shared/common/scripts.py:66 +msgid "Execute On Submit" msgstr "" -#: shared/common/kinds.py:2991 +#: shared/common/kinds.py:3068 msgid "User Token" msgstr "" @@ -103,11 +103,11 @@ msgstr "" msgid "Are you sure you want to delete the %s?" msgstr "" -#: shared/common/CardsCommon.py:70 shared/common/kinds.py:1061 +#: shared/common/CardsCommon.py:70 shared/common/kinds.py:1077 msgid "Fields" msgstr "" -#: shared/common/xhtmlgenerator.py:73 +#: shared/common/xhtmlgenerator.py:77 msgid "Edit" msgstr "" @@ -115,7 +115,7 @@ msgstr "" msgid "New Heading" msgstr "" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 +#: shared/web/calendaring.py:60 msgid "February" msgstr "" @@ -123,14 +123,14 @@ msgstr "" msgid "Liberia" msgstr "" -#: shared/common/kinds.py:2569 +#: shared/common/kinds.py:2632 msgid "Structure" msgstr "" #: shared/common/AuthenticationLoginPasswordCommon.py:64 -#: shared/common/kinds.py:1872 shared/common/AuthenticationLdapCommon.py:63 +#: shared/common/kinds.py:1900 shared/common/AuthenticationLdapCommon.py:63 #: shared/web/AuthenticationLoginPasswordWeb.py:67 -#: shared/web/AuthenticationLoginPasswordWeb.py:139 +#: shared/web/AuthenticationLoginPasswordWeb.py:143 msgid "Password" msgstr "" @@ -154,15 +154,23 @@ msgstr "" msgid "Never" msgstr "" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 +#: shared/web/calendaring.py:61 msgid "May" msgstr "" +#: talTranslations.py:7 +msgid "Sessions" +msgstr "" + #: shared/web/TranslationsWeb.py:140 msgid "From " msgstr "" -#: shared/common/kinds.py:87 +#: shared/common/kinds.py:1988 +msgid "Script Source Code" +msgstr "" + +#: shared/common/kinds.py:89 msgid "Containers" msgstr "" @@ -174,7 +182,7 @@ msgstr "" msgid "Needed" msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Thursday" msgstr "" @@ -182,11 +190,7 @@ msgstr "" msgid "Bhutan" msgstr "" -#: shared/common/GroupsCommon.py:279 -msgid "Select the items to intersect." -msgstr "" - -#: shared/common/kinds.py:2835 shared/web/GroupsWeb.py:90 +#: shared/common/kinds.py:2907 shared/web/GroupsWeb.py:90 msgid "Union" msgstr "" @@ -206,7 +210,7 @@ msgstr "" msgid "Burundi" msgstr "" -#: shared/common/kinds.py:269 +#: shared/common/kinds.py:271 msgid "Preformatted Text" msgstr "" @@ -214,7 +218,15 @@ msgstr "" msgid "IP Address" msgstr "" -#: shared/common/kinds.py:1345 +#: talTranslations.py:19 +msgid "Navigation" +msgstr "" + +#: talTranslations.py:16 +msgid ", l'entreprise ouverte" +msgstr "" + +#: shared/common/kinds.py:1361 msgid "Select the language used to fill in this card." msgstr "" @@ -234,8 +246,8 @@ msgstr "" msgid "Bahamas" msgstr "" -#: shared/common/kinds.py:195 shared/common/kinds.py:213 -#: shared/common/kinds.py:231 shared/common/kinds.py:249 +#: shared/common/kinds.py:197 shared/common/kinds.py:215 +#: shared/common/kinds.py:233 shared/common/kinds.py:251 msgid "Read Only" msgstr "" @@ -243,7 +255,7 @@ msgstr "" msgid "Grenada" msgstr "" -#: shared/common/kinds.py:956 +#: shared/common/kinds.py:972 msgid "Date & Time Format" msgstr "" @@ -267,7 +279,7 @@ msgstr "" msgid "Debian Maintainers" msgstr "" -#: shared/common/kinds.py:1966 +#: shared/common/kinds.py:2027 msgid "Minimum Number of Items" msgstr "" @@ -275,11 +287,11 @@ msgstr "" msgid "Losses" msgstr "" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 +#: shared/web/calendaring.py:60 msgid "January" msgstr "" -#: shared/common/xhtmlgenerator.py:68 +#: shared/common/xhtmlgenerator.py:72 msgid "Compute" msgstr "" @@ -287,7 +299,7 @@ msgstr "" msgid "files" msgstr "" -#: shared/common/kinds.py:3262 +#: shared/common/kinds.py:3368 msgid "Widget Name" msgstr "" @@ -295,18 +307,18 @@ msgstr "" #: glasnost-web/about.py:124 glasnost-web/about.py:134 #: glasnost-web/about.py:154 shared/web/TranslationsWeb.py:165 #: shared/web/TranslationsWeb.py:712 shared/web/GradesWeb.py:85 -#: shared/web/widgets.py:142 shared/web/widgets.py:836 -#: shared/web/widgets.py:842 shared/web/VotesWeb.py:157 +#: shared/web/widgets.py:144 shared/web/widgets.py:833 +#: shared/web/widgets.py:839 shared/web/VotesWeb.py:157 #: shared/web/VotesWeb.py:244 msgid ":" msgstr "" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/calendaring.py:63 msgid "November" msgstr "" -#: shared/web/ElectionsWeb.py:135 -msgid "Approval" +#: shared/web/TranslationsWeb.py:360 +msgid "Fuzzy" msgstr "" #: shared/web/geography.py:85 @@ -318,11 +330,11 @@ msgstr "" msgid "User" msgstr "" -#: shared/common/xhtmlgenerator.py:112 +#: shared/common/xhtmlgenerator.py:116 msgid "Vote Blank" msgstr "" -#: shared/common/kinds.py:3179 +#: shared/common/kinds.py:3256 msgid "Output Connector" msgstr "" @@ -350,7 +362,7 @@ msgstr "" msgid "Belarus" msgstr "" -#: shared/web/AppointmentsWeb.py:312 +#: shared/web/AppointmentsWeb.py:298 msgid "Week %d of %d" msgstr "" @@ -378,7 +390,7 @@ msgstr "" msgid "Election in progress" msgstr "" -#: shared/common/xhtmlgenerator.py:67 +#: shared/common/xhtmlgenerator.py:71 msgid "Duplicate" msgstr "" @@ -386,11 +398,11 @@ msgstr "" msgid "Weightings" msgstr "" -#: shared/common/VirtualHostsCommon.py:107 +#: shared/common/VirtualHostsCommon.py:124 msgid "Enter the title of this virtual host." msgstr "" -#: shared/common/VirtualHostsCommon.py:202 +#: shared/common/VirtualHostsCommon.py:221 msgid "New Virtual Host" msgstr "" @@ -410,7 +422,7 @@ msgstr "" msgid "Select the items to subtract." msgstr "" -#: shared/common/xhtmlgenerator.py:103 +#: shared/common/xhtmlgenerator.py:107 msgid "Use" msgstr "" @@ -422,22 +434,18 @@ msgstr "" msgid "Aliases" msgstr "" -#: shared/common/AppointmentsCommon.py:99 -msgid "Enter the day of the appointment." +#: talTranslations.py:18 +msgid "Calendar" msgstr "" -#: shared/common/properties.py:53 -msgid "Select a field type" +#: shared/common/AppointmentsCommon.py:94 +msgid "Enter the day of the appointment." msgstr "" #: shared/web/geography.py:173 msgid "Mozambique" msgstr "" -#: shared/proxy/ObjectsProxy.py:1224 shared/proxy/ObjectsProxy.py:1281 -msgid " (at <%s>)" -msgstr "" - #: shared/web/geography.py:58 msgid "Austria" msgstr "" @@ -454,12 +462,12 @@ msgstr "" msgid "Expiration Time" msgstr "" -#: shared/common/kinds.py:267 +#: shared/common/kinds.py:269 msgid "reStructuredText" msgstr "" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 -msgid "December" +#: shared/web/ObjectsWeb.py:82 +msgid "Version Number" msgstr "" #: shared/web/ElectionsWeb.py:143 @@ -470,11 +478,11 @@ msgstr "" msgid "Translation to %s" msgstr "" -#: shared/common/xhtmlgenerator.py:80 +#: shared/common/xhtmlgenerator.py:84 msgid "Read the License" msgstr "" -#: shared/common/kinds.py:246 +#: shared/common/kinds.py:248 msgid "Viewing Mode" msgstr "" @@ -499,7 +507,7 @@ msgstr "" msgid "History - %s" msgstr "" -#: shared/common/kinds.py:2982 +#: shared/common/kinds.py:3059 msgid "Application Token" msgstr "" @@ -507,15 +515,15 @@ msgstr "" msgid "Sweden" msgstr "" -#: shared/common/kinds.py:2652 +#: shared/common/kinds.py:2715 msgid "Thing" msgstr "" -#: shared/common/kinds.py:161 +#: shared/common/kinds.py:163 msgid "Translatable" msgstr "" -#: shared/common/kinds.py:2911 shared/common/kinds.py:2913 +#: shared/common/kinds.py:2983 shared/common/kinds.py:2985 msgid "Creation Time" msgstr "" @@ -523,10 +531,6 @@ msgstr "" msgid "%(from)s to %(to)s Translators" msgstr "" -#: shared/common/GroupsCommon.py:406 -msgid "group" -msgstr "" - #: shared/web/geography.py:197 msgid "Saudi Arabia" msgstr "" @@ -535,11 +539,11 @@ msgstr "" msgid "Intersection" msgstr "" -#: shared/common/kinds.py:2968 +#: shared/common/kinds.py:3045 msgid "Token" msgstr "" -#: shared/common/AppointmentsCommon.py:104 +#: shared/common/AppointmentsCommon.py:99 msgid "Enter a title for this appointment." msgstr "" @@ -547,7 +551,7 @@ msgstr "" msgid "Year Minimum Value" msgstr "" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:432 +#: shared/web/calendaring.py:70 msgid "xSeptember" msgstr "" @@ -559,11 +563,11 @@ msgstr "" msgid "Members Types" msgstr "" -#: shared/web/GlasnostTALGenerator.py:100 +#: shared/web/GlasnostTALGenerator.py:103 talTranslations.py:10 msgid "All Objects" msgstr "" -#: shared/common/kinds.py:1865 +#: shared/common/kinds.py:1893 msgid "Enter Twice" msgstr "" @@ -575,11 +579,11 @@ msgstr "" msgid "grading" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:94 +#: shared/web/AuthenticationLoginPasswordWeb.py:97 msgid "Current Password" msgstr "" -#: shared/web/kinds.py:1351 +#: shared/web/kinds.py:1352 msgid "Default Values" msgstr "" @@ -595,11 +599,11 @@ msgstr "" msgid "New Grade" msgstr "" -#: shared/common/xhtmlgenerator.py:85 +#: shared/common/xhtmlgenerator.py:89 msgid "New" msgstr "" -#: shared/common/xhtmlgenerator.py:92 +#: shared/common/xhtmlgenerator.py:96 msgid "Pretion" msgstr "" @@ -651,16 +655,17 @@ msgstr "" msgid "GnuPG Fingerprint" msgstr "" -#: shared/common/xhtmlgenerator.py:77 +#: shared/common/xhtmlgenerator.py:81 msgid "Find" msgstr "" -#: shared/web/VirtualHostsWeb.py:73 +#: shared/common/VirtualHostsCommon.py:99 msgid "Web Host Name" msgstr "" -#: shared/web/ForumsWeb.py:195 -msgid "Replies List" +#: shared/web/CardsWeb.py:229 shared/web/ObjectsWeb.py:366 +#: shared/web/VotesWeb.py:710 shared/web/UploadFilesWeb.py:227 +msgid "Editing %s - %s" msgstr "" #: shared/common/widgets.py:375 @@ -671,7 +676,7 @@ msgstr "" msgid "The results of a never ending election are displayed right from the start. Otherwise, the state of the election must be \"closed\" for the results to be displayed." msgstr "" -#: shared/common/xhtmlgenerator.py:69 +#: shared/common/xhtmlgenerator.py:73 msgid "Create" msgstr "" @@ -699,7 +704,7 @@ msgstr "" msgid "Links" msgstr "" -#: shared/common/xhtmlgenerator.py:87 +#: shared/common/xhtmlgenerator.py:91 msgid "OK" msgstr "" @@ -707,7 +712,7 @@ msgstr "" msgid "Albania" msgstr "" -#: shared/common/kinds.py:3221 shared/common/instructions.py:294 +#: shared/common/kinds.py:3327 shared/common/instructions.py:294 msgid "Value Holder" msgstr "" @@ -727,7 +732,7 @@ msgstr "" msgid "New Zealand" msgstr "" -#: shared/common/xhtmlgenerator.py:210 +#: shared/common/xhtmlgenerator.py:303 msgid "Missing Object (%s)" msgstr "" @@ -743,7 +748,7 @@ msgstr "" msgid "Error!" msgstr "" -#: shared/common/xhtmlgenerator.py:89 +#: shared/common/xhtmlgenerator.py:93 msgid "Post a Comment" msgstr "" @@ -751,7 +756,7 @@ msgstr "" msgid "Wins" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:112 +#: shared/web/AuthenticationLoginPasswordWeb.py:115 msgid "New Password (Confirmation)" msgstr "" @@ -759,7 +764,7 @@ msgstr "" msgid "Oman" msgstr "" -#: shared/common/xhtmlgenerator.py:95 +#: shared/common/xhtmlgenerator.py:99 msgid "Refuse" msgstr "" @@ -779,7 +784,7 @@ msgstr "" msgid "New Election" msgstr "" -#: shared/common/kinds.py:1295 +#: shared/common/kinds.py:1311 msgid "Minimum Value" msgstr "" @@ -791,7 +796,7 @@ msgstr "" msgid "Enter the GnuPG public key fingerprint; mandatory to receive encrypted e-mails." msgstr "" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Friday" msgstr "" @@ -803,11 +808,11 @@ msgstr "" msgid "DocBook Source - %s" msgstr "" -#: shared/common/kinds.py:309 +#: shared/common/kinds.py:311 msgid "Internal" msgstr "" -#: shared/common/xhtmlgenerator.py:94 +#: shared/common/xhtmlgenerator.py:98 msgid "Submit For Evaluation" msgstr "" @@ -815,15 +820,15 @@ msgstr "" msgid "Analyze" msgstr "" -#: shared/common/VirtualHostsCommon.py:53 +#: shared/common/VirtualHostsCommon.py:54 msgid "Select the default virtual host to use on this server" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:426 +#: shared/web/AuthenticationLoginPasswordWeb.py:432 msgid "Change password for user:" msgstr "" -#: shared/common/xhtmlgenerator.py:79 +#: shared/common/xhtmlgenerator.py:83 msgid "New Implementation" msgstr "" @@ -831,7 +836,7 @@ msgstr "" msgid "Specified path is not a file!" msgstr "" -#: shared/common/kinds.py:2148 +#: shared/common/kinds.py:2209 msgid "Choose the user(s) of this object." msgstr "" @@ -847,10 +852,6 @@ msgstr "" msgid "Are you sure you want to pester by email the abstentionnists of election \"%s\"?" msgstr "" -#: shared/web/geography.py:137 -msgid "Kyrgyzstan" -msgstr "" - #: shared/common/widgets.py:198 msgid "Amount Entry Field" msgstr "" @@ -903,7 +904,7 @@ msgstr "" msgid "Instruction" msgstr "" -#: shared/web/widgets.py:633 +#: shared/web/widgets.py:630 msgid "undefined" msgstr "" @@ -915,15 +916,15 @@ msgstr "" msgid "ID" msgstr "" -#: shared/web/AppointmentsWeb.py:214 +#: shared/web/AppointmentsWeb.py:200 msgid "Day long appointments" msgstr "" -#: shared/common/kinds.py:1302 +#: shared/common/kinds.py:1318 msgid "Integer Number" msgstr "" -#: shared/common/kinds.py:820 +#: shared/common/kinds.py:836 msgid "Values" msgstr "" @@ -952,15 +953,15 @@ msgstr "" msgid "Yemen" msgstr "" -#: shared/common/kinds.py:2457 +#: shared/common/kinds.py:2520 msgid "Server Role" msgstr "" -#: shared/common/kinds.py:1041 +#: shared/common/kinds.py:1057 msgid "Email Address" msgstr "" -#: shared/common/VirtualHostsCommon.py:80 +#: shared/common/VirtualHostsCommon.py:82 msgid "Enter the Glasnost dispatcher id for this virtual host (you may have to consult your administrator)." msgstr "" @@ -972,8 +973,8 @@ msgstr "" msgid "Mauritania" msgstr "" -#: shared/common/kinds.py:196 shared/common/kinds.py:214 -#: shared/common/kinds.py:232 shared/common/kinds.py:250 +#: shared/common/kinds.py:198 shared/common/kinds.py:216 +#: shared/common/kinds.py:234 shared/common/kinds.py:252 msgid "Read Only / Hidden If Empty" msgstr "" @@ -989,16 +990,11 @@ msgstr "" msgid "Editing Global Settings" msgstr "" -#: shared/web/ObjectsWeb.py:366 shared/web/VotesWeb.py:710 -#: shared/web/UploadFilesWeb.py:223 -msgid "Editing %s - %s" -msgstr "" - #: shared/web/ElectionsWeb.py:90 msgid "One-Time" msgstr "" -#: shared/common/kinds.py:108 +#: shared/common/kinds.py:110 msgid "Import / Export" msgstr "" @@ -1030,6 +1026,10 @@ msgstr "" msgid "Time Entry Field" msgstr "" +#: shared/common/scripts.py:78 +msgid "Output Console" +msgstr "" + #: shared/web/AuthenticationLoginPasswordWeb.py:70 msgid "User Choice" msgstr "" @@ -1042,16 +1042,20 @@ msgstr "" msgid "Israel" msgstr "" +#: shared/web/ElectionsWeb.py:353 shared/web/ElectionsWeb.py:369 +msgid "secret" +msgstr "" + #: shared/common/PeopleCommon.py:90 msgid "Enter the first name." msgstr "" -#: shared/common/widgets.py:479 +#: shared/common/widgets.py:489 msgid "URL Entry Field" msgstr "" -#: shared/common/kinds.py:194 shared/common/kinds.py:212 -#: shared/common/kinds.py:230 shared/common/kinds.py:248 +#: shared/common/kinds.py:196 shared/common/kinds.py:214 +#: shared/common/kinds.py:232 shared/common/kinds.py:250 msgid "Hidden" msgstr "" @@ -1108,7 +1112,7 @@ msgstr "" msgid "The last short news to administer" msgstr "" -#: shared/common/kinds.py:210 +#: shared/common/kinds.py:212 msgid "Edition Mode" msgstr "" @@ -1125,11 +1129,11 @@ msgstr "" msgid "Barbados" msgstr "" -#: shared/common/kinds.py:670 +#: shared/common/kinds.py:686 msgid "Any" msgstr "" -#: shared/common/ForumsCommon.py:102 +#: shared/common/ForumsCommon.py:102 talTranslations.py:1 msgid "Forums" msgstr "" @@ -1137,7 +1141,7 @@ msgstr "" msgid "Taiwan" msgstr "" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "September" msgstr "" @@ -1161,15 +1165,15 @@ msgstr "" msgid "Nicaragua" msgstr "" -#: shared/web/UploadFilesWeb.py:429 +#: shared/web/UploadFilesWeb.py:433 msgid "Your last files" msgstr "" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:429 +#: shared/web/calendaring.py:69 msgid "xJune" msgstr "" -#: shared/common/kinds.py:146 +#: shared/common/kinds.py:148 msgid "Mandatory" msgstr "" @@ -1177,7 +1181,7 @@ msgstr "" msgid "Public Ballot" msgstr "" -#: shared/common/kinds.py:113 +#: shared/common/kinds.py:115 msgid "To Server Only" msgstr "" @@ -1185,7 +1189,7 @@ msgstr "" msgid "Heading" msgstr "" -#: shared/common/kinds.py:2490 +#: shared/common/kinds.py:2553 msgid "Slot Name" msgstr "" @@ -1197,8 +1201,8 @@ msgstr "" msgid "Winners Count" msgstr "" -#: shared/web/CardsWeb.py:343 shared/web/VotesWeb.py:708 -#: shared/web/UploadFilesWeb.py:221 +#: shared/web/CardsWeb.py:406 shared/web/VotesWeb.py:708 +#: shared/web/UploadFilesWeb.py:225 msgid "New %s" msgstr "" @@ -1206,11 +1210,12 @@ msgstr "" msgid "Reverse Year Order?" msgstr "" -#: shared/common/kinds.py:2091 +#: shared/common/kinds.py:2152 msgid "Accepted Types" msgstr "" #: shared/common/ElectionsCommon.py:254 shared/web/ElectionsWeb.py:882 +#: talTranslations.py:9 msgid "Elections" msgstr "" @@ -1234,19 +1239,20 @@ msgstr "" msgid "Georgia" msgstr "" -#: shared/common/xhtmlgenerator.py:106 +#: shared/common/xhtmlgenerator.py:110 msgid "Definition" msgstr "" -#: shared/common/CardsCommon.py:347 +#: shared/common/CardsCommon.py:392 msgid "Card" msgstr "" -#: shared/common/kinds.py:2197 shared/common/kinds.py:2201 +#: shared/common/kinds.py:2258 shared/common/kinds.py:2264 msgid "Properties" msgstr "" -#: shared/common/UploadFilesCommon.py:137 shared/web/UploadFilesWeb.py:440 +#: shared/common/UploadFilesCommon.py:137 shared/web/UploadFilesWeb.py:444 +#: talTranslations.py:15 msgid "Files" msgstr "" @@ -1262,6 +1268,10 @@ msgstr "" msgid "Active" msgstr "" +#: shared/common/scripts.py:74 +msgid "Execute On View" +msgstr "" + #: shared/common/GroupsCommon.py:409 msgid "Groups" msgstr "" @@ -1274,11 +1284,11 @@ msgstr "" msgid "Added to slot" msgstr "" -#: shared/web/ElectionsWeb.py:353 shared/web/ElectionsWeb.py:369 -msgid "secret" +#: shared/common/widgets.py:418 +msgid "Others Button" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:103 +#: shared/web/AuthenticationLoginPasswordWeb.py:106 msgid "New Password" msgstr "" @@ -1290,7 +1300,7 @@ msgstr "" msgid "Armenia" msgstr "" -#: shared/common/AppointmentsCommon.py:177 +#: shared/common/AppointmentsCommon.py:172 msgid "Appointment" msgstr "" @@ -1298,22 +1308,26 @@ msgstr "" msgid "Kind of Ballots" msgstr "" -#: shared/common/kinds.py:2109 shared/common/kinds.py:2113 +#: shared/common/kinds.py:2170 shared/common/kinds.py:2174 msgid "Argument Pins" msgstr "" -#: shared/common/AppointmentsCommon.py:179 +#: shared/common/AppointmentsCommon.py:174 msgid "Appointments" msgstr "" -#: shared/common/xhtmlgenerator.py:93 +#: shared/common/xhtmlgenerator.py:97 msgid "Preview" msgstr "" -#: shared/common/kinds.py:104 shared/common/widgets.py:80 +#: shared/common/kinds.py:106 shared/common/widgets.py:80 msgid "Hide Field Label" msgstr "" +#: shared/web/calendaring.py:57 +msgid "Tuesday" +msgstr "" + #: shared/web/ForumsWeb.py:294 msgid "Subjects" msgstr "" @@ -1334,8 +1348,8 @@ msgstr "" msgid "New Short Article" msgstr "" -#: shared/web/PeopleWeb.py:80 -msgid "Last Name" +#: shared/web/geography.py:184 +msgid "Panama" msgstr "" #: shared/web/geography.py:115 @@ -1358,7 +1372,7 @@ msgstr "" msgid "Yes" msgstr "" -#: shared/common/kinds.py:110 +#: shared/common/kinds.py:112 msgid "From Server Only" msgstr "" @@ -1374,7 +1388,7 @@ msgstr "" msgid "Duration Entry Field" msgstr "" -#: shared/common/kinds.py:708 shared/common/kinds.py:812 +#: shared/common/kinds.py:724 shared/common/kinds.py:828 msgid "Titles" msgstr "" @@ -1382,7 +1396,7 @@ msgstr "" msgid "Malaysia" msgstr "" -#: shared/web/AppointmentsWeb.py:635 shared/web/widgets.py:502 +#: shared/web/AppointmentsWeb.py:627 shared/web/widgets.py:498 msgid "Month" msgstr "" @@ -1430,7 +1444,7 @@ msgstr "" msgid "Choose whether to crypt e-mails Glasnost sends to you." msgstr "" -#: shared/common/kinds.py:1426 +#: shared/common/kinds.py:1442 msgid "Mapping" msgstr "" @@ -1442,7 +1456,7 @@ msgstr "" msgid "Login & Password" msgstr "" -#: shared/common/xhtmlgenerator.py:98 +#: shared/common/xhtmlgenerator.py:102 talTranslations.py:5 msgid "Settings" msgstr "" @@ -1454,7 +1468,7 @@ msgstr "" msgid "Bulgaria" msgstr "" -#: shared/common/xhtmlgenerator.py:60 +#: shared/common/xhtmlgenerator.py:64 msgid "Add Article" msgstr "" @@ -1462,9 +1476,8 @@ msgstr "" msgid "Developers" msgstr "" -#: shared/common/kinds.py:3123 shared/common/instructions.py:316 -#: shared/common/values.py:53 -msgid "Kind" +#: shared/common/AppointmentsCommon.py:63 +msgid "Select the group that holds categories for the appointments." msgstr "" #: shared/web/ElectionsWeb.py:700 @@ -1475,11 +1488,11 @@ msgstr "" msgid "Translation Language" msgstr "" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "July" msgstr "" -#: shared/common/xhtmlgenerator.py:72 +#: shared/common/xhtmlgenerator.py:76 msgid "Download Glasnost" msgstr "" @@ -1488,21 +1501,19 @@ msgstr "" msgid "Members" msgstr "" -#: shared/web/ObjectsWeb.py:82 -msgid "Version Number" -msgstr "" - -#: shared/web/AppointmentsWeb.py:82 +#: shared/web/AppointmentsWeb.py:84 msgid "Select the people and groups who are assigned to this appointment." msgstr "" -#: shared/common/xhtmlgenerator.py:91 shared/common/PreferencesCommon.py:117 +#: shared/common/xhtmlgenerator.py:95 shared/common/PreferencesCommon.py:117 #: shared/common/PreferencesCommon.py:119 shared/web/PreferencesWeb.py:191 msgid "Preferences" msgstr "" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:426 -msgid "xMarch" +#: shared/common/kinds.py:822 shared/web/GradesWeb.py:125 +#: shared/web/VotesWeb.py:421 shared/web/VotesWeb.py:465 +#: shared/web/VotesWeb.py:525 shared/web/VotesWeb.py:583 +msgid "Choice" msgstr "" #: shared/common/PeopleCommon.py:78 @@ -1537,11 +1548,11 @@ msgstr "" msgid "Malawi" msgstr "" -#: shared/common/xhtmlgenerator.py:90 +#: shared/common/xhtmlgenerator.py:94 msgid "Reply" msgstr "" -#: shared/web/CardsWeb.py:248 +#: shared/web/CardsWeb.py:313 msgid "Editing Definition of Card \"%s\"" msgstr "" @@ -1557,7 +1568,7 @@ msgstr "" msgid "Winners" msgstr "" -#: shared/common/xhtmlgenerator.py:100 +#: shared/common/xhtmlgenerator.py:104 msgid "Source" msgstr "" @@ -1565,11 +1576,11 @@ msgstr "" msgid "France" msgstr "" -#: shared/common/kinds.py:307 +#: shared/common/kinds.py:309 msgid "Storage" msgstr "" -#: shared/common/xhtmlgenerator.py:102 +#: shared/common/xhtmlgenerator.py:106 msgid "Update Translation" msgstr "" @@ -1585,6 +1596,10 @@ msgstr "" msgid "Candidates One-on-One Comparison" msgstr "" +#: shared/common/xhtmlgenerator.py:78 +msgid "Edit Arguments" +msgstr "" + #: shared/web/geography.py:52 msgid "Afghanistan" msgstr "" @@ -1601,15 +1616,19 @@ msgstr "" msgid "Select the objects that are parts of this heading." msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:176 +#: shared/web/calendaring.py:63 +msgid "December" +msgstr "" + +#: shared/web/AuthenticationLoginPasswordWeb.py:180 msgid "Authentication (Login/Password) Settings" msgstr "" -#: shared/common/kinds.py:692 shared/common/kinds.py:797 +#: shared/common/kinds.py:708 shared/common/kinds.py:813 msgid "Check the box to sort labels alphabetically" msgstr "" -#: shared/common/AppointmentsCommon.py:78 +#: shared/common/AppointmentsCommon.py:73 msgid "Enter the text of this appointment." msgstr "" @@ -1653,11 +1672,11 @@ msgstr "" msgid "Finnish" msgstr "" -#: shared/common/kinds.py:2097 +#: shared/common/kinds.py:2158 msgid "Accepted Roles" msgstr "" -#: shared/common/kinds.py:530 +#: shared/common/kinds.py:538 msgid "Maximum Number of Items" msgstr "" @@ -1665,7 +1684,7 @@ msgstr "" msgid "Maldives" msgstr "" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Sunday" msgstr "" @@ -1673,7 +1692,7 @@ msgstr "" msgid "Argentina" msgstr "" -#: shared/common/kinds.py:3075 +#: shared/common/kinds.py:3152 msgid "Extended Choice" msgstr "" @@ -1681,7 +1700,7 @@ msgstr "" msgid "Dispatcher" msgstr "" -#: shared/common/xhtmlgenerator.py:104 +#: shared/common/xhtmlgenerator.py:108 msgid "Validate" msgstr "" @@ -1689,11 +1708,11 @@ msgstr "" msgid "Select the people and groups who are allowed to read items of this kind." msgstr "" -#: shared/web/widgets.py:1337 +#: shared/web/widgets.py:1342 msgid "Others" msgstr "" -#: shared/web/AppointmentsWeb.py:596 +#: shared/web/AppointmentsWeb.py:587 msgid "Hour: %s - %s" msgstr "" @@ -1717,11 +1736,11 @@ msgstr "" msgid "French" msgstr "" -#: shared/common/xhtmlgenerator.py:83 +#: shared/common/xhtmlgenerator.py:87 msgid "Modify" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:393 +#: shared/web/AuthenticationLoginPasswordWeb.py:399 msgid "The account has been removed successfully." msgstr "" @@ -1729,19 +1748,20 @@ msgstr "" msgid "Vote Token" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:435 +#: shared/web/AuthenticationLoginPasswordWeb.py:441 msgid "Delete user:" msgstr "" -#: shared/common/xhtmlgenerator.py:59 +#: shared/common/xhtmlgenerator.py:63 shared/common/xhtmlgenerator.py:219 +#: talTranslations.py:12 msgid "Add" msgstr "" -#: shared/web/ObjectsWeb.py:769 +#: shared/web/ObjectsWeb.py:775 msgid "Search Results" msgstr "" -#: shared/common/kinds.py:112 +#: shared/common/kinds.py:114 msgid "Public" msgstr "" @@ -1749,8 +1769,8 @@ msgstr "" msgid "Enter the text of the document." msgstr "" -#: shared/common/xhtmlgenerator.py:74 -msgid "Edit Arguments" +#: shared/common/VirtualHostsCommon.py:120 +msgid "Template" msgstr "" #: shared/common/GroupsCommon.py:65 @@ -1763,8 +1783,8 @@ msgid "Authentication" msgstr "" #: shared/common/widgets.py:204 shared/common/widgets.py:248 -#: shared/common/widgets.py:292 shared/common/widgets.py:423 -#: shared/common/widgets.py:475 shared/common/widgets.py:488 +#: shared/common/widgets.py:292 shared/common/widgets.py:433 +#: shared/common/widgets.py:485 shared/common/widgets.py:498 #: shared/web/UploadFilesWeb.py:115 shared/web/uploads.py:101 msgid "Width" msgstr "" @@ -1801,11 +1821,11 @@ msgstr "" msgid "system files" msgstr "" -#: shared/web/geography.py:221 -msgid "East Timor" +#: shared/common/ArticlesCommon.py:57 +msgid "Select the author(s) of the document." msgstr "" -#: shared/common/kinds.py:2166 +#: shared/common/kinds.py:2227 msgid "People Set" msgstr "" @@ -1813,12 +1833,12 @@ msgstr "" msgid "South Africa" msgstr "" -#: shared/common/widgets.py:438 +#: shared/common/widgets.py:448 msgid "View In Text Area" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:309 -#: shared/web/AuthenticationLoginPasswordWeb.py:375 +#: shared/web/AuthenticationLoginPasswordWeb.py:315 +#: shared/web/AuthenticationLoginPasswordWeb.py:381 msgid "The password has been modified successfully." msgstr "" @@ -1842,7 +1862,7 @@ msgstr "" msgid "Enter the name of this alias (will be used in the URL)." msgstr "" -#: shared/common/kinds.py:702 +#: shared/common/kinds.py:718 msgid "Boolean" msgstr "" @@ -1850,6 +1870,10 @@ msgstr "" msgid "Switzerland" msgstr "" +#: talTranslations.py:11 +msgid "Back to home" +msgstr "" + #: shared/web/CommentsWeb.py:90 msgid "Commented Item" msgstr "" @@ -1858,6 +1882,10 @@ msgstr "" msgid "Enter an eventual nickname here." msgstr "" +#: talTranslations.py:8 +msgid "User:" +msgstr "" + #: shared/web/geography.py:102 msgid "Egypt" msgstr "" @@ -1866,7 +1894,7 @@ msgstr "" msgid "Honduras" msgstr "" -#: shared/common/xhtmlgenerator.py:58 +#: shared/common/xhtmlgenerator.py:62 msgid "Abstain" msgstr "" @@ -1878,8 +1906,8 @@ msgstr "" msgid "Crypt Emails" msgstr "" -#: shared/common/xhtmlgenerator.py:81 -#: shared/web/AuthenticationLoginPasswordWeb.py:491 +#: shared/common/xhtmlgenerator.py:85 +#: shared/web/AuthenticationLoginPasswordWeb.py:496 #: shared/web/AuthenticationLdapWeb.py:205 msgid "Login" msgstr "" @@ -1888,7 +1916,7 @@ msgstr "" msgid "Guyana" msgstr "" -#: shared/common/kinds.py:2617 +#: shared/common/kinds.py:2680 msgid "Access in Utilization Mode" msgstr "" @@ -1912,7 +1940,7 @@ msgstr "" msgid "Button" msgstr "" -#: shared/common/kinds.py:3093 +#: shared/common/kinds.py:3170 msgid "Fault" msgstr "" @@ -1920,18 +1948,19 @@ msgstr "" msgid "Other Translations" msgstr "" -#: shared/common/properties.py:62 shared/common/things.py:163 +#: shared/common/properties.py:65 shared/common/things.py:163 #: shared/web/AtomsWeb.py:60 shared/web/CommentsWeb.py:79 #: shared/web/GradesWeb.py:133 shared/web/GroupsWeb.py:94 #: shared/web/PageNamesWeb.py:65 shared/web/RubricsWeb.py:75 msgid "Name" msgstr "" -#: shared/web/CardsWeb.py:190 -msgid "Definition of Card \"%s\"" +#: shared/web/geography.py:137 +msgid "Kyrgyzstan" msgstr "" #: shared/common/ArticlesCommon.py:140 shared/web/ArticlesWeb.py:461 +#: talTranslations.py:2 msgid "Articles" msgstr "" @@ -1943,7 +1972,7 @@ msgstr "" msgid "Instructions" msgstr "" -#: shared/web/UploadFilesWeb.py:436 +#: shared/web/UploadFilesWeb.py:440 msgid "The last files" msgstr "" @@ -1951,7 +1980,7 @@ msgstr "" msgid "Difference" msgstr "" -#: shared/common/kinds.py:2632 +#: shared/common/kinds.py:2695 msgid "Access in Viewing Mode" msgstr "" @@ -1959,7 +1988,7 @@ msgstr "" msgid "Germany" msgstr "" -#: shared/common/VirtualHostsCommon.py:101 +#: shared/common/VirtualHostsCommon.py:116 msgid "Select the template (skin) to use for this host." msgstr "" @@ -1979,7 +2008,11 @@ msgstr "" msgid "Global Settings" msgstr "" -#: shared/common/kinds.py:2162 shared/common/kinds.py:2168 +#: shared/web/calendaring.py:61 +msgid "April" +msgstr "" + +#: shared/common/kinds.py:2223 shared/common/kinds.py:2229 msgid "Users" msgstr "" @@ -2019,7 +2052,7 @@ msgstr "" msgid "headings" msgstr "" -#: shared/common/kinds.py:3064 shared/common/kinds.py:3066 +#: shared/common/kinds.py:3141 shared/common/kinds.py:3143 msgid "Writers" msgstr "" @@ -2039,7 +2072,7 @@ msgstr "" msgid "Winners Grading" msgstr "" -#: shared/common/kinds.py:2289 shared/common/kinds.py:2293 +#: shared/common/kinds.py:2352 shared/common/kinds.py:2356 msgid "Result Pins" msgstr "" @@ -2051,27 +2084,23 @@ msgstr "" msgid "Select the group new users will be automatically added to." msgstr "" -#: shared/web/geography.py:229 -msgid "United Kingdom" +#: shared/web/geography.py:221 +msgid "East Timor" msgstr "" #: shared/web/TranslationsWeb.py:395 msgid "Original String" msgstr "" -#: shared/web/TranslationsWeb.py:360 -msgid "Fuzzy" -msgstr "" - #: shared/web/TranslationsWeb.py:375 msgid "Similar String" msgstr "" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Saturday" msgstr "" -#: shared/common/CardsCommon.py:348 +#: shared/common/CardsCommon.py:393 msgid "cards" msgstr "" @@ -2091,7 +2120,7 @@ msgstr "" msgid "Missing value!" msgstr "" -#: shared/common/kinds.py:172 +#: shared/common/kinds.py:174 msgid "Field Label" msgstr "" @@ -2123,7 +2152,7 @@ msgstr "" msgid "Ireland" msgstr "" -#: shared/common/xhtmlgenerator.py:78 +#: shared/common/xhtmlgenerator.py:82 msgid "History" msgstr "" @@ -2135,7 +2164,7 @@ msgstr "" msgid "translation" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:465 +#: shared/web/AuthenticationLoginPasswordWeb.py:470 #: shared/web/AuthenticationLdapWeb.py:181 msgid "To access this part of the site, you need to sign in." msgstr "" @@ -2144,11 +2173,11 @@ msgstr "" msgid "Are you sure you want to delete the %s \"%s\" ?" msgstr "" -#: shared/common/kinds.py:3057 +#: shared/common/kinds.py:3134 msgid "Select the people and groups who are allowed to modify the item." msgstr "" -#: shared/common/xhtmlgenerator.py:111 +#: shared/common/xhtmlgenerator.py:115 msgid "Vote " msgstr "" @@ -2160,11 +2189,11 @@ msgstr "" msgid "Gambia" msgstr "" -#: shared/common/kinds.py:1351 shared/common/kinds.py:1359 +#: shared/common/kinds.py:1367 shared/common/kinds.py:1375 msgid "Language" msgstr "" -#: shared/web/GlasnostTALGenerator.py:97 +#: shared/web/GlasnostTALGenerator.py:100 talTranslations.py:3 msgid "Search" msgstr "" @@ -2172,9 +2201,9 @@ msgstr "" msgid "Blank Ballots:" msgstr "" -#: shared/common/kinds.py:804 shared/common/kinds.py:1189 -#: shared/common/kinds.py:1357 shared/common/kinds.py:1969 -#: shared/common/kinds.py:3206 +#: shared/common/kinds.py:820 shared/common/kinds.py:1205 +#: shared/common/kinds.py:1373 shared/common/kinds.py:2030 +#: shared/common/kinds.py:3283 shared/common/kinds.py:3312 msgid "Data" msgstr "" @@ -2190,7 +2219,7 @@ msgstr "" msgid "Ties" msgstr "" -#: shared/common/kinds.py:982 shared/common/widgets.py:224 +#: shared/common/kinds.py:998 shared/common/widgets.py:224 #: shared/web/ArticlesWeb.py:347 msgid "Date" msgstr "" @@ -2207,8 +2236,8 @@ msgstr "" msgid "No options for this authentication method." msgstr "" -#: shared/common/kinds.py:197 shared/common/kinds.py:215 -#: shared/common/kinds.py:233 +#: shared/common/kinds.py:199 shared/common/kinds.py:217 +#: shared/common/kinds.py:235 msgid "Read/Write" msgstr "" @@ -2216,11 +2245,11 @@ msgstr "" msgid "None Label" msgstr "" -#: shared/common/xhtmlgenerator.py:76 +#: shared/common/xhtmlgenerator.py:80 msgid "Every Article" msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Monday" msgstr "" @@ -2242,19 +2271,27 @@ msgstr "" msgid "New Comment" msgstr "" +#: shared/common/scripts.py:62 +msgid "Execute On Edit" +msgstr "" + #: shared/common/PreferencesCommon.py:78 msgid "Use Browser Settings" msgstr "" -#: shared/web/AppointmentsWeb.py:77 +#: shared/web/calendaring.py:71 +msgid "xOctober" +msgstr "" + +#: shared/web/AppointmentsWeb.py:79 msgid "Categories" msgstr "" -#: shared/web/AppointmentsWeb.py:84 +#: shared/web/AppointmentsWeb.py:86 msgid "Participants" msgstr "" -#: shared/web/AppointmentsWeb.py:86 +#: shared/web/AppointmentsWeb.py:88 msgid "Start" msgstr "" @@ -2283,11 +2320,11 @@ msgstr "" msgid "(%d words)" msgstr "" -#: shared/common/widgets.py:434 +#: shared/common/widgets.py:444 msgid "Multi-Line Text Entry Field" msgstr "" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:425 +#: shared/web/calendaring.py:68 msgid "xFebruary" msgstr "" @@ -2311,6 +2348,13 @@ msgstr "" msgid "Headings" msgstr "" +#: shared/web/VotesWeb.py:94 shared/web/VotesWeb.py:142 +#: shared/web/VotesWeb.py:185 shared/web/VotesWeb.py:229 +#: shared/web/VotesWeb.py:428 shared/web/VotesWeb.py:472 +#: shared/web/VotesWeb.py:532 shared/web/VotesWeb.py:590 +msgid "Blank Vote" +msgstr "" + #: shared/web/ForumsWeb.py:189 msgid "replies: %d" msgstr "" @@ -2319,7 +2363,7 @@ msgstr "" msgid "Currency" msgstr "" -#: shared/common/kinds.py:1961 +#: shared/common/kinds.py:2022 msgid "Item Type" msgstr "" @@ -2335,10 +2379,6 @@ msgstr "" msgid "Enter the title of the document." msgstr "" -#: shared/web/VirtualHostsWeb.py:78 -msgid "Template" -msgstr "" - #: shared/common/BrevesCommon.py:180 msgid "The election \"%s\" is closed." msgstr "" @@ -2351,7 +2391,7 @@ msgstr "" msgid "Chad" msgstr "" -#: shared/common/kinds.py:1003 shared/web/VirtualHostsWeb.py:69 +#: shared/common/kinds.py:1019 shared/common/VirtualHostsCommon.py:88 msgid "Glasnost Dispatcher ID" msgstr "" @@ -2359,19 +2399,19 @@ msgstr "" msgid "Angola" msgstr "" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:427 -msgid "xApril" +#: shared/web/PeopleWeb.py:91 +msgid "Nickname" msgstr "" -#: shared/common/kinds.py:2273 shared/common/kinds.py:2275 +#: shared/common/kinds.py:2336 shared/common/kinds.py:2338 msgid "Readers" msgstr "" -#: shared/common/xhtmlgenerator.py:70 shared/web/ObjectsWeb.py:581 +#: shared/common/xhtmlgenerator.py:74 shared/web/ObjectsWeb.py:587 msgid "Delete" msgstr "" -#: shared/common/CardsCommon.py:346 +#: shared/common/CardsCommon.py:391 msgid "card" msgstr "" @@ -2395,7 +2435,7 @@ msgstr "" msgid "Tunisia" msgstr "" -#: shared/common/AppointmentsCommon.py:178 +#: shared/common/AppointmentsCommon.py:173 msgid "appointments" msgstr "" @@ -2403,8 +2443,8 @@ msgstr "" msgid "Every Type" msgstr "" -#: shared/web/geography.py:168 -msgid "Mauritius" +#: shared/web/calendaring.py:68 +msgid "xMarch" msgstr "" #: shared/web/ElectionsWeb.py:541 @@ -2415,7 +2455,7 @@ msgstr "" msgid "Indonesia" msgstr "" -#: shared/common/xhtmlgenerator.py:96 +#: shared/common/xhtmlgenerator.py:100 msgid "Send by Email" msgstr "" @@ -2425,10 +2465,14 @@ msgstr "" #: shared/common/widgets.py:388 shared/common/widgets.py:413 #: shared/web/TranslationsWeb.py:123 shared/web/TranslationsWeb.py:133 -#: shared/web/widgets.py:391 +#: shared/web/widgets.py:400 msgid "None" msgstr "" +#: shared/common/scripts.py:87 +msgid "Source Code" +msgstr "" + #: shared/web/geography.py:227 msgid "Ukraine" msgstr "" @@ -2453,7 +2497,7 @@ msgstr "" msgid "China" msgstr "" -#: shared/common/kinds.py:94 +#: shared/common/kinds.py:96 msgid "Default Value" msgstr "" @@ -2482,7 +2526,7 @@ msgstr "" msgid "Translations" msgstr "" -#: shared/common/xhtmlgenerator.py:75 +#: shared/common/xhtmlgenerator.py:79 msgid "Evaluate" msgstr "" @@ -2496,7 +2540,7 @@ msgstr "" #: shared/common/AuthenticationLoginPasswordCommon.py:57 #: shared/common/AuthenticationLdapCommon.py:56 -#: shared/web/AuthenticationLoginPasswordWeb.py:131 +#: shared/web/AuthenticationLoginPasswordWeb.py:135 msgid "Username" msgstr "" @@ -2504,7 +2548,7 @@ msgstr "" msgid "Benin" msgstr "" -#: shared/common/kinds.py:1888 +#: shared/common/kinds.py:1921 msgid "Python Identifier" msgstr "" @@ -2512,7 +2556,7 @@ msgstr "" msgid " to " msgstr "" -#: shared/common/kinds.py:295 shared/common/xhtmlgenerator.py:108 +#: shared/common/kinds.py:297 shared/common/xhtmlgenerator.py:112 #: shared/common/properties.py:55 shared/web/GroupsWeb.py:85 msgid "Type" msgstr "" @@ -2529,11 +2573,11 @@ msgstr "" msgid "Bermuda" msgstr "" -#: shared/common/kinds.py:78 +#: shared/common/kinds.py:80 msgid "Balloon Help" msgstr "" -#: shared/common/xhtmlgenerator.py:84 +#: shared/common/xhtmlgenerator.py:88 msgid "Next" msgstr "" @@ -2557,15 +2601,15 @@ msgstr "" msgid "Multi-Line Field" msgstr "" -#: shared/common/VirtualHostsCommon.py:205 +#: shared/common/VirtualHostsCommon.py:224 msgid "Virtual Host" msgstr "" -#: shared/web/AppointmentsWeb.py:79 +#: shared/web/AppointmentsWeb.py:81 msgid "End" msgstr "" -#: shared/common/kinds.py:191 +#: shared/common/kinds.py:193 msgid "Creation Mode" msgstr "" @@ -2578,7 +2622,7 @@ msgstr "" msgid "Subject" msgstr "" -#: shared/common/kinds.py:229 shared/common/kinds.py:2619 +#: shared/common/kinds.py:231 shared/common/kinds.py:2682 msgid "Same As View Mode" msgstr "" @@ -2586,7 +2630,7 @@ msgstr "" msgid "Kenya" msgstr "" -#: shared/common/kinds.py:1146 +#: shared/common/kinds.py:1162 msgid "Function Name" msgstr "" @@ -2602,7 +2646,7 @@ msgstr "" msgid "Best Average" msgstr "" -#: shared/common/kinds.py:3136 +#: shared/common/kinds.py:3213 msgid "Kind Name" msgstr "" @@ -2621,7 +2665,7 @@ msgid "Select the people and groups who have administrative powers on this kind msgstr "" #: shared/common/BrevesCommon.py:204 shared/web/tools.py:644 -#: shared/web/BrevesWeb.py:165 +#: shared/web/BrevesWeb.py:165 talTranslations.py:6 msgid "Short News" msgstr "" @@ -2629,7 +2673,7 @@ msgstr "" msgid "The last strings to leave untranslated" msgstr "" -#: shared/common/xhtmlgenerator.py:64 +#: shared/common/xhtmlgenerator.py:68 msgid "Cancel" msgstr "" @@ -2649,7 +2693,7 @@ msgstr "" msgid "The election \"%s\"" msgstr "" -#: shared/web/AppointmentsWeb.py:641 +#: shared/web/AppointmentsWeb.py:633 msgid "Agenda" msgstr "" @@ -2685,10 +2729,14 @@ msgstr "" msgid "Number of Results" msgstr "" -#: shared/web/widgets.py:842 +#: shared/web/widgets.py:839 msgid "URL" msgstr "" +#: shared/common/scripts.py:70 +msgid "Execute On Use" +msgstr "" + #: shared/web/geography.py:230 msgid "United States" msgstr "" @@ -2701,15 +2749,19 @@ msgstr "" msgid "System Files" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:100 +#: shared/web/AuthenticationLoginPasswordWeb.py:103 msgid "Enter your new password." msgstr "" +#: shared/web/geography.py:168 +msgid "Mauritius" +msgstr "" + #: shared/web/ElectionsWeb.py:870 msgid "Your last closed elections" msgstr "" -#: shared/common/kinds.py:1081 shared/web/SystemFilesWeb.py:71 +#: shared/common/kinds.py:1097 shared/web/SystemFilesWeb.py:71 msgid "Path" msgstr "" @@ -2737,16 +2789,16 @@ msgstr "" msgid "Authentication (LDAP)" msgstr "" -#: shared/common/VirtualHostsCommon.py:206 +#: shared/common/VirtualHostsCommon.py:225 msgid "virtual hosts" msgstr "" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 -msgid "March" +#: shared/common/GroupsCommon.py:406 +msgid "group" msgstr "" -#: shared/common/kinds.py:317 shared/common/kinds.py:3238 -#: shared/common/xhtmlgenerator.py:110 shared/common/widgets.py:102 +#: shared/common/kinds.py:319 shared/common/kinds.py:3344 +#: shared/common/xhtmlgenerator.py:114 shared/common/widgets.py:102 msgid "Widget" msgstr "" @@ -2766,11 +2818,11 @@ msgid "" "GNU General Public License for more details.\n" msgstr "" -#: shared/web/AppointmentsWeb.py:55 +#: shared/web/AppointmentsWeb.py:57 msgid "Categories Group" msgstr "" -#: shared/common/xhtmlgenerator.py:101 +#: shared/common/xhtmlgenerator.py:105 msgid "Translate" msgstr "" @@ -2778,11 +2830,17 @@ msgstr "" msgid "Guinea-Bissau" msgstr "" -#: shared/common/AppointmentsCommon.py:68 -msgid "Select the group that holds categories for the appointments." +#: shared/web/PeopleWeb.py:273 +msgid "" +"The account has successfully been created, but a SMTP error has occurred.\n" +"Maybe the Mail Transport Agent on the Glasnost server is badly configured." msgstr "" -#: glasnost-web/about.py:290 shared/common/xhtmlgenerator.py:57 +#: shared/web/CardsWeb.py:203 +msgid "Definition of Card \"%s\"" +msgstr "" + +#: glasnost-web/about.py:290 shared/common/xhtmlgenerator.py:61 msgid "About Glasnost" msgstr "" @@ -2808,11 +2866,11 @@ msgstr "" msgid "Author" msgstr "" -#: shared/common/VirtualHostsCommon.py:204 +#: shared/common/VirtualHostsCommon.py:223 msgid "virtual host" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:91 +#: shared/web/AuthenticationLoginPasswordWeb.py:94 msgid "Enter your current password." msgstr "" @@ -2820,15 +2878,15 @@ msgstr "" msgid "Sao Tome and Principe" msgstr "" -#: shared/common/kinds.py:2173 +#: shared/common/kinds.py:2234 msgid "Choose the author(s) for this object." msgstr "" -#: shared/common/xhtmlgenerator.py:107 +#: shared/common/xhtmlgenerator.py:111 msgid "List" msgstr "" -#: shared/common/xhtmlgenerator.py:62 +#: shared/common/xhtmlgenerator.py:66 msgid "Apply" msgstr "" @@ -2836,13 +2894,13 @@ msgstr "" msgid "Greece" msgstr "" -#: shared/common/kinds.py:3208 shared/common/UploadFilesCommon.py:135 +#: shared/common/kinds.py:3314 shared/common/UploadFilesCommon.py:135 #: shared/common/uploads.py:74 shared/web/UploadFilesWeb.py:76 #: shared/web/uploads.py:66 msgid "File" msgstr "" -#: shared/common/kinds.py:961 shared/common/kinds.py:963 +#: shared/common/kinds.py:977 shared/common/kinds.py:979 msgid "Date & Time" msgstr "" @@ -2854,7 +2912,7 @@ msgstr "" msgid "Enter the name of this heading." msgstr "" -#: shared/web/AppointmentsWeb.py:636 shared/web/widgets.py:488 +#: shared/web/AppointmentsWeb.py:628 shared/web/widgets.py:484 msgid "Year" msgstr "" @@ -2862,14 +2920,14 @@ msgstr "" msgid "Results" msgstr "" -#: shared/common/xhtmlgenerator.py:86 -#: shared/web/AuthenticationLoginPasswordWeb.py:405 -#: shared/web/AuthenticationLoginPasswordWeb.py:589 +#: shared/common/xhtmlgenerator.py:90 +#: shared/web/AuthenticationLoginPasswordWeb.py:411 +#: shared/web/AuthenticationLoginPasswordWeb.py:584 #: shared/web/PeopleWeb.py:159 msgid "New Account" msgstr "" -#: shared/common/xhtmlgenerator.py:97 +#: shared/common/xhtmlgenerator.py:101 msgid "Send Password by Email" msgstr "" @@ -2909,11 +2967,11 @@ msgstr "" msgid "Japan" msgstr "" -#: shared/common/kinds.py:644 shared/common/PageNamesCommon.py:99 +#: shared/common/kinds.py:660 shared/common/PageNamesCommon.py:99 msgid "Alias" msgstr "" -#: shared/common/kinds.py:2589 +#: shared/common/kinds.py:2652 msgid "Access in Creation Mode" msgstr "" @@ -2921,11 +2979,11 @@ msgstr "" msgid "Choose the persons or groups who will vote for this election." msgstr "" -#: shared/common/VirtualHostsCommon.py:88 +#: shared/common/VirtualHostsCommon.py:96 msgid "Enter the host name." msgstr "" -#: shared/common/CardsCommon.py:349 +#: shared/common/CardsCommon.py:394 msgid "Cards" msgstr "" @@ -2953,6 +3011,10 @@ msgstr "" msgid "Botswana" msgstr "" +#: shared/web/ForumsWeb.py:195 +msgid "Replies List" +msgstr "" + #: shared/common/AtomsCommon.py:78 msgid "Atom" msgstr "" @@ -2969,11 +3031,11 @@ msgstr "" msgid "The last short news" msgstr "" -#: shared/common/widgets.py:395 shared/common/widgets.py:417 +#: shared/common/widgets.py:395 shared/common/widgets.py:421 msgid "Option Menu" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:266 +#: shared/web/AuthenticationLoginPasswordWeb.py:270 msgid "Changing Password" msgstr "" @@ -2985,10 +3047,8 @@ msgstr "" msgid "Format" msgstr "" -#: shared/web/PeopleWeb.py:273 -msgid "" -"The account has successfully been created, but a SMTP error has occurred.\n" -"Maybe the Mail Transport Agent on the Glasnost server is badly configured." +#: shared/common/scripts.py:83 +msgid "TextArea" msgstr "" #: shared/common/UploadFilesCommon.py:64 @@ -3007,7 +3067,7 @@ msgstr "" msgid "Suriname" msgstr "" -#: shared/web/VirtualHostsWeb.py:59 +#: shared/common/VirtualHostsCommon.py:56 msgid "Default Virtual Host" msgstr "" @@ -3019,7 +3079,7 @@ msgstr "" msgid "Kind of Ballot" msgstr "" -#: shared/common/kinds.py:2078 +#: shared/common/kinds.py:2139 msgid "Select accepted types of items." msgstr "" @@ -3041,7 +3101,7 @@ msgstr "" msgid "Palau" msgstr "" -#: shared/common/xhtmlgenerator.py:99 +#: shared/common/xhtmlgenerator.py:103 msgid "Spell Check" msgstr "" @@ -3049,7 +3109,7 @@ msgstr "" msgid "ReStructured Text" msgstr "" -#: shared/common/widgets.py:492 +#: shared/common/widgets.py:502 msgid "Combo Box" msgstr "" @@ -3066,8 +3126,8 @@ msgid "" "%s\n" msgstr "" -#: shared/common/kinds.py:700 shared/common/kinds.py:1127 -#: shared/common/kinds.py:1300 +#: shared/common/kinds.py:716 shared/common/kinds.py:1143 +#: shared/common/kinds.py:1316 msgid "Numbers" msgstr "" @@ -3079,11 +3139,15 @@ msgstr "" msgid "Holy See (Vatican City State)" msgstr "" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:428 +#: shared/web/calendaring.py:69 msgid "xMay" msgstr "" -#: shared/common/widgets.py:431 shared/web/UploadFilesWeb.py:94 +#: shared/common/kinds.py:3285 +msgid "Script" +msgstr "" + +#: shared/common/widgets.py:441 shared/web/UploadFilesWeb.py:94 #: shared/web/uploads.py:84 msgid "Height" msgstr "" @@ -3092,10 +3156,10 @@ msgstr "" msgid "Lebanon" msgstr "" -#: shared/common/kinds.py:264 shared/common/kinds.py:1039 -#: shared/common/kinds.py:1113 shared/common/kinds.py:1870 -#: shared/common/kinds.py:2535 shared/common/kinds.py:2537 -#: shared/web/AppointmentsWeb.py:65 shared/web/BrevesWeb.py:63 +#: shared/common/kinds.py:266 shared/common/kinds.py:1055 +#: shared/common/kinds.py:1129 shared/common/kinds.py:1898 +#: shared/common/kinds.py:2598 shared/common/kinds.py:2600 +#: shared/web/AppointmentsWeb.py:67 shared/web/BrevesWeb.py:63 #: shared/web/CommentsWeb.py:68 shared/web/ArticlesWeb.py:67 #: shared/web/ArticlesWeb.py:83 msgid "Text" @@ -3105,7 +3169,7 @@ msgstr "" msgid "German" msgstr "" -#: shared/web/widgets.py:548 +#: shared/web/widgets.py:545 msgid "hour" msgstr "" @@ -3113,23 +3177,27 @@ msgstr "" msgid "Korea, Republic of" msgstr "" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:435 +#: shared/web/calendaring.py:71 msgid "xDecember" msgstr "" -#: shared/web/geography.py:184 -msgid "Panama" +#: shared/web/calendaring.py:60 +msgid "March" msgstr "" -#: shared/common/kinds.py:262 +#: shared/common/kinds.py:264 msgid "Text Format" msgstr "" -#: shared/common/kinds.py:1291 +#: shared/common/kinds.py:1307 msgid "Maximum Value" msgstr "" -#: shared/common/kinds.py:695 shared/common/kinds.py:799 +#: shared/web/ElectionsWeb.py:135 +msgid "Approval" +msgstr "" + +#: shared/common/kinds.py:711 shared/common/kinds.py:815 msgid "Sort Labels" msgstr "" @@ -3156,7 +3224,7 @@ msgstr "" msgid "Sudan" msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Wednesday" msgstr "" @@ -3172,12 +3240,12 @@ msgstr "" msgid "Denmark" msgstr "" -#: shared/common/kinds.py:2592 shared/common/kinds.py:2606 -#: shared/common/kinds.py:2620 shared/common/kinds.py:2634 +#: shared/common/kinds.py:2655 shared/common/kinds.py:2669 +#: shared/common/kinds.py:2683 shared/common/kinds.py:2697 msgid "Embedded" msgstr "" -#: shared/web/widgets.py:547 +#: shared/web/widgets.py:544 msgid "day" msgstr "" @@ -3185,19 +3253,19 @@ msgstr "" msgid "The time after which it is not possible to vote for this election anymore. (You will have to change the state of the election to \"closed\" if you want the results to be displayed)" msgstr "" -#: shared/common/kinds.py:178 +#: shared/common/kinds.py:180 msgid "Label (plural form)" msgstr "" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/calendaring.py:63 msgid "October" msgstr "" -#: shared/common/kinds.py:268 shared/web/ArticlesWeb.py:82 +#: shared/common/kinds.py:270 shared/web/ArticlesWeb.py:82 msgid "SPIP" msgstr "" -#: shared/common/kinds.py:2266 +#: shared/common/kinds.py:2329 msgid "Select the people and groups who are allowed to read the item." msgstr "" @@ -3205,6 +3273,10 @@ msgstr "" msgid "Main Heading" msgstr "" +#: shared/common/scripts.py:58 +msgid "Execute On Create" +msgstr "" + #: glasnost-web/sessions.py:101 shared/web/ElectionsWeb.py:85 msgid "End Time" msgstr "" @@ -3217,11 +3289,11 @@ msgstr "" msgid "Being Written" msgstr "" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 +#: shared/web/calendaring.py:61 msgid "June" msgstr "" -#: shared/common/xhtmlgenerator.py:71 +#: shared/common/xhtmlgenerator.py:75 msgid "Differences" msgstr "" @@ -3233,15 +3305,15 @@ msgstr "" msgid "GNU GENERAL PUBLIC LICENSE" msgstr "" -#: shared/common/kinds.py:1129 +#: shared/common/kinds.py:1145 msgid "Float Number" msgstr "" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "August" msgstr "" -#: shared/common/widgets.py:427 +#: shared/common/widgets.py:437 msgid "Show Preview" msgstr "" @@ -3257,7 +3329,7 @@ msgstr "" msgid "forums" msgstr "" -#: shared/common/kinds.py:1952 +#: shared/common/kinds.py:2013 msgid "Minimum Number of Items to Edit" msgstr "" @@ -3269,7 +3341,7 @@ msgstr "" msgid "Spellcheck Entries" msgstr "" -#: shared/common/xhtmlgenerator.py:61 +#: shared/common/xhtmlgenerator.py:65 msgid "Add Candidate" msgstr "" @@ -3277,14 +3349,22 @@ msgstr "" msgid "Australia" msgstr "" -#: shared/common/xhtmlgenerator.py:82 +#: shared/common/xhtmlgenerator.py:86 talTranslations.py:13 msgid "Exit" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:109 +#: shared/web/AuthenticationLoginPasswordWeb.py:112 msgid "Re-enter your new password." msgstr "" +#: shared/web/ElectionsWeb.py:113 +msgid "State" +msgstr "" + +#: shared/web/geography.py:229 +msgid "United Kingdom" +msgstr "" + #: shared/common/widgets.py:208 msgid "Single-Line Text Entry Field" msgstr "" @@ -3301,7 +3381,7 @@ msgstr "" msgid "Kuwait" msgstr "" -#: shared/common/xhtmlgenerator.py:109 +#: shared/common/xhtmlgenerator.py:113 msgid "Utilization" msgstr "" @@ -3317,7 +3397,7 @@ msgstr "" msgid "Counting of the Votes" msgstr "" -#: shared/common/xhtmlgenerator.py:63 +#: shared/common/xhtmlgenerator.py:67 msgid "Back" msgstr "" @@ -3325,11 +3405,11 @@ msgstr "" msgid "Sessions History" msgstr "" -#: glasnost-web/index.py:180 +#: glasnost-web/index.py:180 talTranslations.py:17 msgid "Home" msgstr "" -#: shared/common/CardsCommon.py:344 +#: shared/common/CardsCommon.py:389 msgid "New Card" msgstr "" @@ -3346,7 +3426,7 @@ msgid "Dutch" msgstr "" #: shared/web/AuthenticationWeb.py:155 -#: shared/web/AuthenticationLoginPasswordWeb.py:206 +#: shared/web/AuthenticationLoginPasswordWeb.py:210 #: shared/web/AuthenticationLibertyAllianceWeb.py:126 #: shared/web/AuthenticationLdapWeb.py:129 msgid "Editing Authentication Settings" @@ -3366,15 +3446,12 @@ msgstr "" msgid "Enter your email address." msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 -msgid "Tuesday" +#: shared/proxy/ObjectsProxy.py:1222 shared/proxy/ObjectsProxy.py:1279 +msgid " (at <%s>)" msgstr "" -#: shared/web/VotesWeb.py:94 shared/web/VotesWeb.py:142 -#: shared/web/VotesWeb.py:185 shared/web/VotesWeb.py:229 -#: shared/web/VotesWeb.py:428 shared/web/VotesWeb.py:472 -#: shared/web/VotesWeb.py:532 shared/web/VotesWeb.py:590 -msgid "Blank Vote" +#: shared/web/PeopleWeb.py:80 +msgid "Last Name" msgstr "" #: shared/common/widgets.py:350 @@ -3385,12 +3462,12 @@ msgstr "" msgid "forum" msgstr "" -#: shared/common/xhtmlgenerator.py:65 -#: shared/web/AuthenticationLoginPasswordWeb.py:409 +#: shared/common/xhtmlgenerator.py:69 +#: shared/web/AuthenticationLoginPasswordWeb.py:415 msgid "Change Password" msgstr "" -#: shared/common/kinds.py:1028 +#: shared/common/kinds.py:1044 msgid "Duration" msgstr "" @@ -3422,12 +3499,12 @@ msgstr "" msgid "objects" msgstr "" -#: shared/common/kinds.py:1097 +#: shared/common/kinds.py:1113 msgid "File Path" msgstr "" -#: shared/common/AtomsCommon.py:79 -msgid "atoms" +#: shared/web/AuthenticationLoginPasswordWeb.py:85 +msgid "Enter the username you use on this site." msgstr "" #: shared/web/geography.py:81 @@ -3438,7 +3515,7 @@ msgstr "" msgid "Finland" msgstr "" -#: shared/common/kinds.py:2830 shared/web/GroupsWeb.py:137 +#: shared/common/kinds.py:2902 shared/web/GroupsWeb.py:137 msgid "Items" msgstr "" @@ -3458,7 +3535,7 @@ msgstr "" msgid "person" msgstr "" -#: shared/common/kinds.py:681 +#: shared/common/kinds.py:697 msgid "True" msgstr "" @@ -3467,25 +3544,25 @@ msgstr "" msgid "Translation" msgstr "" -#: shared/common/kinds.py:2433 +#: shared/common/kinds.py:2496 msgid "Glasnost Server ID" msgstr "" -#: shared/common/kinds.py:2952 shared/common/kinds.py:2954 +#: shared/common/kinds.py:3029 shared/common/kinds.py:3031 msgid "Modification Time" msgstr "" -#: shared/common/kinds.py:1373 shared/common/kinds.py:2593 -#: shared/common/kinds.py:2607 shared/common/kinds.py:2621 -#: shared/common/kinds.py:2635 +#: shared/common/kinds.py:1389 shared/common/kinds.py:2656 +#: shared/common/kinds.py:2670 shared/common/kinds.py:2684 +#: shared/common/kinds.py:2698 msgid "Link" msgstr "" -#: shared/common/kinds.py:266 shared/web/ArticlesWeb.py:81 +#: shared/common/kinds.py:268 shared/web/ArticlesWeb.py:81 msgid "HTML" msgstr "" -#: shared/common/kinds.py:2604 +#: shared/common/kinds.py:2667 msgid "Access in Edition Mode" msgstr "" @@ -3501,11 +3578,11 @@ msgstr "" msgid "Korea, Democratic People's Republic of" msgstr "" -#: shared/common/xhtmlgenerator.py:66 +#: shared/common/xhtmlgenerator.py:70 msgid "Change Translation" msgstr "" -#: shared/common/kinds.py:1115 +#: shared/common/kinds.py:1131 msgid "OpenPGP Fingerprint" msgstr "" @@ -3518,11 +3595,11 @@ msgstr "" msgid "preferences" msgstr "" -#: shared/common/xhtmlgenerator.py:88 +#: shared/common/xhtmlgenerator.py:92 msgid "Pester Absentionnists" msgstr "" -#: shared/web/widgets.py:1639 +#: shared/web/widgets.py:1641 msgid "other:" msgstr "" @@ -3538,7 +3615,7 @@ msgstr "" msgid "Voter Token" msgstr "" -#: shared/web/widgets.py:1533 +#: shared/web/widgets.py:1535 msgid "download" msgstr "" @@ -3546,19 +3623,19 @@ msgstr "" msgid "Slovakia" msgstr "" -#: glasnost-web/about.py:59 shared/common/xhtmlgenerator.py:105 +#: glasnost-web/about.py:59 shared/common/xhtmlgenerator.py:109 msgid "Version" msgstr "" -#: shared/web/ElectionsWeb.py:113 -msgid "State" +#: shared/web/widgets.py:547 +msgid "second" msgstr "" -#: shared/common/kinds.py:310 +#: shared/common/kinds.py:312 msgid "In External File" msgstr "" -#: shared/web/widgets.py:1640 +#: shared/web/widgets.py:1642 msgid "Label" msgstr "" @@ -3566,7 +3643,7 @@ msgstr "" msgid "DocBook - %s" msgstr "" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:424 +#: shared/web/calendaring.py:68 msgid "xJanuary" msgstr "" @@ -3578,11 +3655,12 @@ msgstr "" msgid "heading" msgstr "" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:431 +#: shared/web/calendaring.py:70 msgid "xAugust" msgstr "" -#: shared/web/GlasnostTALGenerator.py:99 +#: shared/common/xhtmlgenerator.py:191 shared/web/GlasnostTALGenerator.py:102 +#: talTranslations.py:14 msgid "Go" msgstr "" @@ -3590,10 +3668,8 @@ msgstr "" msgid "LDAP" msgstr "" -#: shared/common/kinds.py:806 shared/web/GradesWeb.py:125 -#: shared/web/VotesWeb.py:421 shared/web/VotesWeb.py:465 -#: shared/web/VotesWeb.py:525 shared/web/VotesWeb.py:583 -msgid "Choice" +#: shared/common/GroupsCommon.py:279 +msgid "Select the items to intersect." msgstr "" #: shared/common/RubricsCommon.py:69 @@ -3604,27 +3680,31 @@ msgstr "" msgid "Enter your name (if you want)." msgstr "" -#: shared/common/kinds.py:685 shared/common/kinds.py:787 +#: shared/common/kinds.py:701 shared/common/kinds.py:803 msgid "Labels" msgstr "" -#: shared/common/kinds.py:285 +#: shared/common/kinds.py:287 msgid "Maximum Number of Characters" msgstr "" -#: shared/common/kinds.py:680 +#: shared/common/kinds.py:696 msgid "False" msgstr "" -#: shared/web/widgets.py:549 +#: shared/common/kinds.py:1916 +msgid "Invalid values" +msgstr "" + +#: shared/web/widgets.py:546 msgid "minute" msgstr "" -#: shared/web/AppointmentsWeb.py:633 +#: shared/web/AppointmentsWeb.py:625 msgid "Week" msgstr "" -#: shared/common/kinds.py:171 +#: shared/common/kinds.py:173 msgid "Enter a user-friendly field name" msgstr "" @@ -3636,7 +3716,7 @@ msgstr "" msgid "Description" msgstr "" -#: shared/common/kinds.py:653 +#: shared/common/kinds.py:669 msgid "Amount" msgstr "" @@ -3644,11 +3724,11 @@ msgstr "" msgid "Authentication (Login/Password)" msgstr "" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:433 -msgid "xOctober" +#: shared/common/properties.py:53 +msgid "Select a field type" msgstr "" -#: shared/common/kinds.py:1191 +#: shared/common/kinds.py:1207 msgid "Glasnost Object" msgstr "" @@ -3664,11 +3744,11 @@ msgstr "" msgid "Cards Models" msgstr "" -#: shared/common/AppointmentsCommon.py:176 +#: shared/common/AppointmentsCommon.py:171 msgid "appointment" msgstr "" -#: shared/common/AppointmentsCommon.py:175 +#: shared/common/AppointmentsCommon.py:170 msgid "New Appointment" msgstr "" @@ -3676,7 +3756,7 @@ msgstr "" msgid "Choose the candidates for this election." msgstr "" -#: shared/web/AppointmentsWeb.py:631 shared/web/widgets.py:517 +#: shared/web/AppointmentsWeb.py:623 shared/web/widgets.py:514 msgid "Day" msgstr "" @@ -3688,19 +3768,23 @@ msgstr "" msgid "Russian Federation" msgstr "" -#: shared/common/kinds.py:2183 shared/common/kinds.py:2185 -msgid "Authors" +#: shared/web/AuthenticationLoginPasswordWeb.py:86 +msgid "Enter your password." msgstr "" -#: shared/common/kinds.py:265 shared/web/ArticlesWeb.py:80 +#: shared/common/kinds.py:267 shared/web/ArticlesWeb.py:80 msgid "DocBook" msgstr "" +#: shared/web/calendaring.py:69 +msgid "xApril" +msgstr "" + #: shared/common/ObjectsCommon.py:206 msgid "Object" msgstr "" -#: shared/common/kinds.py:3106 +#: shared/common/kinds.py:3183 msgid "Input Connector" msgstr "" @@ -3724,7 +3808,7 @@ msgstr "" msgid "votes" msgstr "" -#: shared/common/kinds.py:1331 +#: shared/common/kinds.py:1347 msgid "Integer Choice" msgstr "" @@ -3760,7 +3844,7 @@ msgstr "" msgid "Swaziland" msgstr "" -#: shared/common/kinds.py:227 +#: shared/common/kinds.py:229 msgid "Utilization Mode" msgstr "" @@ -3768,8 +3852,9 @@ msgstr "" msgid "File Name" msgstr "" -#: shared/web/widgets.py:550 -msgid "second" +#: shared/common/kinds.py:3200 shared/common/instructions.py:316 +#: shared/common/values.py:53 +msgid "Kind" msgstr "" #: shared/common/widgets.py:297 @@ -3792,23 +3877,23 @@ msgstr "" msgid "Unknown" msgstr "" -#: shared/web/AppointmentsWeb.py:88 shared/web/ElectionsWeb.py:128 -#: shared/web/BrevesWeb.py:73 shared/web/CommentsWeb.py:85 -#: shared/web/ForumsWeb.py:71 shared/web/widgets.py:836 -#: shared/web/ArticlesWeb.py:92 shared/web/SystemFilesWeb.py:82 -#: shared/web/UploadFilesWeb.py:106 shared/web/VirtualHostsWeb.py:81 +#: shared/common/VirtualHostsCommon.py:126 shared/web/AppointmentsWeb.py:90 +#: shared/web/ElectionsWeb.py:128 shared/web/BrevesWeb.py:73 +#: shared/web/CommentsWeb.py:85 shared/web/ForumsWeb.py:71 +#: shared/web/widgets.py:833 shared/web/ArticlesWeb.py:92 +#: shared/web/SystemFilesWeb.py:82 shared/web/UploadFilesWeb.py:106 msgid "Title" msgstr "" -#: shared/common/ArticlesCommon.py:57 -msgid "Select the author(s) of the document." +#: shared/common/kinds.py:2244 shared/common/kinds.py:2246 +msgid "Authors" msgstr "" #: shared/common/things.py:149 msgid "Internal Name" msgstr "" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:430 +#: shared/web/calendaring.py:70 msgid "xJuly" msgstr "" diff --git a/po/glasnost-web/sv.po b/po/glasnost-web/sv.po index 959799a0..c0dd3573 100644 --- a/po/glasnost-web/sv.po +++ b/po/glasnost-web/sv.po @@ -25,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: glasnost-web $Revision$\n" -"POT-Creation-Date: Wed Sep 24 21:17:49 2003\n" +"POT-Creation-Date: Wed Oct 1 18:00:09 2003\n" "PO-Revision-Date: 2002-03-29 20:29+0100\n" "Last-Translator: Adam Huuva \n" "Language-Team: Swedish \n" @@ -34,7 +34,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.1\n" -#: shared/common/VirtualHostsCommon.py:207 +#: shared/common/VirtualHostsCommon.py:226 msgid "Virtual Hosts" msgstr "" @@ -46,6 +46,10 @@ msgstr "Mime-typ" msgid "Liberty Alliance Server" msgstr "" +#: shared/common/AtomsCommon.py:79 +msgid "atoms" +msgstr "atomer" + #: shared/web/geography.py:150 msgid "Sri Lanka" msgstr "" @@ -58,11 +62,11 @@ msgstr "" msgid "Yugoslavia" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:136 +#: shared/web/AuthenticationLoginPasswordWeb.py:140 msgid "Enter the password." msgstr "" -#: shared/common/kinds.py:111 +#: shared/common/kinds.py:113 #, fuzzy msgid "Private" msgstr "Skapa" @@ -72,11 +76,11 @@ msgstr "Skapa" msgid "New Translation" msgstr "Översättare" -#: shared/common/kinds.py:1971 +#: shared/common/kinds.py:2032 msgid "Sequence" msgstr "" -#: shared/web/GlasnostTALGenerator.py:98 +#: shared/web/GlasnostTALGenerator.py:101 talTranslations.py:4 msgid "You are not logged in" msgstr "" @@ -84,7 +88,7 @@ msgstr "" msgid "Secret Ballot" msgstr "Hemlig röstsedel" -#: shared/web/AuthenticationLoginPasswordWeb.py:341 +#: shared/web/AuthenticationLoginPasswordWeb.py:347 #, fuzzy msgid "Changing User Password" msgstr "Ändra lösenord" @@ -94,19 +98,15 @@ msgstr " msgid "Enter your nickname (optional)." msgstr "Översättare" -#: shared/web/PeopleWeb.py:91 -msgid "Nickname" -msgstr "Smeknamn" - #: shared/web/geography.py:92 msgid "Cyprus" msgstr "" -#: shared/common/kinds.py:193 shared/common/kinds.py:2591 +#: shared/common/kinds.py:195 shared/common/kinds.py:2654 msgid "Same As Edition Mode" msgstr "" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:434 +#: shared/web/calendaring.py:71 #, fuzzy msgid "xNovember" msgstr "Icke-medlem" @@ -115,12 +115,11 @@ msgstr "Icke-medlem" msgid "Check Box" msgstr "" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 -#, fuzzy -msgid "April" -msgstr "Artikel" +#: shared/common/scripts.py:66 +msgid "Execute On Submit" +msgstr "" -#: shared/common/kinds.py:2991 +#: shared/common/kinds.py:3068 #, fuzzy msgid "User Token" msgstr "Väljarpolett" @@ -130,12 +129,12 @@ msgstr "V msgid "Are you sure you want to delete the %s?" msgstr "Är du säker på att du vill ta bort posten?" -#: shared/common/CardsCommon.py:70 shared/common/kinds.py:1061 +#: shared/common/CardsCommon.py:70 shared/common/kinds.py:1077 #, fuzzy msgid "Fields" msgstr "Filer" -#: shared/common/xhtmlgenerator.py:73 +#: shared/common/xhtmlgenerator.py:77 msgid "Edit" msgstr "Redigera" @@ -144,7 +143,7 @@ msgstr "Redigera" msgid "New Heading" msgstr "Ny placering" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 +#: shared/web/calendaring.py:60 msgid "February" msgstr "" @@ -152,14 +151,14 @@ msgstr "" msgid "Liberia" msgstr "" -#: shared/common/kinds.py:2569 +#: shared/common/kinds.py:2632 msgid "Structure" msgstr "" #: shared/common/AuthenticationLoginPasswordCommon.py:64 -#: shared/common/kinds.py:1872 shared/common/AuthenticationLdapCommon.py:63 +#: shared/common/kinds.py:1900 shared/common/AuthenticationLdapCommon.py:63 #: shared/web/AuthenticationLoginPasswordWeb.py:67 -#: shared/web/AuthenticationLoginPasswordWeb.py:139 +#: shared/web/AuthenticationLoginPasswordWeb.py:143 msgid "Password" msgstr "Lösenord" @@ -183,15 +182,24 @@ msgstr "Atomer" msgid "Never" msgstr "Aldrig" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 +#: shared/web/calendaring.py:61 msgid "May" msgstr "" +#: talTranslations.py:7 +#, fuzzy +msgid "Sessions" +msgstr "Omröstningar" + #: shared/web/TranslationsWeb.py:140 msgid "From " msgstr "" -#: shared/common/kinds.py:87 +#: shared/common/kinds.py:1988 +msgid "Script Source Code" +msgstr "" + +#: shared/common/kinds.py:89 #, fuzzy msgid "Containers" msgstr "Kontakter" @@ -204,7 +212,7 @@ msgstr "fil" msgid "Needed" msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Thursday" msgstr "" @@ -212,12 +220,7 @@ msgstr "" msgid "Bhutan" msgstr "" -#: shared/common/GroupsCommon.py:279 -#, fuzzy -msgid "Select the items to intersect." -msgstr "Välj en kandidat att lägga till" - -#: shared/common/kinds.py:2835 shared/web/GroupsWeb.py:90 +#: shared/common/kinds.py:2907 shared/web/GroupsWeb.py:90 #, fuzzy msgid "Union" msgstr "Okänd" @@ -239,7 +242,7 @@ msgstr "Editeringstid" msgid "Burundi" msgstr "" -#: shared/common/kinds.py:269 +#: shared/common/kinds.py:271 msgid "Preformatted Text" msgstr "" @@ -247,7 +250,16 @@ msgstr "" msgid "IP Address" msgstr "" -#: shared/common/kinds.py:1345 +#: talTranslations.py:19 +#, fuzzy +msgid "Navigation" +msgstr "Översättare" + +#: talTranslations.py:16 +msgid ", l'entreprise ouverte" +msgstr "" + +#: shared/common/kinds.py:1361 #, fuzzy msgid "Select the language used to fill in this card." msgstr "Välj en kandidat att lägga till" @@ -268,8 +280,8 @@ msgstr "" msgid "Bahamas" msgstr "" -#: shared/common/kinds.py:195 shared/common/kinds.py:213 -#: shared/common/kinds.py:231 shared/common/kinds.py:249 +#: shared/common/kinds.py:197 shared/common/kinds.py:215 +#: shared/common/kinds.py:233 shared/common/kinds.py:251 #, fuzzy msgid "Read Only" msgstr "Läsare" @@ -278,7 +290,7 @@ msgstr "L msgid "Grenada" msgstr "" -#: shared/common/kinds.py:956 +#: shared/common/kinds.py:972 #, fuzzy msgid "Date & Time Format" msgstr "Tid vid senast inloggning" @@ -304,7 +316,7 @@ msgstr "Skillnader - %s" msgid "Debian Maintainers" msgstr "Debian-underhållare" -#: shared/common/kinds.py:1966 +#: shared/common/kinds.py:2027 msgid "Minimum Number of Items" msgstr "" @@ -312,11 +324,11 @@ msgstr "" msgid "Losses" msgstr "Förluster" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 +#: shared/web/calendaring.py:60 msgid "January" msgstr "" -#: shared/common/xhtmlgenerator.py:68 +#: shared/common/xhtmlgenerator.py:72 #, fuzzy msgid "Compute" msgstr "Se källkod" @@ -325,7 +337,7 @@ msgstr "Se k msgid "files" msgstr "filer" -#: shared/common/kinds.py:3262 +#: shared/common/kinds.py:3368 #, fuzzy msgid "Widget Name" msgstr "Bredd" @@ -334,21 +346,20 @@ msgstr "Bredd" #: glasnost-web/about.py:124 glasnost-web/about.py:134 #: glasnost-web/about.py:154 shared/web/TranslationsWeb.py:165 #: shared/web/TranslationsWeb.py:712 shared/web/GradesWeb.py:85 -#: shared/web/widgets.py:142 shared/web/widgets.py:836 -#: shared/web/widgets.py:842 shared/web/VotesWeb.py:157 +#: shared/web/widgets.py:144 shared/web/widgets.py:833 +#: shared/web/widgets.py:839 shared/web/VotesWeb.py:157 #: shared/web/VotesWeb.py:244 msgid ":" msgstr ":" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/calendaring.py:63 #, fuzzy msgid "November" msgstr "Icke-medlem" -#: shared/web/ElectionsWeb.py:135 -#, fuzzy -msgid "Approval" -msgstr "Använd" +#: shared/web/TranslationsWeb.py:360 +msgid "Fuzzy" +msgstr "" #: shared/web/geography.py:85 #, fuzzy @@ -361,11 +372,11 @@ msgstr "Fil" msgid "User" msgstr "Användare:" -#: shared/common/xhtmlgenerator.py:112 +#: shared/common/xhtmlgenerator.py:116 msgid "Vote Blank" msgstr "Blank röst" -#: shared/common/kinds.py:3179 +#: shared/common/kinds.py:3256 msgid "Output Connector" msgstr "" @@ -393,7 +404,7 @@ msgstr " msgid "Belarus" msgstr "" -#: shared/web/AppointmentsWeb.py:312 +#: shared/web/AppointmentsWeb.py:298 msgid "Week %d of %d" msgstr "" @@ -423,7 +434,7 @@ msgstr "Inst msgid "Election in progress" msgstr "Aktiv omröstning" -#: shared/common/xhtmlgenerator.py:67 +#: shared/common/xhtmlgenerator.py:71 #, fuzzy msgid "Duplicate" msgstr "Värde givet två gånger !" @@ -432,12 +443,12 @@ msgstr "V msgid "Weightings" msgstr "Vikter" -#: shared/common/VirtualHostsCommon.py:107 +#: shared/common/VirtualHostsCommon.py:124 #, fuzzy msgid "Enter the title of this virtual host." msgstr "De senaste artiklarna" -#: shared/common/VirtualHostsCommon.py:202 +#: shared/common/VirtualHostsCommon.py:221 #, fuzzy msgid "New Virtual Host" msgstr "Röst - %s" @@ -460,7 +471,7 @@ msgstr "Avst msgid "Select the items to subtract." msgstr "Välj en kandidat att lägga till" -#: shared/common/xhtmlgenerator.py:103 +#: shared/common/xhtmlgenerator.py:107 #, fuzzy msgid "Use" msgstr "Användare:" @@ -474,24 +485,20 @@ msgstr "" msgid "Aliases" msgstr "Oavgjorda" -#: shared/common/AppointmentsCommon.py:99 +#: talTranslations.py:18 +#, fuzzy +msgid "Calendar" +msgstr "Kandidate" + +#: shared/common/AppointmentsCommon.py:94 #, fuzzy msgid "Enter the day of the appointment." msgstr "De senaste artiklarna" -#: shared/common/properties.py:53 -#, fuzzy -msgid "Select a field type" -msgstr "Välj en kandidat att lägga till" - #: shared/web/geography.py:173 msgid "Mozambique" msgstr "" -#: shared/proxy/ObjectsProxy.py:1224 shared/proxy/ObjectsProxy.py:1281 -msgid " (at <%s>)" -msgstr "" - #: shared/web/geography.py:58 #, fuzzy msgid "Austria" @@ -510,14 +517,14 @@ msgstr "" msgid "Expiration Time" msgstr "Editeringstid" -#: shared/common/kinds.py:267 +#: shared/common/kinds.py:269 msgid "reStructuredText" msgstr "" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/ObjectsWeb.py:82 #, fuzzy -msgid "December" -msgstr "Medlem" +msgid "Version Number" +msgstr "Version:" #: shared/web/ElectionsWeb.py:143 msgid "Voters" @@ -528,11 +535,11 @@ msgstr "V msgid "Translation to %s" msgstr "Översättare" -#: shared/common/xhtmlgenerator.py:80 +#: shared/common/xhtmlgenerator.py:84 msgid "Read the License" msgstr "Läs licensen" -#: shared/common/kinds.py:246 +#: shared/common/kinds.py:248 msgid "Viewing Mode" msgstr "" @@ -558,7 +565,7 @@ msgstr "Finska och svenska" msgid "History - %s" msgstr "Historik - %s" -#: shared/common/kinds.py:2982 +#: shared/common/kinds.py:3059 #, fuzzy msgid "Application Token" msgstr "Omröstningspolett" @@ -568,17 +575,17 @@ msgstr "Omr msgid "Sweden" msgstr "Svenska" -#: shared/common/kinds.py:2652 +#: shared/common/kinds.py:2715 #, fuzzy msgid "Thing" msgstr "rubrik" -#: shared/common/kinds.py:161 +#: shared/common/kinds.py:163 #, fuzzy msgid "Translatable" msgstr "Översättare" -#: shared/common/kinds.py:2911 shared/common/kinds.py:2913 +#: shared/common/kinds.py:2983 shared/common/kinds.py:2985 msgid "Creation Time" msgstr "Datum vid skapande" @@ -586,10 +593,6 @@ msgstr "Datum vid skapande" msgid "%(from)s to %(to)s Translators" msgstr "" -#: shared/common/GroupsCommon.py:406 -msgid "group" -msgstr "grupp" - #: shared/web/geography.py:197 msgid "Saudi Arabia" msgstr "" @@ -599,12 +602,12 @@ msgstr "" msgid "Intersection" msgstr "Översättare" -#: shared/common/kinds.py:2968 +#: shared/common/kinds.py:3045 #, fuzzy msgid "Token" msgstr "Röstpolett" -#: shared/common/AppointmentsCommon.py:104 +#: shared/common/AppointmentsCommon.py:99 #, fuzzy msgid "Enter a title for this appointment." msgstr "De senaste artiklarna" @@ -613,7 +616,7 @@ msgstr "De senaste artiklarna" msgid "Year Minimum Value" msgstr "" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:432 +#: shared/web/calendaring.py:70 #, fuzzy msgid "xSeptember" msgstr "Medlem" @@ -628,11 +631,11 @@ msgstr "Logga ut" msgid "Members Types" msgstr "Mime-typ" -#: shared/web/GlasnostTALGenerator.py:100 +#: shared/web/GlasnostTALGenerator.py:103 talTranslations.py:10 msgid "All Objects" msgstr "Alla objekt" -#: shared/common/kinds.py:1865 +#: shared/common/kinds.py:1893 #, fuzzy msgid "Enter Twice" msgstr "Väljarnas val" @@ -645,12 +648,12 @@ msgstr "Dina senaste systemfiler" msgid "grading" msgstr "placering" -#: shared/web/AuthenticationLoginPasswordWeb.py:94 +#: shared/web/AuthenticationLoginPasswordWeb.py:97 #, fuzzy msgid "Current Password" msgstr "Ändra lösenord" -#: shared/web/kinds.py:1351 +#: shared/web/kinds.py:1352 #, fuzzy msgid "Default Values" msgstr "Standardgrupp" @@ -669,11 +672,11 @@ msgstr "Fil" msgid "New Grade" msgstr "Ny placering" -#: shared/common/xhtmlgenerator.py:85 +#: shared/common/xhtmlgenerator.py:89 msgid "New" msgstr "Ny" -#: shared/common/xhtmlgenerator.py:92 +#: shared/common/xhtmlgenerator.py:96 #, fuzzy msgid "Pretion" msgstr "Presidentval" @@ -729,18 +732,20 @@ msgstr "Svenska" msgid "GnuPG Fingerprint" msgstr "GnuPG fingeravtryck" -#: shared/common/xhtmlgenerator.py:77 +#: shared/common/xhtmlgenerator.py:81 msgid "Find" msgstr "Sök" -#: shared/web/VirtualHostsWeb.py:73 +#: shared/common/VirtualHostsCommon.py:99 #, fuzzy msgid "Web Host Name" msgstr "Efternamn" -#: shared/web/ForumsWeb.py:195 -msgid "Replies List" -msgstr "" +#: shared/web/CardsWeb.py:229 shared/web/ObjectsWeb.py:366 +#: shared/web/VotesWeb.py:710 shared/web/UploadFilesWeb.py:227 +#, fuzzy +msgid "Editing %s - %s" +msgstr "Ändra person - %s" #: shared/common/widgets.py:375 #, fuzzy @@ -754,7 +759,7 @@ msgid "" "be displayed." msgstr "" -#: shared/common/xhtmlgenerator.py:69 +#: shared/common/xhtmlgenerator.py:73 msgid "Create" msgstr "Skapa" @@ -784,7 +789,7 @@ msgstr "De senaste artiklarna" msgid "Links" msgstr "Länkar" -#: shared/common/xhtmlgenerator.py:87 +#: shared/common/xhtmlgenerator.py:91 msgid "OK" msgstr "OK" @@ -792,7 +797,7 @@ msgstr "OK" msgid "Albania" msgstr "" -#: shared/common/kinds.py:3221 shared/common/instructions.py:294 +#: shared/common/kinds.py:3327 shared/common/instructions.py:294 msgid "Value Holder" msgstr "" @@ -819,7 +824,7 @@ msgstr "" msgid "New Zealand" msgstr "Ny Rubrik" -#: shared/common/xhtmlgenerator.py:210 +#: shared/common/xhtmlgenerator.py:303 msgid "Missing Object (%s)" msgstr "" @@ -837,7 +842,7 @@ msgstr "De borttagna omr msgid "Error!" msgstr "Fel!" -#: shared/common/xhtmlgenerator.py:89 +#: shared/common/xhtmlgenerator.py:93 #, fuzzy msgid "Post a Comment" msgstr "Kommentar" @@ -846,7 +851,7 @@ msgstr "Kommentar" msgid "Wins" msgstr "Segrar" -#: shared/web/AuthenticationLoginPasswordWeb.py:112 +#: shared/web/AuthenticationLoginPasswordWeb.py:115 #, fuzzy msgid "New Password (Confirmation)" msgstr "Lösenord" @@ -856,7 +861,7 @@ msgstr "L msgid "Oman" msgstr "tyska" -#: shared/common/xhtmlgenerator.py:95 +#: shared/common/xhtmlgenerator.py:99 #, fuzzy msgid "Refuse" msgstr "Resultat" @@ -881,7 +886,7 @@ msgstr " msgid "New Election" msgstr "omröstning" -#: shared/common/kinds.py:1295 +#: shared/common/kinds.py:1311 msgid "Minimum Value" msgstr "" @@ -895,7 +900,7 @@ msgid "" "mails." msgstr "" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 #, fuzzy msgid "Friday" msgstr "Sök" @@ -909,11 +914,11 @@ msgstr "R msgid "DocBook Source - %s" msgstr "DocBook källa - %s" -#: shared/common/kinds.py:309 +#: shared/common/kinds.py:311 msgid "Internal" msgstr "" -#: shared/common/xhtmlgenerator.py:94 +#: shared/common/xhtmlgenerator.py:98 msgid "Submit For Evaluation" msgstr "Föreslå för utvärdering" @@ -921,17 +926,17 @@ msgstr "F msgid "Analyze" msgstr "Analys" -#: shared/common/VirtualHostsCommon.py:53 +#: shared/common/VirtualHostsCommon.py:54 #, fuzzy msgid "Select the default virtual host to use on this server" msgstr "De senaste filerna att administrera" -#: shared/web/AuthenticationLoginPasswordWeb.py:426 +#: shared/web/AuthenticationLoginPasswordWeb.py:432 #, fuzzy msgid "Change password for user:" msgstr "Ändra lösenord" -#: shared/common/xhtmlgenerator.py:79 +#: shared/common/xhtmlgenerator.py:83 #, fuzzy msgid "New Implementation" msgstr "Ny organisation" @@ -940,7 +945,7 @@ msgstr "Ny organisation" msgid "Specified path is not a file!" msgstr "Den angivna åtkomstvägen pekar inte på en fil!" -#: shared/common/kinds.py:2148 +#: shared/common/kinds.py:2209 #, fuzzy msgid "Choose the user(s) of this object." msgstr "De avslutade omröstningarnas röster" @@ -960,10 +965,6 @@ msgid "" "\"?" msgstr "Är du säker på att du vill skicka lösenordet med e-post till %s?" -#: shared/web/geography.py:137 -msgid "Kyrgyzstan" -msgstr "" - #: shared/common/widgets.py:198 msgid "Amount Entry Field" msgstr "" @@ -1023,7 +1024,7 @@ msgstr "De senaste artiklarna" msgid "Instruction" msgstr "Översättare" -#: shared/web/widgets.py:633 +#: shared/web/widgets.py:630 msgid "undefined" msgstr "" @@ -1035,16 +1036,16 @@ msgstr "" msgid "ID" msgstr "" -#: shared/web/AppointmentsWeb.py:214 +#: shared/web/AppointmentsWeb.py:200 #, fuzzy msgid "Day long appointments" msgstr "Innehåll" -#: shared/common/kinds.py:1302 +#: shared/common/kinds.py:1318 msgid "Integer Number" msgstr "" -#: shared/common/kinds.py:820 +#: shared/common/kinds.py:836 #, fuzzy msgid "Values" msgstr "Misslyckades" @@ -1078,15 +1079,15 @@ msgstr " msgid "Yemen" msgstr "Aldrig" -#: shared/common/kinds.py:2457 +#: shared/common/kinds.py:2520 msgid "Server Role" msgstr "" -#: shared/common/kinds.py:1041 +#: shared/common/kinds.py:1057 msgid "Email Address" msgstr "" -#: shared/common/VirtualHostsCommon.py:80 +#: shared/common/VirtualHostsCommon.py:82 msgid "" "Enter the Glasnost dispatcher id for this virtual host (you may have to " "consult your administrator)." @@ -1100,8 +1101,8 @@ msgstr "blankr msgid "Mauritania" msgstr "" -#: shared/common/kinds.py:196 shared/common/kinds.py:214 -#: shared/common/kinds.py:232 shared/common/kinds.py:250 +#: shared/common/kinds.py:198 shared/common/kinds.py:216 +#: shared/common/kinds.py:234 shared/common/kinds.py:252 msgid "Read Only / Hidden If Empty" msgstr "" @@ -1118,17 +1119,11 @@ msgstr "K msgid "Editing Global Settings" msgstr "Ändra inställningar - %s" -#: shared/web/ObjectsWeb.py:366 shared/web/VotesWeb.py:710 -#: shared/web/UploadFilesWeb.py:223 -#, fuzzy -msgid "Editing %s - %s" -msgstr "Ändra person - %s" - #: shared/web/ElectionsWeb.py:90 msgid "One-Time" msgstr "Engångsomröstning" -#: shared/common/kinds.py:108 +#: shared/common/kinds.py:110 msgid "Import / Export" msgstr "" @@ -1162,6 +1157,10 @@ msgstr "Kapitel" msgid "Time Entry Field" msgstr "Fil" +#: shared/common/scripts.py:78 +msgid "Output Console" +msgstr "" + #: shared/web/AuthenticationLoginPasswordWeb.py:70 #, fuzzy msgid "User Choice" @@ -1175,16 +1174,20 @@ msgstr "" msgid "Israel" msgstr "" +#: shared/web/ElectionsWeb.py:353 shared/web/ElectionsWeb.py:369 +msgid "secret" +msgstr "hemlig" + #: shared/common/PeopleCommon.py:90 msgid "Enter the first name." msgstr "" -#: shared/common/widgets.py:479 +#: shared/common/widgets.py:489 msgid "URL Entry Field" msgstr "" -#: shared/common/kinds.py:194 shared/common/kinds.py:212 -#: shared/common/kinds.py:230 shared/common/kinds.py:248 +#: shared/common/kinds.py:196 shared/common/kinds.py:214 +#: shared/common/kinds.py:232 shared/common/kinds.py:250 #, fuzzy msgid "Hidden" msgstr "Fil" @@ -1246,7 +1249,7 @@ msgstr "Procent" msgid "The last short news to administer" msgstr "De senaste kortnyheterna att administrera" -#: shared/common/kinds.py:210 +#: shared/common/kinds.py:212 #, fuzzy msgid "Edition Mode" msgstr "Editeringstid" @@ -1265,12 +1268,12 @@ msgstr "Storlek" msgid "Barbados" msgstr "Kapitel" -#: shared/common/kinds.py:670 +#: shared/common/kinds.py:686 #, fuzzy msgid "Any" msgstr "Analys" -#: shared/common/ForumsCommon.py:102 +#: shared/common/ForumsCommon.py:102 talTranslations.py:1 #, fuzzy msgid "Forums" msgstr "Format" @@ -1280,7 +1283,7 @@ msgstr "Format" msgid "Taiwan" msgstr "Fil" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 #, fuzzy msgid "September" msgstr "Medlem" @@ -1305,15 +1308,15 @@ msgstr "" msgid "Nicaragua" msgstr "" -#: shared/web/UploadFilesWeb.py:429 +#: shared/web/UploadFilesWeb.py:433 msgid "Your last files" msgstr "Dina senaste filer" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:429 +#: shared/web/calendaring.py:69 msgid "xJune" msgstr "" -#: shared/common/kinds.py:146 +#: shared/common/kinds.py:148 #, fuzzy msgid "Mandatory" msgstr "Översättare" @@ -1322,7 +1325,7 @@ msgstr " msgid "Public Ballot" msgstr "Öppen röstsedel" -#: shared/common/kinds.py:113 +#: shared/common/kinds.py:115 #, fuzzy msgid "To Server Only" msgstr "Aldrig" @@ -1331,7 +1334,7 @@ msgstr "Aldrig" msgid "Heading" msgstr "Rubrik" -#: shared/common/kinds.py:2490 +#: shared/common/kinds.py:2553 #, fuzzy msgid "Slot Name" msgstr "Förnamn" @@ -1345,8 +1348,8 @@ msgstr "Ny" msgid "Winners Count" msgstr "Antal vinnare" -#: shared/web/CardsWeb.py:343 shared/web/VotesWeb.py:708 -#: shared/web/UploadFilesWeb.py:221 +#: shared/web/CardsWeb.py:406 shared/web/VotesWeb.py:708 +#: shared/web/UploadFilesWeb.py:225 #, fuzzy msgid "New %s" msgstr "Ny" @@ -1355,11 +1358,12 @@ msgstr "Ny" msgid "Reverse Year Order?" msgstr "" -#: shared/common/kinds.py:2091 +#: shared/common/kinds.py:2152 msgid "Accepted Types" msgstr "" #: shared/common/ElectionsCommon.py:254 shared/web/ElectionsWeb.py:882 +#: talTranslations.py:9 msgid "Elections" msgstr "Omröstningar" @@ -1386,22 +1390,23 @@ msgstr "F msgid "Georgia" msgstr "Tyska" -#: shared/common/xhtmlgenerator.py:106 +#: shared/common/xhtmlgenerator.py:110 #, fuzzy msgid "Definition" msgstr "omröstning" -#: shared/common/CardsCommon.py:347 +#: shared/common/CardsCommon.py:392 #, fuzzy msgid "Card" msgstr "Skapa" -#: shared/common/kinds.py:2197 shared/common/kinds.py:2201 +#: shared/common/kinds.py:2258 shared/common/kinds.py:2264 #, fuzzy msgid "Properties" msgstr "Organisationer" -#: shared/common/UploadFilesCommon.py:137 shared/web/UploadFilesWeb.py:440 +#: shared/common/UploadFilesCommon.py:137 shared/web/UploadFilesWeb.py:444 +#: talTranslations.py:15 msgid "Files" msgstr "Filer" @@ -1418,6 +1423,10 @@ msgstr "grupper" msgid "Active" msgstr "Artikel" +#: shared/common/scripts.py:74 +msgid "Execute On View" +msgstr "" + #: shared/common/GroupsCommon.py:409 msgid "Groups" msgstr "Grupper" @@ -1430,11 +1439,12 @@ msgstr "artiklar" msgid "Added to slot" msgstr "" -#: shared/web/ElectionsWeb.py:353 shared/web/ElectionsWeb.py:369 -msgid "secret" -msgstr "hemlig" +#: shared/common/widgets.py:418 +#, fuzzy +msgid "Others Button" +msgstr "Öppen röstsedel" -#: shared/web/AuthenticationLoginPasswordWeb.py:103 +#: shared/web/AuthenticationLoginPasswordWeb.py:106 #, fuzzy msgid "New Password" msgstr "Lösenord" @@ -1447,7 +1457,7 @@ msgstr "" msgid "Armenia" msgstr "" -#: shared/common/AppointmentsCommon.py:177 +#: shared/common/AppointmentsCommon.py:172 #, fuzzy msgid "Appointment" msgstr "Innehåll" @@ -1456,25 +1466,29 @@ msgstr "Inneh msgid "Kind of Ballots" msgstr "Röstsedlarnas typ" -#: shared/common/kinds.py:2109 shared/common/kinds.py:2113 +#: shared/common/kinds.py:2170 shared/common/kinds.py:2174 #, fuzzy msgid "Argument Pins" msgstr "Avstående" -#: shared/common/AppointmentsCommon.py:179 +#: shared/common/AppointmentsCommon.py:174 #, fuzzy msgid "Appointments" msgstr "Innehåll" -#: shared/common/xhtmlgenerator.py:93 +#: shared/common/xhtmlgenerator.py:97 msgid "Preview" msgstr "" -#: shared/common/kinds.py:104 shared/common/widgets.py:80 +#: shared/common/kinds.py:106 shared/common/widgets.py:80 #, fuzzy msgid "Hide Field Label" msgstr "Förnamn" +#: shared/web/calendaring.py:57 +msgid "Tuesday" +msgstr "" + #: shared/web/ForumsWeb.py:294 #, fuzzy msgid "Subjects" @@ -1498,9 +1512,9 @@ msgstr "" msgid "New Short Article" msgstr "Kortnyhet" -#: shared/web/PeopleWeb.py:80 -msgid "Last Name" -msgstr "Efternamn" +#: shared/web/geography.py:184 +msgid "Panama" +msgstr "" #: shared/web/geography.py:115 msgid "Guinea" @@ -1522,7 +1536,7 @@ msgstr "" msgid "Yes" msgstr "" -#: shared/common/kinds.py:110 +#: shared/common/kinds.py:112 msgid "From Server Only" msgstr "" @@ -1539,7 +1553,7 @@ msgstr "" msgid "Duration Entry Field" msgstr "" -#: shared/common/kinds.py:708 shared/common/kinds.py:812 +#: shared/common/kinds.py:724 shared/common/kinds.py:828 #, fuzzy msgid "Titles" msgstr "Titel" @@ -1549,7 +1563,7 @@ msgstr "Titel" msgid "Malaysia" msgstr "Misslyckades" -#: shared/web/AppointmentsWeb.py:635 shared/web/widgets.py:502 +#: shared/web/AppointmentsWeb.py:627 shared/web/widgets.py:498 msgid "Month" msgstr "" @@ -1606,7 +1620,7 @@ msgstr "" msgid "Choose whether to crypt e-mails Glasnost sends to you." msgstr "" -#: shared/common/kinds.py:1426 +#: shared/common/kinds.py:1442 #, fuzzy msgid "Mapping" msgstr "Medelvärde" @@ -1621,7 +1635,7 @@ msgstr "Aldrig" msgid "Login & Password" msgstr "Ändra lösenord" -#: shared/common/xhtmlgenerator.py:98 +#: shared/common/xhtmlgenerator.py:102 talTranslations.py:5 msgid "Settings" msgstr "Inställningar" @@ -1634,7 +1648,7 @@ msgstr "Format" msgid "Bulgaria" msgstr "" -#: shared/common/xhtmlgenerator.py:60 +#: shared/common/xhtmlgenerator.py:64 #, fuzzy msgid "Add Article" msgstr "Artikel" @@ -1643,11 +1657,10 @@ msgstr "Artikel" msgid "Developers" msgstr "Utvecklare" -#: shared/common/kinds.py:3123 shared/common/instructions.py:316 -#: shared/common/values.py:53 +#: shared/common/AppointmentsCommon.py:63 #, fuzzy -msgid "Kind" -msgstr "Sök" +msgid "Select the group that holds categories for the appointments." +msgstr "Välj en kandidat att lägga till" #: shared/web/ElectionsWeb.py:700 #, fuzzy @@ -1659,11 +1672,11 @@ msgstr "Bekr msgid "Translation Language" msgstr "Språk" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "July" msgstr "" -#: shared/common/xhtmlgenerator.py:72 +#: shared/common/xhtmlgenerator.py:76 msgid "Download Glasnost" msgstr "Ladda hem Glasnost" @@ -1672,24 +1685,20 @@ msgstr "Ladda hem Glasnost" msgid "Members" msgstr "Medlemmar" -#: shared/web/ObjectsWeb.py:82 -#, fuzzy -msgid "Version Number" -msgstr "Version:" - -#: shared/web/AppointmentsWeb.py:82 +#: shared/web/AppointmentsWeb.py:84 msgid "Select the people and groups who are assigned to this appointment." msgstr "" -#: shared/common/xhtmlgenerator.py:91 shared/common/PreferencesCommon.py:117 +#: shared/common/xhtmlgenerator.py:95 shared/common/PreferencesCommon.py:117 #: shared/common/PreferencesCommon.py:119 shared/web/PreferencesWeb.py:191 msgid "Preferences" msgstr "Inställningar" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:426 -#, fuzzy -msgid "xMarch" -msgstr "Läsare" +#: shared/common/kinds.py:822 shared/web/GradesWeb.py:125 +#: shared/web/VotesWeb.py:421 shared/web/VotesWeb.py:465 +#: shared/web/VotesWeb.py:525 shared/web/VotesWeb.py:583 +msgid "Choice" +msgstr "Val" #: shared/common/PeopleCommon.py:78 msgid "Enter the e-mail address." @@ -1724,12 +1733,12 @@ msgstr "" msgid "Malawi" msgstr "" -#: shared/common/xhtmlgenerator.py:90 +#: shared/common/xhtmlgenerator.py:94 #, fuzzy msgid "Reply" msgstr "Använd" -#: shared/web/CardsWeb.py:248 +#: shared/web/CardsWeb.py:313 #, fuzzy msgid "Editing Definition of Card \"%s\"" msgstr "Redigera röst - %s" @@ -1748,7 +1757,7 @@ msgstr "Omr msgid "Winners" msgstr "Segrare" -#: shared/common/xhtmlgenerator.py:100 +#: shared/common/xhtmlgenerator.py:104 #, fuzzy msgid "Source" msgstr "Se källkod" @@ -1758,12 +1767,12 @@ msgstr "Se k msgid "France" msgstr "Franska" -#: shared/common/kinds.py:307 +#: shared/common/kinds.py:309 #, fuzzy msgid "Storage" msgstr "Tillstånd" -#: shared/common/xhtmlgenerator.py:102 +#: shared/common/xhtmlgenerator.py:106 #, fuzzy msgid "Update Translation" msgstr "Översättare" @@ -1780,6 +1789,10 @@ msgstr "Placering" msgid "Candidates One-on-One Comparison" msgstr "Parvis jämförelse av kandidater" +#: shared/common/xhtmlgenerator.py:78 +msgid "Edit Arguments" +msgstr "" + #: shared/web/geography.py:52 msgid "Afghanistan" msgstr "" @@ -1796,16 +1809,21 @@ msgstr "Version - %s" msgid "Select the objects that are parts of this heading." msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:176 +#: shared/web/calendaring.py:63 +#, fuzzy +msgid "December" +msgstr "Medlem" + +#: shared/web/AuthenticationLoginPasswordWeb.py:180 #, fuzzy msgid "Authentication (Login/Password) Settings" msgstr "Ändra inställningar - %s" -#: shared/common/kinds.py:692 shared/common/kinds.py:797 +#: shared/common/kinds.py:708 shared/common/kinds.py:813 msgid "Check the box to sort labels alphabetically" msgstr "" -#: shared/common/AppointmentsCommon.py:78 +#: shared/common/AppointmentsCommon.py:73 #, fuzzy msgid "Enter the text of this appointment." msgstr "De senaste artiklarna" @@ -1852,11 +1870,11 @@ msgstr " msgid "Finnish" msgstr "Finska" -#: shared/common/kinds.py:2097 +#: shared/common/kinds.py:2158 msgid "Accepted Roles" msgstr "" -#: shared/common/kinds.py:530 +#: shared/common/kinds.py:538 msgid "Maximum Number of Items" msgstr "" @@ -1865,7 +1883,7 @@ msgstr "" msgid "Maldives" msgstr "Misslyckades" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Sunday" msgstr "" @@ -1874,7 +1892,7 @@ msgstr "" msgid "Argentina" msgstr "Avstående" -#: shared/common/kinds.py:3075 +#: shared/common/kinds.py:3152 #, fuzzy msgid "Extended Choice" msgstr "Väljarnas val" @@ -1884,7 +1902,7 @@ msgstr "V msgid "Dispatcher" msgstr "Ladda hem Glasnost" -#: shared/common/xhtmlgenerator.py:104 +#: shared/common/xhtmlgenerator.py:108 #, fuzzy msgid "Validate" msgstr "Kandidate" @@ -1894,12 +1912,12 @@ msgid "" "Select the people and groups who are allowed to read items of this kind." msgstr "" -#: shared/web/widgets.py:1337 +#: shared/web/widgets.py:1342 #, fuzzy msgid "Others" msgstr "Väljare" -#: shared/web/AppointmentsWeb.py:596 +#: shared/web/AppointmentsWeb.py:587 #, fuzzy msgid "Hour: %s - %s" msgstr "Person - %s" @@ -1926,11 +1944,11 @@ msgstr "Spr msgid "French" msgstr "Franska" -#: shared/common/xhtmlgenerator.py:83 +#: shared/common/xhtmlgenerator.py:87 msgid "Modify" msgstr "Modifiera" -#: shared/web/AuthenticationLoginPasswordWeb.py:393 +#: shared/web/AuthenticationLoginPasswordWeb.py:399 #, fuzzy msgid "The account has been removed successfully." msgstr "Lösenordet har skickats med e-post till %s!" @@ -1939,21 +1957,22 @@ msgstr "L msgid "Vote Token" msgstr "Röstpolett" -#: shared/web/AuthenticationLoginPasswordWeb.py:435 +#: shared/web/AuthenticationLoginPasswordWeb.py:441 #, fuzzy msgid "Delete user:" msgstr "Ta bort" -#: shared/common/xhtmlgenerator.py:59 +#: shared/common/xhtmlgenerator.py:63 shared/common/xhtmlgenerator.py:219 +#: talTranslations.py:12 msgid "Add" msgstr "Lägg till" -#: shared/web/ObjectsWeb.py:769 +#: shared/web/ObjectsWeb.py:775 #, fuzzy msgid "Search Results" msgstr "Resultat" -#: shared/common/kinds.py:112 +#: shared/common/kinds.py:114 #, fuzzy msgid "Public" msgstr "Öppen röstsedel" @@ -1962,8 +1981,8 @@ msgstr " msgid "Enter the text of the document." msgstr "" -#: shared/common/xhtmlgenerator.py:74 -msgid "Edit Arguments" +#: shared/common/VirtualHostsCommon.py:120 +msgid "Template" msgstr "" #: shared/common/GroupsCommon.py:65 @@ -1978,8 +1997,8 @@ msgid "Authentication" msgstr "Avstående" #: shared/common/widgets.py:204 shared/common/widgets.py:248 -#: shared/common/widgets.py:292 shared/common/widgets.py:423 -#: shared/common/widgets.py:475 shared/common/widgets.py:488 +#: shared/common/widgets.py:292 shared/common/widgets.py:433 +#: shared/common/widgets.py:485 shared/common/widgets.py:498 #: shared/web/UploadFilesWeb.py:115 shared/web/uploads.py:101 msgid "Width" msgstr "Bredd" @@ -2018,12 +2037,11 @@ msgstr "" msgid "system files" msgstr "systemfiler" -#: shared/web/geography.py:221 -#, fuzzy -msgid "East Timor" -msgstr "Senast redigerad av" +#: shared/common/ArticlesCommon.py:57 +msgid "Select the author(s) of the document." +msgstr "" -#: shared/common/kinds.py:2166 +#: shared/common/kinds.py:2227 #, fuzzy msgid "People Set" msgstr "Personer" @@ -2033,12 +2051,12 @@ msgstr "Personer" msgid "South Africa" msgstr "Kortnyhet" -#: shared/common/widgets.py:438 +#: shared/common/widgets.py:448 msgid "View In Text Area" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:309 -#: shared/web/AuthenticationLoginPasswordWeb.py:375 +#: shared/web/AuthenticationLoginPasswordWeb.py:315 +#: shared/web/AuthenticationLoginPasswordWeb.py:381 #, fuzzy msgid "The password has been modified successfully." msgstr "Lösenordet har skickats med e-post till %s!" @@ -2063,7 +2081,7 @@ msgstr "Omr msgid "Enter the name of this alias (will be used in the URL)." msgstr "" -#: shared/common/kinds.py:702 +#: shared/common/kinds.py:718 msgid "Boolean" msgstr "" @@ -2071,6 +2089,10 @@ msgstr "" msgid "Switzerland" msgstr "" +#: talTranslations.py:11 +msgid "Back to home" +msgstr "" + #: shared/web/CommentsWeb.py:90 #, fuzzy msgid "Commented Item" @@ -2080,6 +2102,11 @@ msgstr "Kommentar" msgid "Enter an eventual nickname here." msgstr "" +#: talTranslations.py:8 +#, fuzzy +msgid "User:" +msgstr "Användare:" + #: shared/web/geography.py:102 msgid "Egypt" msgstr "" @@ -2088,7 +2115,7 @@ msgstr "" msgid "Honduras" msgstr "" -#: shared/common/xhtmlgenerator.py:58 +#: shared/common/xhtmlgenerator.py:62 msgid "Abstain" msgstr "Avstå" @@ -2100,8 +2127,8 @@ msgstr "" msgid "Crypt Emails" msgstr "Kryptera e-post" -#: shared/common/xhtmlgenerator.py:81 -#: shared/web/AuthenticationLoginPasswordWeb.py:491 +#: shared/common/xhtmlgenerator.py:85 +#: shared/web/AuthenticationLoginPasswordWeb.py:496 #: shared/web/AuthenticationLdapWeb.py:205 msgid "Login" msgstr "Anknytnings-ID" @@ -2111,7 +2138,7 @@ msgstr "Anknytnings-ID" msgid "Guyana" msgstr "Tyska" -#: shared/common/kinds.py:2617 +#: shared/common/kinds.py:2680 #, fuzzy msgid "Access in Utilization Mode" msgstr "Identifikation" @@ -2138,7 +2165,7 @@ msgstr "objekt" msgid "Button" msgstr "Öppen röstsedel" -#: shared/common/kinds.py:3093 +#: shared/common/kinds.py:3170 #, fuzzy msgid "Fault" msgstr "Misslyckades" @@ -2148,18 +2175,19 @@ msgstr "Misslyckades" msgid "Other Translations" msgstr "Översättare" -#: shared/common/properties.py:62 shared/common/things.py:163 +#: shared/common/properties.py:65 shared/common/things.py:163 #: shared/web/AtomsWeb.py:60 shared/web/CommentsWeb.py:79 #: shared/web/GradesWeb.py:133 shared/web/GroupsWeb.py:94 #: shared/web/PageNamesWeb.py:65 shared/web/RubricsWeb.py:75 msgid "Name" msgstr "Namn" -#: shared/web/CardsWeb.py:190 -msgid "Definition of Card \"%s\"" +#: shared/web/geography.py:137 +msgid "Kyrgyzstan" msgstr "" #: shared/common/ArticlesCommon.py:140 shared/web/ArticlesWeb.py:461 +#: talTranslations.py:2 msgid "Articles" msgstr "Artiklar" @@ -2172,7 +2200,7 @@ msgstr "Om m msgid "Instructions" msgstr "Översättare" -#: shared/web/UploadFilesWeb.py:436 +#: shared/web/UploadFilesWeb.py:440 msgid "The last files" msgstr "De senaste filerna" @@ -2181,7 +2209,7 @@ msgstr "De senaste filerna" msgid "Difference" msgstr "Se skillnader" -#: shared/common/kinds.py:2632 +#: shared/common/kinds.py:2695 msgid "Access in Viewing Mode" msgstr "" @@ -2190,7 +2218,7 @@ msgstr "" msgid "Germany" msgstr "Tyska" -#: shared/common/VirtualHostsCommon.py:101 +#: shared/common/VirtualHostsCommon.py:116 msgid "Select the template (skin) to use for this host." msgstr "" @@ -2212,7 +2240,12 @@ msgstr "" msgid "Global Settings" msgstr "Inställningar" -#: shared/common/kinds.py:2162 shared/common/kinds.py:2168 +#: shared/web/calendaring.py:61 +#, fuzzy +msgid "April" +msgstr "Artikel" + +#: shared/common/kinds.py:2223 shared/common/kinds.py:2229 #, fuzzy msgid "Users" msgstr "Användare:" @@ -2254,7 +2287,7 @@ msgstr "" msgid "headings" msgstr "rubriker" -#: shared/common/kinds.py:3064 shared/common/kinds.py:3066 +#: shared/common/kinds.py:3141 shared/common/kinds.py:3143 msgid "Writers" msgstr "Redigerare" @@ -2276,7 +2309,7 @@ msgstr "Omr msgid "Winners Grading" msgstr "Vinnarnas placering" -#: shared/common/kinds.py:2289 shared/common/kinds.py:2293 +#: shared/common/kinds.py:2352 shared/common/kinds.py:2356 #, fuzzy msgid "Result Pins" msgstr "Resultat" @@ -2290,27 +2323,24 @@ msgstr "Se k msgid "Select the group new users will be automatically added to." msgstr "" -#: shared/web/geography.py:229 -msgid "United Kingdom" -msgstr "" +#: shared/web/geography.py:221 +#, fuzzy +msgid "East Timor" +msgstr "Senast redigerad av" #: shared/web/TranslationsWeb.py:395 msgid "Original String" msgstr "" -#: shared/web/TranslationsWeb.py:360 -msgid "Fuzzy" -msgstr "" - #: shared/web/TranslationsWeb.py:375 msgid "Similar String" msgstr "" -#: shared/web/AppointmentsWeb.py:198 shared/web/calendaring.py:58 +#: shared/web/calendaring.py:58 msgid "Saturday" msgstr "" -#: shared/common/CardsCommon.py:348 +#: shared/common/CardsCommon.py:393 msgid "cards" msgstr "" @@ -2331,7 +2361,7 @@ msgstr "" msgid "Missing value!" msgstr "Värde saknas!" -#: shared/common/kinds.py:172 +#: shared/common/kinds.py:174 #, fuzzy msgid "Field Label" msgstr "Förnamn" @@ -2366,7 +2396,7 @@ msgstr "" msgid "Ireland" msgstr "" -#: shared/common/xhtmlgenerator.py:78 +#: shared/common/xhtmlgenerator.py:82 #, fuzzy msgid "History" msgstr "Historik - %s" @@ -2380,7 +2410,7 @@ msgstr "" msgid "translation" msgstr "Översättare" -#: shared/web/AuthenticationLoginPasswordWeb.py:465 +#: shared/web/AuthenticationLoginPasswordWeb.py:470 #: shared/web/AuthenticationLdapWeb.py:181 msgid "To access this part of the site, you need to sign in." msgstr "" @@ -2390,11 +2420,11 @@ msgstr "" msgid "Are you sure you want to delete the %s \"%s\" ?" msgstr "Är du säker på att du vill ta bort posten?" -#: shared/common/kinds.py:3057 +#: shared/common/kinds.py:3134 msgid "Select the people and groups who are allowed to modify the item." msgstr "" -#: shared/common/xhtmlgenerator.py:111 +#: shared/common/xhtmlgenerator.py:115 msgid "Vote " msgstr "Rösta " @@ -2407,11 +2437,11 @@ msgstr "L msgid "Gambia" msgstr "" -#: shared/common/kinds.py:1351 shared/common/kinds.py:1359 +#: shared/common/kinds.py:1367 shared/common/kinds.py:1375 msgid "Language" msgstr "Språk" -#: shared/web/GlasnostTALGenerator.py:97 +#: shared/web/GlasnostTALGenerator.py:100 talTranslations.py:3 #, fuzzy msgid "Search" msgstr "Läsare" @@ -2420,9 +2450,9 @@ msgstr "L msgid "Blank Ballots:" msgstr "Blanka röstsedlar:" -#: shared/common/kinds.py:804 shared/common/kinds.py:1189 -#: shared/common/kinds.py:1357 shared/common/kinds.py:1969 -#: shared/common/kinds.py:3206 +#: shared/common/kinds.py:820 shared/common/kinds.py:1205 +#: shared/common/kinds.py:1373 shared/common/kinds.py:2030 +#: shared/common/kinds.py:3283 shared/common/kinds.py:3312 #, fuzzy msgid "Data" msgstr "Tillstånd" @@ -2439,7 +2469,7 @@ msgstr "" msgid "Ties" msgstr "Oavgjorda" -#: shared/common/kinds.py:982 shared/common/widgets.py:224 +#: shared/common/kinds.py:998 shared/common/widgets.py:224 #: shared/web/ArticlesWeb.py:347 #, fuzzy msgid "Date" @@ -2457,8 +2487,8 @@ msgstr "" msgid "No options for this authentication method." msgstr "" -#: shared/common/kinds.py:197 shared/common/kinds.py:215 -#: shared/common/kinds.py:233 +#: shared/common/kinds.py:199 shared/common/kinds.py:217 +#: shared/common/kinds.py:235 #, fuzzy msgid "Read/Write" msgstr "Läsare" @@ -2468,12 +2498,12 @@ msgstr "L msgid "None Label" msgstr "Nytt användarkonto" -#: shared/common/xhtmlgenerator.py:76 +#: shared/common/xhtmlgenerator.py:80 #, fuzzy msgid "Every Article" msgstr "Ny artikel" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 #, fuzzy msgid "Monday" msgstr "Kontakt" @@ -2498,21 +2528,30 @@ msgstr "" msgid "New Comment" msgstr "Kommentar" +#: shared/common/scripts.py:62 +msgid "Execute On Edit" +msgstr "" + #: shared/common/PreferencesCommon.py:78 msgid "Use Browser Settings" msgstr "Använd webbläsarinställningar" -#: shared/web/AppointmentsWeb.py:77 +#: shared/web/calendaring.py:71 +#, fuzzy +msgid "xOctober" +msgstr "Väljare" + +#: shared/web/AppointmentsWeb.py:79 #, fuzzy msgid "Categories" msgstr "Kapitel" -#: shared/web/AppointmentsWeb.py:84 +#: shared/web/AppointmentsWeb.py:86 #, fuzzy msgid "Participants" msgstr "artiklar" -#: shared/web/AppointmentsWeb.py:86 +#: shared/web/AppointmentsWeb.py:88 #, fuzzy msgid "Start" msgstr "Tillstånd" @@ -2542,11 +2581,11 @@ msgstr "" msgid "(%d words)" msgstr "" -#: shared/common/widgets.py:434 +#: shared/common/widgets.py:444 msgid "Multi-Line Text Entry Field" msgstr "" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:425 +#: shared/web/calendaring.py:68 msgid "xFebruary" msgstr "" @@ -2571,6 +2610,13 @@ msgstr "" msgid "Headings" msgstr "Rubriker" +#: shared/web/VotesWeb.py:94 shared/web/VotesWeb.py:142 +#: shared/web/VotesWeb.py:185 shared/web/VotesWeb.py:229 +#: shared/web/VotesWeb.py:428 shared/web/VotesWeb.py:472 +#: shared/web/VotesWeb.py:532 shared/web/VotesWeb.py:590 +msgid "Blank Vote" +msgstr "Blankröst" + #: shared/web/ForumsWeb.py:189 msgid "replies: %d" msgstr "" @@ -2579,7 +2625,7 @@ msgstr "" msgid "Currency" msgstr "" -#: shared/common/kinds.py:1961 +#: shared/common/kinds.py:2022 #, fuzzy msgid "Item Type" msgstr "Mime-typ" @@ -2596,10 +2642,6 @@ msgstr "Condorcet-metoden" msgid "Enter the title of the document." msgstr "" -#: shared/web/VirtualHostsWeb.py:78 -msgid "Template" -msgstr "" - #: shared/common/BrevesCommon.py:180 msgid "The election \"%s\" is closed." msgstr "Omröstningen \"%s\" är avslutad." @@ -2613,7 +2655,7 @@ msgstr "Personer" msgid "Chad" msgstr "Skapa" -#: shared/common/kinds.py:1003 shared/web/VirtualHostsWeb.py:69 +#: shared/common/kinds.py:1019 shared/common/VirtualHostsCommon.py:88 #, fuzzy msgid "Glasnost Dispatcher ID" msgstr "Ladda hem Glasnost" @@ -2622,20 +2664,19 @@ msgstr "Ladda hem Glasnost" msgid "Angola" msgstr "" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:427 -#, fuzzy -msgid "xApril" -msgstr "Artikel" +#: shared/web/PeopleWeb.py:91 +msgid "Nickname" +msgstr "Smeknamn" -#: shared/common/kinds.py:2273 shared/common/kinds.py:2275 +#: shared/common/kinds.py:2336 shared/common/kinds.py:2338 msgid "Readers" msgstr "Läsare" -#: shared/common/xhtmlgenerator.py:70 shared/web/ObjectsWeb.py:581 +#: shared/common/xhtmlgenerator.py:74 shared/web/ObjectsWeb.py:587 msgid "Delete" msgstr "Ta bort" -#: shared/common/CardsCommon.py:346 +#: shared/common/CardsCommon.py:391 msgid "card" msgstr "" @@ -2662,7 +2703,7 @@ msgstr "Aktiva omr msgid "Tunisia" msgstr "" -#: shared/common/AppointmentsCommon.py:178 +#: shared/common/AppointmentsCommon.py:173 #, fuzzy msgid "appointments" msgstr "Innehåll" @@ -2672,9 +2713,10 @@ msgstr "Inneh msgid "Every Type" msgstr "Mime-typ" -#: shared/web/geography.py:168 -msgid "Mauritius" -msgstr "" +#: shared/web/calendaring.py:68 +#, fuzzy +msgid "xMarch" +msgstr "Läsare" #: shared/web/ElectionsWeb.py:541 msgid "" @@ -2688,7 +2730,7 @@ msgstr "" msgid "Indonesia" msgstr "" -#: shared/common/xhtmlgenerator.py:96 +#: shared/common/xhtmlgenerator.py:100 msgid "Send by Email" msgstr "Skicka med e-post" @@ -2698,10 +2740,15 @@ msgstr "" #: shared/common/widgets.py:388 shared/common/widgets.py:413 #: shared/web/TranslationsWeb.py:123 shared/web/TranslationsWeb.py:133 -#: shared/web/widgets.py:391 +#: shared/web/widgets.py:400 msgid "None" msgstr "Ingen" +#: shared/common/scripts.py:87 +#, fuzzy +msgid "Source Code" +msgstr "Se källkod" + #: shared/web/geography.py:227 msgid "Ukraine" msgstr "" @@ -2728,7 +2775,7 @@ msgstr "Artikel" msgid "China" msgstr "rubrik" -#: shared/common/kinds.py:94 +#: shared/common/kinds.py:96 #, fuzzy msgid "Default Value" msgstr "Standardgrupp" @@ -2772,7 +2819,7 @@ msgstr "" msgid "Translations" msgstr "Översättare" -#: shared/common/xhtmlgenerator.py:75 +#: shared/common/xhtmlgenerator.py:79 msgid "Evaluate" msgstr "" @@ -2786,7 +2833,7 @@ msgstr "" #: shared/common/AuthenticationLoginPasswordCommon.py:57 #: shared/common/AuthenticationLdapCommon.py:56 -#: shared/web/AuthenticationLoginPasswordWeb.py:131 +#: shared/web/AuthenticationLoginPasswordWeb.py:135 msgid "Username" msgstr "Användarnamn" @@ -2794,7 +2841,7 @@ msgstr "Anv msgid "Benin" msgstr "" -#: shared/common/kinds.py:1888 +#: shared/common/kinds.py:1921 msgid "Python Identifier" msgstr "" @@ -2802,7 +2849,7 @@ msgstr "" msgid " to " msgstr "" -#: shared/common/kinds.py:295 shared/common/xhtmlgenerator.py:108 +#: shared/common/kinds.py:297 shared/common/xhtmlgenerator.py:112 #: shared/common/properties.py:55 shared/web/GroupsWeb.py:85 msgid "Type" msgstr "Typ" @@ -2821,11 +2868,11 @@ msgstr "Person" msgid "Bermuda" msgstr "Tyska" -#: shared/common/kinds.py:78 +#: shared/common/kinds.py:80 msgid "Balloon Help" msgstr "" -#: shared/common/xhtmlgenerator.py:84 +#: shared/common/xhtmlgenerator.py:88 #, fuzzy msgid "Next" msgstr "Text" @@ -2850,16 +2897,16 @@ msgstr "" msgid "Multi-Line Field" msgstr "" -#: shared/common/VirtualHostsCommon.py:205 +#: shared/common/VirtualHostsCommon.py:224 msgid "Virtual Host" msgstr "" -#: shared/web/AppointmentsWeb.py:79 +#: shared/web/AppointmentsWeb.py:81 #, fuzzy msgid "End" msgstr "Avslutad" -#: shared/common/kinds.py:191 +#: shared/common/kinds.py:193 #, fuzzy msgid "Creation Mode" msgstr "Datum vid skapande" @@ -2873,7 +2920,7 @@ msgstr "%s Inst msgid "Subject" msgstr "Ärende" -#: shared/common/kinds.py:229 shared/common/kinds.py:2619 +#: shared/common/kinds.py:231 shared/common/kinds.py:2682 msgid "Same As View Mode" msgstr "" @@ -2882,7 +2929,7 @@ msgstr "" msgid "Kenya" msgstr "Aldrig" -#: shared/common/kinds.py:1146 +#: shared/common/kinds.py:1162 #, fuzzy msgid "Function Name" msgstr "Förnamn" @@ -2899,7 +2946,7 @@ msgstr " msgid "Best Average" msgstr "Bästa medelvärde" -#: shared/common/kinds.py:3136 +#: shared/common/kinds.py:3213 #, fuzzy msgid "Kind Name" msgstr "Förnamn" @@ -2924,7 +2971,7 @@ msgid "" msgstr "" #: shared/common/BrevesCommon.py:204 shared/web/tools.py:644 -#: shared/web/BrevesWeb.py:165 +#: shared/web/BrevesWeb.py:165 talTranslations.py:6 msgid "Short News" msgstr "Kortnyheter" @@ -2933,7 +2980,7 @@ msgstr "Kortnyheter" msgid "The last strings to leave untranslated" msgstr "De senaste avslutade omröstningarna" -#: shared/common/xhtmlgenerator.py:64 +#: shared/common/xhtmlgenerator.py:68 #, fuzzy msgid "Cancel" msgstr "Franska" @@ -2956,7 +3003,7 @@ msgstr "" msgid "The election \"%s\"" msgstr "Omröstningen \"%s\"" -#: shared/web/AppointmentsWeb.py:641 +#: shared/web/AppointmentsWeb.py:633 #, fuzzy msgid "Agenda" msgstr "Läsare" @@ -2995,10 +3042,14 @@ msgstr "" msgid "Number of Results" msgstr "" -#: shared/web/widgets.py:842 +#: shared/web/widgets.py:839 msgid "URL" msgstr "URL" +#: shared/common/scripts.py:70 +msgid "Execute On Use" +msgstr "" + #: shared/web/geography.py:230 #, fuzzy msgid "United States" @@ -3012,16 +3063,20 @@ msgstr "" msgid "System Files" msgstr "Systemfiler" -#: shared/web/AuthenticationLoginPasswordWeb.py:100 +#: shared/web/AuthenticationLoginPasswordWeb.py:103 #, fuzzy msgid "Enter your new password." msgstr "Översättare" +#: shared/web/geography.py:168 +msgid "Mauritius" +msgstr "" + #: shared/web/ElectionsWeb.py:870 msgid "Your last closed elections" msgstr "Dina senaste avslutade omröstningar" -#: shared/common/kinds.py:1081 shared/web/SystemFilesWeb.py:71 +#: shared/common/kinds.py:1097 shared/web/SystemFilesWeb.py:71 msgid "Path" msgstr "Åtkomstväg" @@ -3051,16 +3106,16 @@ msgstr "" msgid "Authentication (LDAP)" msgstr "Avstående" -#: shared/common/VirtualHostsCommon.py:206 +#: shared/common/VirtualHostsCommon.py:225 msgid "virtual hosts" msgstr "" -#: shared/web/AppointmentsWeb.py:184 shared/web/calendaring.py:60 -msgid "March" -msgstr "" +#: shared/common/GroupsCommon.py:406 +msgid "group" +msgstr "grupp" -#: shared/common/kinds.py:317 shared/common/kinds.py:3238 -#: shared/common/xhtmlgenerator.py:110 shared/common/widgets.py:102 +#: shared/common/kinds.py:319 shared/common/kinds.py:3344 +#: shared/common/xhtmlgenerator.py:114 shared/common/widgets.py:102 #, fuzzy msgid "Widget" msgstr "Bredd" @@ -3095,12 +3150,12 @@ msgstr "" " Generella Öppna Licens för mer detaljer.\n" "

\n" -#: shared/web/AppointmentsWeb.py:55 +#: shared/web/AppointmentsWeb.py:57 #, fuzzy msgid "Categories Group" msgstr "Vinnargrupp" -#: shared/common/xhtmlgenerator.py:101 +#: shared/common/xhtmlgenerator.py:105 #, fuzzy msgid "Translate" msgstr "Översättare" @@ -3109,12 +3164,17 @@ msgstr " msgid "Guinea-Bissau" msgstr "" -#: shared/common/AppointmentsCommon.py:68 -#, fuzzy -msgid "Select the group that holds categories for the appointments." -msgstr "Välj en kandidat att lägga till" +#: shared/web/PeopleWeb.py:273 +msgid "" +"The account has successfully been created, but a SMTP error has occurred.\n" +"Maybe the Mail Transport Agent on the Glasnost server is badly configured." +msgstr "" -#: glasnost-web/about.py:290 shared/common/xhtmlgenerator.py:57 +#: shared/web/CardsWeb.py:203 +msgid "Definition of Card \"%s\"" +msgstr "" + +#: glasnost-web/about.py:290 shared/common/xhtmlgenerator.py:61 #, fuzzy msgid "About Glasnost" msgstr "Ladda hem Glasnost" @@ -3148,11 +3208,11 @@ msgstr "" msgid "Author" msgstr "Skapare" -#: shared/common/VirtualHostsCommon.py:204 +#: shared/common/VirtualHostsCommon.py:223 msgid "virtual host" msgstr "" -#: shared/web/AuthenticationLoginPasswordWeb.py:91 +#: shared/web/AuthenticationLoginPasswordWeb.py:94 #, fuzzy msgid "Enter your current password." msgstr "Översättare" @@ -3161,16 +3221,16 @@ msgstr " msgid "Sao Tome and Principe" msgstr "" -#: shared/common/kinds.py:2173 +#: shared/common/kinds.py:2234 msgid "Choose the author(s) for this object." msgstr "" -#: shared/common/xhtmlgenerator.py:107 +#: shared/common/xhtmlgenerator.py:111 #, fuzzy msgid "List" msgstr "Länkar" -#: shared/common/xhtmlgenerator.py:62 +#: shared/common/xhtmlgenerator.py:66 msgid "Apply" msgstr "Använd" @@ -3178,13 +3238,13 @@ msgstr "Anv msgid "Greece" msgstr "" -#: shared/common/kinds.py:3208 shared/common/UploadFilesCommon.py:135 +#: shared/common/kinds.py:3314 shared/common/UploadFilesCommon.py:135 #: shared/common/uploads.py:74 shared/web/UploadFilesWeb.py:76 #: shared/web/uploads.py:66 msgid "File" msgstr "Fil" -#: shared/common/kinds.py:961 shared/common/kinds.py:963 +#: shared/common/kinds.py:977 shared/common/kinds.py:979 #, fuzzy msgid "Date & Time" msgstr "Tid vid senast inloggning" @@ -3197,7 +3257,7 @@ msgstr "Avslutad" msgid "Enter the name of this heading." msgstr "" -#: shared/web/AppointmentsWeb.py:636 shared/web/widgets.py:488 +#: shared/web/AppointmentsWeb.py:628 shared/web/widgets.py:484 #, fuzzy msgid "Year" msgstr "Läsare" @@ -3206,14 +3266,14 @@ msgstr "L msgid "Results" msgstr "Resultat" -#: shared/common/xhtmlgenerator.py:86 -#: shared/web/AuthenticationLoginPasswordWeb.py:405 -#: shared/web/AuthenticationLoginPasswordWeb.py:589 +#: shared/common/xhtmlgenerator.py:90 +#: shared/web/AuthenticationLoginPasswordWeb.py:411 +#: shared/web/AuthenticationLoginPasswordWeb.py:584 #: shared/web/PeopleWeb.py:159 msgid "New Account" msgstr "Nytt användarkonto" -#: shared/common/xhtmlgenerator.py:97 +#: shared/common/xhtmlgenerator.py:101 msgid "Send Password by Email" msgstr "Skicka lösenord med e-post" @@ -3256,11 +3316,11 @@ msgstr "" msgid "Japan" msgstr "" -#: shared/common/kinds.py:644 shared/common/PageNamesCommon.py:99 +#: shared/common/kinds.py:660 shared/common/PageNamesCommon.py:99 msgid "Alias" msgstr "" -#: shared/common/kinds.py:2589 +#: shared/common/kinds.py:2652 #, fuzzy msgid "Access in Creation Mode" msgstr "Datum vid skapande" @@ -3269,11 +3329,11 @@ msgstr "Datum vid skapande" msgid "Choose the persons or groups who will vote for this election." msgstr "" -#: shared/common/VirtualHostsCommon.py:88 +#: shared/common/VirtualHostsCommon.py:96 msgid "Enter the host name." msgstr "" -#: shared/common/CardsCommon.py:349 +#: shared/common/CardsCommon.py:394 #, fuzzy msgid "Cards" msgstr "Kapitel" @@ -3304,6 +3364,10 @@ msgstr "" msgid "Botswana" msgstr "" +#: shared/web/ForumsWeb.py:195 +msgid "Replies List" +msgstr "" + #: shared/common/AtomsCommon.py:78 msgid "Atom" msgstr "Atom" @@ -3320,12 +3384,12 @@ msgstr "" msgid "The last short news" msgstr "De senaste kortnyheterna" -#: shared/common/widgets.py:395 shared/common/widgets.py:417 +#: shared/common/widgets.py:395 shared/common/widgets.py:421 #, fuzzy msgid "Option Menu" msgstr "Organisation" -#: shared/web/AuthenticationLoginPasswordWeb.py:266 +#: shared/web/AuthenticationLoginPasswordWeb.py:270 #, fuzzy msgid "Changing Password" msgstr "Ändra lösenord" @@ -3338,11 +3402,10 @@ msgstr "" msgid "Format" msgstr "Format" -#: shared/web/PeopleWeb.py:273 -msgid "" -"The account has successfully been created, but a SMTP error has occurred.\n" -"Maybe the Mail Transport Agent on the Glasnost server is badly configured." -msgstr "" +#: shared/common/scripts.py:83 +#, fuzzy +msgid "TextArea" +msgstr "Text" #: shared/common/UploadFilesCommon.py:64 #, fuzzy @@ -3363,7 +3426,7 @@ msgstr "Ny Person" msgid "Suriname" msgstr "Smeknamn" -#: shared/web/VirtualHostsWeb.py:59 +#: shared/common/VirtualHostsCommon.py:56 #, fuzzy msgid "Default Virtual Host" msgstr "Röst - %s" @@ -3377,7 +3440,7 @@ msgstr "Tilltr msgid "Kind of Ballot" msgstr "Typ av röstsedel" -#: shared/common/kinds.py:2078 +#: shared/common/kinds.py:2139 #, fuzzy msgid "Select accepted types of items." msgstr "Välj en kandidat att lägga till" @@ -3403,7 +3466,7 @@ msgstr "Den angivna s msgid "Palau" msgstr "Misslyckades" -#: shared/common/xhtmlgenerator.py:99 +#: shared/common/xhtmlgenerator.py:103 msgid "Spell Check" msgstr "" @@ -3411,7 +3474,7 @@ msgstr "" msgid "ReStructured Text" msgstr "" -#: shared/common/widgets.py:492 +#: shared/common/widgets.py:502 msgid "Combo Box" msgstr "" @@ -3433,8 +3496,8 @@ msgstr "" "\n" "%s\n" -#: shared/common/kinds.py:700 shared/common/kinds.py:1127 -#: shared/common/kinds.py:1300 +#: shared/common/kinds.py:716 shared/common/kinds.py:1143 +#: shared/common/kinds.py:1316 #, fuzzy msgid "Numbers" msgstr "Icke-medlem" @@ -3447,11 +3510,15 @@ msgstr "Systemfil" msgid "Holy See (Vatican City State)" msgstr "" -#: shared/web/AppointmentsWeb.py:193 shared/web/widgets.py:428 +#: shared/web/calendaring.py:69 msgid "xMay" msgstr "" -#: shared/common/widgets.py:431 shared/web/UploadFilesWeb.py:94 +#: shared/common/kinds.py:3285 +msgid "Script" +msgstr "" + +#: shared/common/widgets.py:441 shared/web/UploadFilesWeb.py:94 #: shared/web/uploads.py:84 msgid "Height" msgstr "Höjd" @@ -3460,10 +3527,10 @@ msgstr "H msgid "Lebanon" msgstr "" -#: shared/common/kinds.py:264 shared/common/kinds.py:1039 -#: shared/common/kinds.py:1113 shared/common/kinds.py:1870 -#: shared/common/kinds.py:2535 shared/common/kinds.py:2537 -#: shared/web/AppointmentsWeb.py:65 shared/web/BrevesWeb.py:63 +#: shared/common/kinds.py:266 shared/common/kinds.py:1055 +#: shared/common/kinds.py:1129 shared/common/kinds.py:1898 +#: shared/common/kinds.py:2598 shared/common/kinds.py:2600 +#: shared/web/AppointmentsWeb.py:67 shared/web/BrevesWeb.py:63 #: shared/web/CommentsWeb.py:68 shared/web/ArticlesWeb.py:67 #: shared/web/ArticlesWeb.py:83 msgid "Text" @@ -3473,7 +3540,7 @@ msgstr "Text" msgid "German" msgstr "Tyska" -#: shared/web/widgets.py:548 +#: shared/web/widgets.py:545 #, fuzzy msgid "hour" msgstr "Skapare" @@ -3482,26 +3549,31 @@ msgstr "Skapare" msgid "Korea, Republic of" msgstr "" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:435 +#: shared/web/calendaring.py:71 #, fuzzy msgid "xDecember" msgstr "Medlem" -#: shared/web/geography.py:184 -msgid "Panama" +#: shared/web/calendaring.py:60 +msgid "March" msgstr "" -#: shared/common/kinds.py:262 +#: shared/common/kinds.py:264 #, fuzzy msgid "Text Format" msgstr "Format" -#: shared/common/kinds.py:1291 +#: shared/common/kinds.py:1307 #, fuzzy msgid "Maximum Value" msgstr "Standardgrupp" -#: shared/common/kinds.py:695 shared/common/kinds.py:799 +#: shared/web/ElectionsWeb.py:135 +#, fuzzy +msgid "Approval" +msgstr "Använd" + +#: shared/common/kinds.py:711 shared/common/kinds.py:815 #, fuzzy msgid "Sort Labels" msgstr "atomer" @@ -3535,7 +3607,7 @@ msgstr "Person" msgid "Sudan" msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 +#: shared/web/calendaring.py:57 msgid "Wednesday" msgstr "" @@ -3551,13 +3623,13 @@ msgstr "" msgid "Denmark" msgstr "" -#: shared/common/kinds.py:2592 shared/common/kinds.py:2606 -#: shared/common/kinds.py:2620 shared/common/kinds.py:2634 +#: shared/common/kinds.py:2655 shared/common/kinds.py:2669 +#: shared/common/kinds.py:2683 shared/common/kinds.py:2697 #, fuzzy msgid "Embedded" msgstr "Avslutad" -#: shared/web/widgets.py:547 +#: shared/web/widgets.py:544 msgid "day" msgstr "" @@ -3568,19 +3640,19 @@ msgid "" "the results to be displayed)" msgstr "" -#: shared/common/kinds.py:178 +#: shared/common/kinds.py:180 msgid "Label (plural form)" msgstr "" -#: shared/web/AppointmentsWeb.py:187 shared/web/calendaring.py:63 +#: shared/web/calendaring.py:63 msgid "October" msgstr "" -#: shared/common/kinds.py:268 shared/web/ArticlesWeb.py:82 +#: shared/common/kinds.py:270 shared/web/ArticlesWeb.py:82 msgid "SPIP" msgstr "SPIP" -#: shared/common/kinds.py:2266 +#: shared/common/kinds.py:2329 msgid "Select the people and groups who are allowed to read the item." msgstr "" @@ -3588,6 +3660,10 @@ msgstr "" msgid "Main Heading" msgstr "Huvudrubrik" +#: shared/common/scripts.py:58 +msgid "Execute On Create" +msgstr "" + #: glasnost-web/sessions.py:101 shared/web/ElectionsWeb.py:85 msgid "End Time" msgstr "Avslutningsdatum" @@ -3601,11 +3677,11 @@ msgstr "Objekt" msgid "Being Written" msgstr "Under Redigering" -#: shared/web/AppointmentsWeb.py:185 shared/web/calendaring.py:61 +#: shared/web/calendaring.py:61 msgid "June" msgstr "" -#: shared/common/xhtmlgenerator.py:71 +#: shared/common/xhtmlgenerator.py:75 #, fuzzy msgid "Differences" msgstr "Se skillnader" @@ -3618,15 +3694,15 @@ msgstr "Kortnyhet" msgid "GNU GENERAL PUBLIC LICENSE" msgstr "" -#: shared/common/kinds.py:1129 +#: shared/common/kinds.py:1145 msgid "Float Number" msgstr "" -#: shared/web/AppointmentsWeb.py:186 shared/web/calendaring.py:62 +#: shared/web/calendaring.py:62 msgid "August" msgstr "" -#: shared/common/widgets.py:427 +#: shared/common/widgets.py:437 #, fuzzy msgid "Show Preview" msgstr "De borttagna artiklarna" @@ -3643,7 +3719,7 @@ msgstr "" msgid "forums" msgstr "" -#: shared/common/kinds.py:1952 +#: shared/common/kinds.py:2013 msgid "Minimum Number of Items to Edit" msgstr "" @@ -3656,7 +3732,7 @@ msgstr "Avslutad" msgid "Spellcheck Entries" msgstr "" -#: shared/common/xhtmlgenerator.py:61 +#: shared/common/xhtmlgenerator.py:65 msgid "Add Candidate" msgstr "Lägg till en kandidat" @@ -3665,14 +3741,22 @@ msgstr "L msgid "Australia" msgstr "Avstå" -#: shared/common/xhtmlgenerator.py:82 +#: shared/common/xhtmlgenerator.py:86 talTranslations.py:13 msgid "Exit" msgstr "Logga ut" -#: shared/web/AuthenticationLoginPasswordWeb.py:109 +#: shared/web/AuthenticationLoginPasswordWeb.py:112 msgid "Re-enter your new password." msgstr "" +#: shared/web/ElectionsWeb.py:113 +msgid "State" +msgstr "Tillstånd" + +#: shared/web/geography.py:229 +msgid "United Kingdom" +msgstr "" + #: shared/common/widgets.py:208 msgid "Single-Line Text Entry Field" msgstr "" @@ -3689,7 +3773,7 @@ msgstr "De senaste systemfilerna" msgid "Kuwait" msgstr "" -#: shared/common/xhtmlgenerator.py:109 +#: shared/common/xhtmlgenerator.py:113 #, fuzzy msgid "Utilization" msgstr "Identifikation" @@ -3707,7 +3791,7 @@ msgstr "Kapitel" msgid "Counting of the Votes" msgstr "Rösträkning" -#: shared/common/xhtmlgenerator.py:63 +#: shared/common/xhtmlgenerator.py:67 msgid "Back" msgstr "" @@ -3716,11 +3800,11 @@ msgstr "" msgid "Sessions History" msgstr "Se historik" -#: glasnost-web/index.py:180 +#: glasnost-web/index.py:180 talTranslations.py:17 msgid "Home" msgstr "Hem" -#: shared/common/CardsCommon.py:344 +#: shared/common/CardsCommon.py:389 #, fuzzy msgid "New Card" msgstr "Ny omröstning" @@ -3738,7 +3822,7 @@ msgid "Dutch" msgstr "" #: shared/web/AuthenticationWeb.py:155 -#: shared/web/AuthenticationLoginPasswordWeb.py:206 +#: shared/web/AuthenticationLoginPasswordWeb.py:210 #: shared/web/AuthenticationLibertyAllianceWeb.py:126 #: shared/web/AuthenticationLdapWeb.py:129 #, fuzzy @@ -3759,16 +3843,13 @@ msgstr "" msgid "Enter your email address." msgstr "" -#: shared/web/AppointmentsWeb.py:197 shared/web/calendaring.py:57 -msgid "Tuesday" +#: shared/proxy/ObjectsProxy.py:1222 shared/proxy/ObjectsProxy.py:1279 +msgid " (at <%s>)" msgstr "" -#: shared/web/VotesWeb.py:94 shared/web/VotesWeb.py:142 -#: shared/web/VotesWeb.py:185 shared/web/VotesWeb.py:229 -#: shared/web/VotesWeb.py:428 shared/web/VotesWeb.py:472 -#: shared/web/VotesWeb.py:532 shared/web/VotesWeb.py:590 -msgid "Blank Vote" -msgstr "Blankröst" +#: shared/web/PeopleWeb.py:80 +msgid "Last Name" +msgstr "Efternamn" #: shared/common/widgets.py:350 #, fuzzy @@ -3779,12 +3860,12 @@ msgstr "Standardgrupp" msgid "forum" msgstr "" -#: shared/common/xhtmlgenerator.py:65 -#: shared/web/AuthenticationLoginPasswordWeb.py:409 +#: shared/common/xhtmlgenerator.py:69 +#: shared/web/AuthenticationLoginPasswordWeb.py:415 msgid "Change Password" msgstr "Ändra lösenord" -#: shared/common/kinds.py:1028 +#: shared/common/kinds.py:1044 #, fuzzy msgid "Duration" msgstr "Öppen röstsedel" @@ -3818,14 +3899,15 @@ msgstr "Dina senaste kortnyheter" msgid "objects" msgstr "objekt" -#: shared/common/kinds.py:1097 +#: shared/common/kinds.py:1113 #, fuzzy msgid "File Path" msgstr "Åtkomstväg" -#: shared/common/AtomsCommon.py:79 -msgid "atoms" -msgstr "atomer" +#: shared/web/AuthenticationLoginPasswordWeb.py:85 +#, fuzzy +msgid "Enter the username you use on this site." +msgstr "De senaste artiklarna" #: shared/web/geography.py:81 msgid "Central African Republic" @@ -3836,7 +3918,7 @@ msgstr "" msgid "Finland" msgstr "Sök" -#: shared/common/kinds.py:2830 shared/web/GroupsWeb.py:137 +#: shared/common/kinds.py:2902 shared/web/GroupsWeb.py:137 msgid "Items" msgstr "Poster" @@ -3862,7 +3944,7 @@ msgstr "" msgid "person" msgstr "person" -#: shared/common/kinds.py:681 +#: shared/common/kinds.py:697 msgid "True" msgstr "" @@ -3872,26 +3954,26 @@ msgstr "" msgid "Translation" msgstr "Översättare" -#: shared/common/kinds.py:2433 +#: shared/common/kinds.py:2496 #, fuzzy msgid "Glasnost Server ID" msgstr "Ladda hem Glasnost" -#: shared/common/kinds.py:2952 shared/common/kinds.py:2954 +#: shared/common/kinds.py:3029 shared/common/kinds.py:3031 msgid "Modification Time" msgstr "Modifieringsdatum" -#: shared/common/kinds.py:1373 shared/common/kinds.py:2593 -#: shared/common/kinds.py:2607 shared/common/kinds.py:2621 -#: shared/common/kinds.py:2635 +#: shared/common/kinds.py:1389 shared/common/kinds.py:2656 +#: shared/common/kinds.py:2670 shared/common/kinds.py:2684 +#: shared/common/kinds.py:2698 msgid "Link" msgstr "Länk" -#: shared/common/kinds.py:266 shared/web/ArticlesWeb.py:81 +#: shared/common/kinds.py:268 shared/web/ArticlesWeb.py:81 msgid "HTML" msgstr "" -#: shared/common/kinds.py:2604 +#: shared/common/kinds.py:2667 #, fuzzy msgid "Access in Edition Mode" msgstr "Editeringstid" @@ -3908,12 +3990,12 @@ msgstr "" msgid "Korea, Democratic People's Republic of" msgstr "" -#: shared/common/xhtmlgenerator.py:66 +#: shared/common/xhtmlgenerator.py:70 #, fuzzy msgid "Change Translation" msgstr "Översättare" -#: shared/common/kinds.py:1115 +#: shared/common/kinds.py:1131 #, fuzzy msgid "OpenPGP Fingerprint" msgstr "GnuPG fingeravtryck" @@ -3928,12 +4010,12 @@ msgstr "De avslutade omr msgid "preferences" msgstr "inställningar" -#: shared/common/xhtmlgenerator.py:88 +#: shared/common/xhtmlgenerator.py:92 #, fuzzy msgid "Pester Absentionnists" msgstr "Avstående:" -#: shared/web/widgets.py:1639 +#: shared/web/widgets.py:1641 #, fuzzy msgid "other:" msgstr "Väljare :" @@ -3950,7 +4032,7 @@ msgstr "" msgid "Voter Token" msgstr "Väljarpolett" -#: shared/web/widgets.py:1533 +#: shared/web/widgets.py:1535 msgid "download" msgstr "" @@ -3958,21 +4040,21 @@ msgstr "" msgid "Slovakia" msgstr "" -#: glasnost-web/about.py:59 shared/common/xhtmlgenerator.py:105 +#: glasnost-web/about.py:59 shared/common/xhtmlgenerator.py:109 #, fuzzy msgid "Version" msgstr "Version:" -#: shared/web/ElectionsWeb.py:113 -msgid "State" -msgstr "Tillstånd" +#: shared/web/widgets.py:547 +msgid "second" +msgstr "" -#: shared/common/kinds.py:310 +#: shared/common/kinds.py:312 #, fuzzy msgid "In External File" msgstr "Fil" -#: shared/web/widgets.py:1640 +#: shared/web/widgets.py:1642 msgid "Label" msgstr "" @@ -3980,7 +4062,7 @@ msgstr "" msgid "DocBook - %s" msgstr "DocBook - %s" -#: shared/web/AppointmentsWeb.py:192 shared/web/widgets.py:424 +#: shared/web/calendaring.py:68 msgid "xJanuary" msgstr "" @@ -3992,11 +4074,12 @@ msgstr "" msgid "heading" msgstr "rubrik" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:431 +#: shared/web/calendaring.py:70 msgid "xAugust" msgstr "" -#: shared/web/GlasnostTALGenerator.py:99 +#: shared/common/xhtmlgenerator.py:191 shared/web/GlasnostTALGenerator.py:102 +#: talTranslations.py:14 msgid "Go" msgstr "" @@ -4004,11 +4087,10 @@ msgstr "" msgid "LDAP" msgstr "" -#: shared/common/kinds.py:806 shared/web/GradesWeb.py:125 -#: shared/web/VotesWeb.py:421 shared/web/VotesWeb.py:465 -#: shared/web/VotesWeb.py:525 shared/web/VotesWeb.py:583 -msgid "Choice" -msgstr "Val" +#: shared/common/GroupsCommon.py:279 +#, fuzzy +msgid "Select the items to intersect." +msgstr "Välj en kandidat att lägga till" #: shared/common/RubricsCommon.py:69 msgid "Select the front article of this heading." @@ -4018,30 +4100,34 @@ msgstr "" msgid "Enter your name (if you want)." msgstr "" -#: shared/common/kinds.py:685 shared/common/kinds.py:787 +#: shared/common/kinds.py:701 shared/common/kinds.py:803 #, fuzzy msgid "Labels" msgstr "atomer" -#: shared/common/kinds.py:285 +#: shared/common/kinds.py:287 msgid "Maximum Number of Characters" msgstr "" -#: shared/common/kinds.py:680 +#: shared/common/kinds.py:696 #, fuzzy msgid "False" msgstr "Misslyckades" -#: shared/web/widgets.py:549 +#: shared/common/kinds.py:1916 +msgid "Invalid values" +msgstr "" + +#: shared/web/widgets.py:546 #, fuzzy msgid "minute" msgstr "Icke-medlem" -#: shared/web/AppointmentsWeb.py:633 +#: shared/web/AppointmentsWeb.py:625 msgid "Week" msgstr "" -#: shared/common/kinds.py:171 +#: shared/common/kinds.py:173 msgid "Enter a user-friendly field name" msgstr "" @@ -4054,7 +4140,7 @@ msgstr "" msgid "Description" msgstr "omröstning" -#: shared/common/kinds.py:653 +#: shared/common/kinds.py:669 #, fuzzy msgid "Amount" msgstr "Om" @@ -4064,12 +4150,12 @@ msgstr "Om" msgid "Authentication (Login/Password)" msgstr "Ändra inställningar - %s" -#: shared/web/AppointmentsWeb.py:195 shared/web/widgets.py:433 +#: shared/common/properties.py:53 #, fuzzy -msgid "xOctober" -msgstr "Väljare" +msgid "Select a field type" +msgstr "Välj en kandidat att lägga till" -#: shared/common/kinds.py:1191 +#: shared/common/kinds.py:1207 #, fuzzy msgid "Glasnost Object" msgstr "Objekt" @@ -4087,12 +4173,12 @@ msgstr "" msgid "Cards Models" msgstr "" -#: shared/common/AppointmentsCommon.py:176 +#: shared/common/AppointmentsCommon.py:171 #, fuzzy msgid "appointment" msgstr "Innehåll" -#: shared/common/AppointmentsCommon.py:175 +#: shared/common/AppointmentsCommon.py:170 #, fuzzy msgid "New Appointment" msgstr "Innehåll" @@ -4102,7 +4188,7 @@ msgstr "Inneh msgid "Choose the candidates for this election." msgstr "De avslutade omröstningarnas röster" -#: shared/web/AppointmentsWeb.py:631 shared/web/widgets.py:517 +#: shared/web/AppointmentsWeb.py:623 shared/web/widgets.py:514 msgid "Day" msgstr "" @@ -4114,19 +4200,25 @@ msgstr "" msgid "Russian Federation" msgstr "" -#: shared/common/kinds.py:2183 shared/common/kinds.py:2185 -msgid "Authors" -msgstr "Författare" +#: shared/web/AuthenticationLoginPasswordWeb.py:86 +#, fuzzy +msgid "Enter your password." +msgstr "Översättare" -#: shared/common/kinds.py:265 shared/web/ArticlesWeb.py:80 +#: shared/common/kinds.py:267 shared/web/ArticlesWeb.py:80 msgid "DocBook" msgstr "DocBook" +#: shared/web/calendaring.py:69 +#, fuzzy +msgid "xApril" +msgstr "Artikel" + #: shared/common/ObjectsCommon.py:206 msgid "Object" msgstr "Objekt" -#: shared/common/kinds.py:3106 +#: shared/common/kinds.py:3183 msgid "Input Connector" msgstr "" @@ -4153,7 +4245,7 @@ msgstr "Nytt anv msgid "votes" msgstr "röster" -#: shared/common/kinds.py:1331 +#: shared/common/kinds.py:1347 #, fuzzy msgid "Integer Choice" msgstr "Väljarnas val" @@ -4195,7 +4287,7 @@ msgstr " msgid "Swaziland" msgstr "" -#: shared/common/kinds.py:227 +#: shared/common/kinds.py:229 #, fuzzy msgid "Utilization Mode" msgstr "Identifikation" @@ -4205,9 +4297,11 @@ msgstr "Identifikation" msgid "File Name" msgstr "Förnamn" -#: shared/web/widgets.py:550 -msgid "second" -msgstr "" +#: shared/common/kinds.py:3200 shared/common/instructions.py:316 +#: shared/common/values.py:53 +#, fuzzy +msgid "Kind" +msgstr "Sök" #: shared/common/widgets.py:297 #, fuzzy @@ -4232,24 +4326,24 @@ msgstr "Misslyckades" msgid "Unknown" msgstr "Okänd" -#: shared/web/AppointmentsWeb.py:88 shared/web/ElectionsWeb.py:128 -#: shared/web/BrevesWeb.py:73 shared/web/CommentsWeb.py:85 -#: shared/web/ForumsWeb.py:71 shared/web/widgets.py:836 -#: shared/web/ArticlesWeb.py:92 shared/web/SystemFilesWeb.py:82 -#: shared/web/UploadFilesWeb.py:106 shared/web/VirtualHostsWeb.py:81 +#: shared/common/VirtualHostsCommon.py:126 shared/web/AppointmentsWeb.py:90 +#: shared/web/ElectionsWeb.py:128 shared/web/BrevesWeb.py:73 +#: shared/web/CommentsWeb.py:85 shared/web/ForumsWeb.py:71 +#: shared/web/widgets.py:833 shared/web/ArticlesWeb.py:92 +#: shared/web/SystemFilesWeb.py:82 shared/web/UploadFilesWeb.py:106 msgid "Title" msgstr "Titel" -#: shared/common/ArticlesCommon.py:57 -msgid "Select the author(s) of the document." -msgstr "" +#: shared/common/kinds.py:2244 shared/common/kinds.py:2246 +msgid "Authors" +msgstr "Författare" #: shared/common/things.py:149 #, fuzzy msgid "Internal Name" msgstr "Fil" -#: shared/web/AppointmentsWeb.py:194 shared/web/widgets.py:430 +#: shared/web/calendaring.py:70 msgid "xJuly" msgstr "" @@ -4477,10 +4571,6 @@ msgstr "Kandidate" #~ msgid "Holidays" #~ msgstr "Misslyckades" -#, fuzzy -#~ msgid "Organization" -#~ msgstr "Översättare" - #, fuzzy #~ msgid "Organizations" #~ msgstr "Översättare" @@ -4691,10 +4781,6 @@ msgstr "Kandidate" #~ msgid "The new password has been sent by email to %s!" #~ msgstr "Lösenordet har skickats med e-post till %s!" -#, fuzzy -#~ msgid "Enter the username you use on this site." -#~ msgstr "De senaste artiklarna" - #~ msgid "Non Members" #~ msgstr "Icke-medlemmar" @@ -4746,10 +4832,6 @@ msgstr "Kandidate" #~ msgid "type" #~ msgstr "Typ" -#, fuzzy -#~ msgid "Calendar" -#~ msgstr "Kandidate" - #, fuzzy #~ msgid "Abstract" #~ msgstr "Avstå" diff --git a/servers/AppointmentsServer/AppointmentsServer.py b/servers/AppointmentsServer/AppointmentsServer.py index 716ff2f2..b87d7eb2 100755 --- a/servers/AppointmentsServer/AppointmentsServer.py +++ b/servers/AppointmentsServer/AppointmentsServer.py @@ -174,6 +174,9 @@ class AppointmentsServer(AppointmentsCommonMixin, ObjectsServer): def addObjectXmlRpc(self, objectImport): objectId = ObjectsServer.addObjectXmlRpc(self, objectImport) + return objectId + + # TODO: proper notification email virtualServerId = context.getVar('applicationId') virtualServer = self.getVirtualServer(virtualServerId) object = virtualServer.loadObjectCore(objectId) diff --git a/servers/AppointmentsServer/vcalsax.py b/servers/AppointmentsServer/vcalsax.py index bad386f8..7dc9daf4 100644 --- a/servers/AppointmentsServer/vcalsax.py +++ b/servers/AppointmentsServer/vcalsax.py @@ -74,7 +74,9 @@ class VcfParser(saxlib.XMLReader) : if m : vobjname = m.group(1) if self._handle_namespaces: - self._cont_handler.startElementNS((EMPTY_NAMESPACE,vobjname),vobjname,AttributesNSImpl({},{})) + self._cont_handler.startElementNS( + (EMPTY_NAMESPACE, vobjname), + vobjname, AttributesNSImpl({}, {})) else: self._cont_handler.startElement(vobjname,AttributesImpl({})) @@ -83,7 +85,8 @@ class VcfParser(saxlib.XMLReader) : if m : vobjname = m.group(1) if self._handle_namespaces: - self._cont_handler.endElementNS((EMPTY_NAMESPACE,vobjname),vobjname) + self._cont_handler.endElementNS( + (EMPTY_NAMESPACE, vobjname), vobjname) else: self._cont_handler.endElement(vobjname) else : @@ -113,13 +116,15 @@ class VcfParser(saxlib.XMLReader) : attrs[(EMPTY_NAMESPACE,'x-name')] = propname propname = 'extension' - propvalue = unicode(to_xml_string(propvalue,'iso-8859-1'),'UTF-8') - # <=> to the above line, but doesn't work with python - # versions <2.0 - #propvalue = unicode(propvalue,'iso-8859-1') - self._cont_handler.startElementNS((EMPTY_NAMESPACE,propname),propname,AttributesNSImpl(attrs,qnames)) + propvalue = unicode(propvalue, 'iso-8859-1') + + self._cont_handler.startElementNS( + (EMPTY_NAMESPACE, propname), + propname, AttributesNSImpl(attrs, qnames)) self._cont_handler.characters(propvalue) - self._cont_handler.endElementNS((EMPTY_NAMESPACE,propname),propname) + self._cont_handler.endElementNS( + (EMPTY_NAMESPACE, propname), + propname) data = nextLine file.close() @@ -128,20 +133,23 @@ class VcfParser(saxlib.XMLReader) : return self._handle_namespaces elif name == saxlib.feature_namespace_prefixes: return 0 - raise saxlib.SAXNotRecognizedException("Feature '%s' not recognized" % name) + raise saxlib.SAXNotRecognizedException( + "Feature '%s' not recognized" % name) def setFeature(self, name, value): if name == saxlib.feature_namespaces: self._handle_namespaces = value else: - raise saxlib.SAXNotRecognizedException("Feature '%s' not recognized" % name) + raise saxlib.SAXNotRecognizedException( + "Feature '%s' not recognized" % name) def getProperty(self, name): if name == saxlib.property_lexical_handler: return self._lex_handler elif name == saxlib.property_declaration_handler: return self._decl_handler - raise saxlib.SAXNotRecognizedException("Property '%s' not recognized" % name) + raise saxlib.SAXNotRecognizedException( + "Property '%s' not recognized" % name) def setProperty(self, name, value): if name == saxlib.property_lexical_handler: @@ -149,73 +157,6 @@ class VcfParser(saxlib.XMLReader) : elif name == saxlib.property_declaration_handler: self._decl_handler = value else: - raise saxlib.SAXNotRecognizedException("Property '%s' not recognized" % name) + raise saxlib.SAXNotRecognizedException( + "Property '%s' not recognized" % name) -xslt = ''' - - - - - -BEGIN:VCALENDAR -END:VCALENDAR - - -BEGIN:VEVENT -END:VEVENT - - -BEGIN:VTODO -END:VTODO - - - - - - - - - - - -: - - - -;= - -''' - - -#--------------------------------------------------------------------- - -# VCalendar file to DOM -def load_vcal_to_dom(uri) : - parser=VcfParser() - reader = Sax2.Reader(0, 0, None, Sax2.XmlDomGenerator, parser) - return reader.fromUri(uri) - -# DOM to VCalendar file -def write_dom_to_vcal(doc, uri): - new_api = 0 - try: - from Ft.Xml.Xslt.Processor import Processor - try: - from Ft.Xml.InputSource import InputSourceFactory,InputSource - except: - new_api = 1 - except: - from xml.xslt.Processor import Processor - processor = Processor() - if not new_api: - processor.appendStylesheetString(xslt) - result = processor.runNode(doc,1,{},None) - else: - self.inputsourcefactory = InputSourceFactory() - self.processor.appendStylesheet(self.inputsourcefactory.fromString( - xslt, 'dummy')) - dom = self.processor.execute(doc,InputSource(None,"dummy"), 1, {}, - None) - file = open(uri, 'w') - file.write(result) - file.close() diff --git a/servers/AuthenticationLoginPasswordServer/AuthenticationLoginPasswordServer.py b/servers/AuthenticationLoginPasswordServer/AuthenticationLoginPasswordServer.py index bcd00d93..906f2544 100755 --- a/servers/AuthenticationLoginPasswordServer/AuthenticationLoginPasswordServer.py +++ b/servers/AuthenticationLoginPasswordServer/AuthenticationLoginPasswordServer.py @@ -163,7 +163,7 @@ class AuthenticationLoginPasswordVirtualServer(AdministrableVirtualServer): del self.authentications self.markCoreAsDirty() return - raise faults.WrongLogin(partialAccount[0]) + raise faults.WrongLogin(authenticationObject.login) def emailAdminsForNewUser(self, object, authenticationObject): virtualServerId = context.getVar('applicationId') @@ -209,12 +209,14 @@ For more information about this user, please see: def emailPasswordToUser(self, object, authenticationObject): emailAddress = getEmailForObject(object) if not emailAddress: + print 'Not sending because no email address' return if not self.getServer().getAdminCore().stockPasswordsInClearText: # TODO: mail user explaining we can generate a new password for # him and provide him with an url with a token (so that others # can't force password changes) + print 'Not sending because passwords are not in plain text' return toAddress = [emailAddress] @@ -290,14 +292,20 @@ The Glasnost administrator - %(fromAddress)s result.append((userId, cleanedAuthObject.exportToXmlRpc())) return result - def getAccountUserId(self, authenticationObject): - if not self.getServer().isAdmin(): - raise faults.UserAccessDenied() + def getAccountUserIdPrivate(self, authenticationObject): if self.authentications is not None: for userId, authObject in self.authentications.items(): if authObject.login == authenticationObject.login: return userId - raise faults.WrongLogin(authenticationObject.login) + return '' + + def getAccountUserId(self, authenticationObject): + if not self.getServer().isAdmin(): + raise faults.UserAccessDenied() + userId = self.getAccountUserIdPrivate(authenticationObject) + if not userId: + raise faults.WrongLogin(authenticationObject.login) + return userId def getAdminEmailAddresses(self, stopAsap = 0): virtualServerId = context.getVar('applicationId') @@ -370,7 +378,7 @@ class AuthenticationLoginPasswordServer( authenticationObject = commonTools.importThing(authenticationDict) virtualServerId = context.getVar('applicationId') virtualServer = self.getVirtualServer(virtualServerId) - userId = virtualServer.getAccountUserId(authenticationObject) + userId = virtualServer.getAccountUserIdPrivate(authenticationObject) userObject = getObject(userId) virtualServer.emailPasswordToUser(userObject, authenticationObject) diff --git a/servers/Dispatcher/Dispatcher.py b/servers/Dispatcher/Dispatcher.py index 66156620..6e4bb1d1 100755 --- a/servers/Dispatcher/Dispatcher.py +++ b/servers/Dispatcher/Dispatcher.py @@ -395,3 +395,4 @@ dispatcher = Dispatcher() if __name__ == "__main__": dispatcher.launch(applicationName, applicationRole) + diff --git a/servers/VirtualHostsServer/VirtualHostsServer.py b/servers/VirtualHostsServer/VirtualHostsServer.py index 24a0fb17..7581b0b0 100755 --- a/servers/VirtualHostsServer/VirtualHostsServer.py +++ b/servers/VirtualHostsServer/VirtualHostsServer.py @@ -115,8 +115,7 @@ class VirtualHost(ObjectServerMixin, VirtualHostCommon): def modify(self, changes, givenSlotNames = None): objectsByHostName = self.getServer().virtualServer.objectsByHostName hostName = self.hostName - ObjectServerMixin.modify( - self, changes, givenSlotNames = givenSlotNames) + ObjectServerMixin.modify(self, changes, givenSlotNames = givenSlotNames) if self.hostName != hostName: if hostName is not None: del objectsByHostName[hostName] @@ -229,13 +228,6 @@ class VirtualHostsServer(VirtualHostsCommonMixin, ObjectsServer): def exportVirtualServer(self, virtualServerId, exportDirectoryPath): return None - def getDefaultVirtualHost(self): - virtualServerId = context.getVar('applicationId') - virtualServer = self.getVirtualServer(virtualServerId) - if not virtualServer.admin.defaultVirtualHostId: - raise faults.MissingItem('default virtual host') - return self.getObjectXmlRpc(self.admin.defaultVirtualHostId) - def getHostNameXmlRpc(self): """Return the url of the virtual server.""" @@ -250,27 +242,37 @@ class VirtualHostsServer(VirtualHostsCommonMixin, ObjectsServer): raise faults.MissingItem(dispatcherId) def getObjectByHostName(self, hostName): - """Return the first virtual host with the given host name.""" + """Return the virtual host with the given host name.""" virtualServerId = context.getVar('applicationId') virtualServer = self.getVirtualServer(virtualServerId) + askedHostName = hostName if not virtualServer.objectsByHostName: - # The is no virtual host defined. Create one with the requested + # There is no virtual host defined. Create one with the requested # host name. - object = commonTools.newThing( - 'object', 'virtualhosts.VirtualHost') + object = commonTools.newThing('object', 'virtualhosts.VirtualHost') object.title = 'Glasnost' object.hostName = hostName object.defaultDispatcherId = 'glasnost://%s' % hostName object.language = 'en' self.addObjectXmlRpc(object.exportToXmlRpc()) if not virtualServer.objectsByHostName.has_key(hostName): - for k in virtualServer.objectsByHostName.keys(): - if fnmatch(hostName, k): + # hostNames, without eventual www. + hostNames = virtualServer.objectsByHostName.keys() + hostNames.sort(lambda x,y: -cmp(len(x), len(y))) + for k in hostNames: + if fnmatch(hostName, '*.'+k): hostName = k break else: - raise faults.MissingItem(hostName) + if not virtualServer.admin.defaultVirtualHostId: + raise faults.MissingItem(hostName) + try: + object = virtualServer.objects[ + virtualServer.admin.defaultVirtualHostId] + except KeyError: + raise faults.MissingItem(hostName) + return object object = virtualServer.objectsByHostName[hostName] return object @@ -292,14 +294,18 @@ class VirtualHostsServer(VirtualHostsCommonMixin, ObjectsServer): return 0 def hasHostNameXmlRpc(self, hostName): + # note that this method may return false while getObjectByHostName + # returns something virtualServerId = context.getVar('applicationId') virtualServer = self.getVirtualServer(virtualServerId) hostName = iso8859_15(hostName) if virtualServer.objectsByHostName.has_key(hostName): return 1 - for k in virtualServer.objectsByHostName.keys(): - if fnmatch(hostName, k): - return 1 + #hostNames = virtualServer.objectsByHostName.keys() + #hostNames.sort(lambda x,y: -cmp(len(x), len(y))) + #for k in hostNames: + # if fnmatch(hostName, '*.'+k): + # return 1 return 0 def importVirtualServer(self, virtualServerId, importDirectoryPath): @@ -317,8 +323,6 @@ class VirtualHostsServer(VirtualHostsCommonMixin, ObjectsServer): def registerPublicMethods(self): ObjectsServer.registerPublicMethods(self) self.registerPublicMethod('getHostName', self.getHostNameXmlRpc) - self.registerPublicMethod('getDefaultVirtualHost', - self.getDefaultVirtualHost) self.registerPublicMethod('getObjectByHostName', self.getObjectByHostNameXmlRpc) self.registerPublicMethod('getObjectIdByHostName', @@ -375,7 +379,7 @@ class VirtualHostsServer(VirtualHostsCommonMixin, ObjectsServer): def updateApacheVHost(self, object): """Update the apache virtual host configuration. - Get the apache config template from the vistual host server data + Get the apache config template from the virtual host server data directory. Create the apache vhost files and fill them to add the given object as a new virtual host. @@ -395,7 +399,7 @@ class VirtualHostsServer(VirtualHostsCommonMixin, ObjectsServer): created. *IOError*: - The vhost file cannot be writen, or the templace config file cannot + The vhost file cannot be written, or the template config file cannot be read. """ diff --git a/shared/common/AppointmentsCommon.py b/shared/common/AppointmentsCommon.py index 8233d99c..c8aba6ea 100644 --- a/shared/common/AppointmentsCommon.py +++ b/shared/common/AppointmentsCommon.py @@ -77,6 +77,7 @@ class AppointmentCommon(ObjectCommon): creationTime_kindName = 'CreationTime' end = None + end_kind_stateInViewMode = 'read-only/hidden-if-empty' end_kindName = 'Time' participantsSet = None @@ -112,34 +113,42 @@ class AppointmentCommon(ObjectCommon): result = '' return result - def getLabel(self): + def getLabel(self, withDate = 0, withHour = 0): title = self.getTitle() if title is None: return '' - hourTime = self.getBeginningHourAndMinute() - if hourTime: - when = '%s %s' % ( - time.strftime('%d/%m/%Y', time.localtime(self.start)), - hourTime) - else: - when = time.strftime('%d/%m/%Y', time.localtime(self.start)) + dateTime = self.getDateTime(withDate, withHour) + if dateTime: + return '%s - %s' % (dateTime, title) + return title - return '%s - %s' % (when, title) + def getDateTime(self, withDate = 0, withHour = 0): + hourTime = '' + if withHour: + hourTime = self.getBeginningHourAndMinute() + + date = '' + if withDate: + date = time.strftime('%d/%m/%Y', time.localtime(self.start)) + + if not date and not hourTime: + return '' + return ' '.join([date, hourTime]) def getTitle(self): return self.title def getBeginningHourAndMinute(self): - """Returns a string with the start time of the appointment (or None - if no time set)""" + """Returns a string with the start time of the appointment (or an empty + string if no time set)""" hour = '%02d:%02d' % time.localtime(self.start)[3:5] if hour == '00:00' and not self.end: - return None + return '' if self.end: hourEnd = '%02d:%02d' % time.localtime(self.end)[3:5] if hour == '00:00' and self.end - self.start < 86400 and \ hourEnd == '23:59': - return None + return '' return hour def getEndHourAndMinute(self): diff --git a/shared/common/VirtualHostsCommon.py b/shared/common/VirtualHostsCommon.py index 8d296527..bd96488f 100644 --- a/shared/common/VirtualHostsCommon.py +++ b/shared/common/VirtualHostsCommon.py @@ -98,6 +98,7 @@ class VirtualHostCommon(ObjectCommon): hostName_kind_isTranslatable = 0 hostName_kind_label = N_('Web Host Name') hostName_kind_widget_size = 40 + hostName_kind_widgetName = 'Url' hostName_kindName = 'String' modificationTime = None @@ -109,6 +110,9 @@ class VirtualHostCommon(ObjectCommon): serverRole = 'virtualhosts' + # TODO: everything so that it is editable by user + showTooltips = 0 # FIXME: default should be true + templateDirectoryName = 'glasnost2' templateDirectoryName_kind_balloonHelp = N_( 'Select the template (skin) to use for this host.') diff --git a/shared/common/things.py b/shared/common/things.py index d69f0b6a..3ac59dd1 100644 --- a/shared/common/things.py +++ b/shared/common/things.py @@ -138,6 +138,7 @@ class BaseThing: thingCategory = 'other' thingCategory_kind_importExport = 'private' thingCategory_kind_isRequiredInEditMode = 1 + thingCategory_kind_isTranslatable = 0 thingCategory_kind_label = N_('Internal Category') thingCategory_kind_stateInEditMode = 'hidden' thingCategory_kind_stateInViewMode = 'hidden' @@ -146,6 +147,7 @@ class BaseThing: thingName = None thingName_kind_importExport = 'private' thingName_kind_isRequiredInEditMode = 1 + thingName_kind_isTranslatable = 0 thingName_kind_label = N_('Internal Name') thingName_kind_stateInEditMode = 'hidden' thingName_kind_stateInViewMode = 'hidden' diff --git a/shared/common/xhtmlgenerator.py b/shared/common/xhtmlgenerator.py index e905d550..afb30654 100644 --- a/shared/common/xhtmlgenerator.py +++ b/shared/common/xhtmlgenerator.py @@ -455,6 +455,19 @@ class aliasUrl(rootUrl): action = '' return '%s%s%s' % (path, self.alias, action) +class fileUrl(rootUrl): + filename = None + + def __init__(self, filename): + rootUrl.__init__(self) + self.filename = filename + + def getPath(self, **keywords): + path = rootUrl.getPath(self, **keywords) + if path[-1] == '/' and self.filename[0] == '/': + path = path[:-1] + return path + self.filename + class idUrl(rootUrl): action = None diff --git a/shared/proxy/DispatcherProxy.py b/shared/proxy/DispatcherProxy.py index 5389838b..62e95dd8 100644 --- a/shared/proxy/DispatcherProxy.py +++ b/shared/proxy/DispatcherProxy.py @@ -400,13 +400,21 @@ def _callServer(serverAccessor, functionName, arguments): serverProxy = serverAccessor['serverProxy'] try: result = apply(getattr(serverProxy, functionName), arguments) + except socket.gaierror, exception: + if exception[0] == -3: # Temporary failure in name resolution + raise faults.UnknownDispatcherInId(serverAccessor['serverId']) + raise except socket.error, exception: - if exception[0] == 'host not found': + if exception[0] == 'host not found': # FIXME: looks dubious raise faults.UnknownDispatcherInId(serverAccessor['serverId']) if exception[0] == 111: - # Connection refused. + # Connection refused raise faults.UnknownDispatcherInId(serverAccessor['serverId']) raise + except socket.gaierror, exception: + if exception[0] == -3: + raise + raise except xmlrpclib.ProtocolError, exception: if exception.errcode == 406: # Protocol Error: 406 Not Acceptable. diff --git a/shared/proxy/ObjectsProxy.py b/shared/proxy/ObjectsProxy.py index 52013bc3..632d9ea1 100644 --- a/shared/proxy/ObjectsProxy.py +++ b/shared/proxy/ObjectsProxy.py @@ -1160,8 +1160,7 @@ class ObjectsProxy(ObjectsCommonMixin, AdministrableProxyMixin, Proxy): multiCall = multiCall) def getObjectLabelsTranslated( - self, objectIds, destinationLanguages, - serverId = None): + self, objectIds, destinationLanguages, serverId = None): """Get the objects labels in the specified languages. Keyword Arguments: @@ -1193,8 +1192,10 @@ class ObjectsProxy(ObjectsCommonMixin, AdministrableProxyMixin, Proxy): multiCall = MultiCall() for objectId in objectIds: - self.getObjectLabelAndLanguage( - objectId, multiCall = multiCall) + try: + self.getObjectLabelAndLanguage(objectId, multiCall = multiCall) + except faults.UnknownDispatcherInId: + objectIds.remove(objectId) lazyLabelsAndLanguages = multiCall.call() labelsAndLanguages = {} for i in range(len(objectIds)): @@ -1230,7 +1231,7 @@ class ObjectsProxy(ObjectsCommonMixin, AdministrableProxyMixin, Proxy): return labels def getObjectLabelTranslated( - self, objectId, destinationLanguages): + self, objectId, destinationLanguages): """Get the object label in the specified languages. Keyword Arguments: diff --git a/shared/proxy/VirtualHostsProxy.py b/shared/proxy/VirtualHostsProxy.py index 2b5ee348..46620510 100644 --- a/shared/proxy/VirtualHostsProxy.py +++ b/shared/proxy/VirtualHostsProxy.py @@ -90,15 +90,6 @@ class VirtualHostsProxy(VirtualHostsCommonMixin, ObjectsProxy): 'canModifyObject', [serverId, getApplicationToken(), userToken, objectId]) - def getDefaultVirtualHost(self, serverId = None): - userToken = context.getVar('userToken', default = '') - serverId = self.getServerId(serverId = serverId) - return callServer( - serverId, - 'getDefaultVirtualHost', - [serverId, getApplicationToken(), userToken], - resultHandler = self.getObject_handleResult) - def getObjectByHostName(self, hostName, serverId = None): userToken = context.getVar('userToken', default = '') diff --git a/shared/web/AppointmentsWeb.py b/shared/web/AppointmentsWeb.py index eaa409a7..c188e3c3 100644 --- a/shared/web/AppointmentsWeb.py +++ b/shared/web/AppointmentsWeb.py @@ -108,6 +108,15 @@ class Appointment(ObjectWebMixin, Appointment): return [] group = groupsProxy.getObject(admin.categoriesGroupId) return group.membersSet + + def getLabelTranslated(self, destinationLanguages = None, multiCall = None, + withDate = 0, withHour = 0): + label = ObjectWebMixin.getLabelTranslated(self, destinationLanguages, + multiCall) + dateTime = self.getDateTime(withDate, withHour) + if dateTime: + return '%s - %s' % (dateTime, label) + return label def getSlotNames(self, parentSlot = None): slotNames = _Appointment.getSlotNames(self, parentSlot = parentSlot) @@ -148,12 +157,11 @@ DTEND:%sT235900""" % (date, date) ) s.append('END:VEVENT\n') return '\n'.join(s) - register(Appointment) def weekNumberToDate(year, weekNumber): - jan4thSecs = time.mktime((year, 1, 4, 0, 0, 0, 0, 0, time.localtime()[-1])) + jan4thSecs = time.mktime((year, 1, 4, 0, 0, 0, 0, 0, 0)) secondsSinceJan4th = jan4thSecs + (weekNumber-1)*7*24*60*60 weekTuple = time.localtime(secondsSinceJan4th) daysToAdd = - weekTuple[6] @@ -163,14 +171,14 @@ def weekNumberToDate(year, weekNumber): def dateToWeekNumber(year, month, day): - janFirstSecs = time.mktime((year, 1, 1, 0, 0, 0, 0, 0, time.localtime()[-1])) + janFirstSecs = time.mktime((year, 1, 1, 0, 0, 0, 0, 0, 0)) janFirstTuple = time.localtime(janFirstSecs) if janFirstTuple[6] < 4: week0Secs = janFirstSecs - janFirstTuple[6]*24*60*60 else: week0Secs = janFirstSecs + (7-janFirstTuple[6])*24*60*60 - secondsSinceEpoch = time.mktime((year, month, day, 0, 0, 0, 0, 0, time.localtime()[-1])) + secondsSinceEpoch = time.mktime((year, month, day, 0, 0, 0, 0, 0, 0)) diffSecs = secondsSinceEpoch - week0Secs weekNumber, mod = divmod(diffSecs, 7*24*60*60) weekNumber = int(weekNumber) + 1 @@ -184,7 +192,42 @@ def dateToWeekNumber(year, month, day): class AppointmentsWeb(ObjectsWebMixin, AppointmentsProxy): def agenda(self): - return ObjectsWebMixin.viewAll(self) + now = time.time() + objects = self.getObjects().values() + + pastObjects = [x for x in objects if x.start < now] + pastObjects.sort(lambda x,y: -cmp(x.start, y.start)) + + futureObjects = [x for x in objects if x.start > now] + futureObjects.sort(lambda x,y: cmp(x.start, y.start)) + + layout = X.array() + + if futureObjects: + table = X.table(_class = 'objects-table') + table += X.tr( + X.th(_('Date')), + X.th(_('Label'))) + for object in futureObjects: + table += X.tr( + X.td(object.getDateTime(withDate = 1, withHour = 1)), + X.td(X.objectHypertextLabel(object.id))) + layout += X.h2(_('Future events')) + layout += table + + if pastObjects: + table = X.table(_class = 'objects-table') + table += X.tr( + X.th(_('Date')), + X.th(_('Label'))) + for object in pastObjects: + table += X.tr( + X.td(object.getDateTime(withDate = 1, withHour = 1)), + X.td(X.objectHypertextLabel(object.id))) + layout += X.h2(_('Past events')) + layout += table + + return writePageLayout(layout, _('Agenda')) agenda.isPublicForWeb = 1 def day(self, year, month, day): @@ -246,7 +289,7 @@ class AppointmentsWeb(ObjectsWebMixin, AppointmentsProxy): ul = X.ul() hourAppointments.sort(lambda x,y: cmp(x.start, y.start)) for d in hourAppointments: - ul += X.li(X.a(href = X.idUrl(d.id))(d.getLabel())) + ul += X.li(X.a(href = X.idUrl(d.id))(d.getLabelTranslated())) hourContent += ul className = '' if len(hourAppointments): @@ -471,10 +514,11 @@ class AppointmentsWeb(ObjectsWebMixin, AppointmentsProxy): className += ' busy' app = dayAppointments[0] dayContent = X.a(href = X.idUrl(app.id), - title = app.getLabel())(dayLabel) + title = app.getLabelTranslated(withHour = 1))( + dayLabel) else: className += ' busy' - title = ', '.join([x.getLabel() for x in dayAppointments]) + title = ', '.join([x.getLabelTranslated() for x in dayAppointments]) dayContent = X.a( href = '/%s/day/%d/%d/%d' % ( self.serverRole, year, month, d), @@ -578,7 +622,7 @@ class AppointmentsWeb(ObjectsWebMixin, AppointmentsProxy): disp, role, id = splitObjectId(d.id) idAttribute = 'appointment-%s-%s' % (disp, id) li += X.a(href = X.idUrl(d.id), id = idAttribute)( - d.getLabel()) + d.getLabelTranslated(withHour = 1)) details = X.ul(_class = 'appointment-details tooltip', id = 'for-' + idAttribute) start = d.getBeginningHourAndMinute() @@ -589,7 +633,9 @@ class AppointmentsWeb(ObjectsWebMixin, AppointmentsProxy): if d.body: details += X.li(d.body) hasDetails = 1 - if hasDetails: + if hasDetails and \ + context.getVar('virtualHost').showTooltips: + webTools.addContextualHeader('tooltips.js') li += details ul += li dayContent += ul @@ -639,7 +685,7 @@ class AppointmentsWeb(ObjectsWebMixin, AppointmentsProxy): ul += X.li(monthLink) if not 'year' in exclude: ul += X.li(yearLink) - return ul + return X.array(ul, self.getViewAllButtonsBarLayout()) def submitAddObject(self, object, **keywords): result = ObjectsWebMixin.submitAddObject(self, object, **keywords) diff --git a/shared/web/ArticlesWeb.py b/shared/web/ArticlesWeb.py index b85ab21d..0401a68e 100644 --- a/shared/web/ArticlesWeb.py +++ b/shared/web/ArticlesWeb.py @@ -69,8 +69,7 @@ class Article(ObjectWebMixin, Article): body_kind_widget_preview = 1 body_kind_widgetName = 'TextArea' - editionTime_kind_defaultValue = 'now' - editionTime_kind_stateInEditMode = 'read-only' + editionTime_kind_stateInEditMode = 'hidden' editionTime_kind_widget_fieldLabel = N_('Edition Time') editionTime_kind_widgetName = 'InputText' @@ -187,7 +186,8 @@ class Article(ObjectWebMixin, Article): if 'body' in slotNames: slotNames.remove('body') userToken = context.getVar('userToken', default = '') - if not userToken or context.getVar('useCompactLayout', default = 0): + if context.getVar('useCompactLayout', default = 0) or \ + not self.getWeb().canModifyObject(self.id): for slotName in ( 'authorsSet', 'creationTime', 'editionTime', 'format', 'lastEditorId', 'modificationTime', 'readersSet', 'title', diff --git a/shared/web/AuthenticationLibertyAllianceWeb.py b/shared/web/AuthenticationLibertyAllianceWeb.py index 0bd160a8..d520275f 100644 --- a/shared/web/AuthenticationLibertyAllianceWeb.py +++ b/shared/web/AuthenticationLibertyAllianceWeb.py @@ -185,7 +185,8 @@ class AuthenticationLibertyAllianceWeb(WebMixin, del keywords['tokenId'] from Provider.ServiceProvider import ServiceProvider - sp = ServiceProvider('localhost', 8089, 8090, SOAPEndpoint = 'http://localhost/soapEndPoint.html') + sp = ServiceProvider('localhost', 8089, 8090, + SOAPEndpoint = 'http://localhost/soapEndPoint.html') authnResponse = sp.getAuthnResponseFromEmbeddedUrl(keywords) authWeb = getWebForServerRole('authentication') @@ -207,7 +208,8 @@ class AuthenticationLibertyAllianceWeb(WebMixin, keywords = {} from Provider.ServiceProvider import ServiceProvider - sp = ServiceProvider('localhost', 8089, 8090, SOAPEndpoint = 'http://localhost/soapEndPoint.html') + sp = ServiceProvider('localhost', 8089, 8090, + SOAPEndpoint = 'http://localhost/soapEndPoint.html') authnRequest = sp.getNewAuthnRequest() embeddedAuthnRequest = authnRequest.exportToEmbeddedUrl() response = idpUrl+'?'+embeddedAuthnRequest diff --git a/shared/web/AuthenticationLoginPasswordWeb.py b/shared/web/AuthenticationLoginPasswordWeb.py index 72e0b481..32c34ab2 100644 --- a/shared/web/AuthenticationLoginPasswordWeb.py +++ b/shared/web/AuthenticationLoginPasswordWeb.py @@ -77,11 +77,14 @@ class AccountLoginPassword(BaseObjectWebMixin, AccountLoginPassword): def getEditLayoutSlotNames(self, fields, parentSlot = None): slotNames = BaseObjectWebMixin.getEditLayoutSlotNames(self, fields, parentSlot = parentSlot) - if context.getVar('authMode') != 'login': - slotNames.remove('password') + slotNames.remove('password') return slotNames register(AccountLoginPassword) +class LoginAccountLoginPassword(BaseObjectWebMixin, AccountLoginPassword): + login_kind_balloonHelp = N_('Enter the username you use on this site.') + password_kind_balloonHelp = N_('Enter your password.') +register(LoginAccountLoginPassword) class ChangingPassword(BaseObjectWebMixin, ObjectCommon): id_kindName = None @@ -123,6 +126,7 @@ class ChangingPassword(BaseObjectWebMixin, ObjectCommon): return slotNames + class ChangingUserPassword(BaseObjectWebMixin, ObjectCommon): id_kindName = None language_kindName = None @@ -284,6 +288,8 @@ class AuthenticationLoginPasswordWeb(WebMixin, changePassword.isPublicForWeb = 1 def changePasswordSubmit(self, **keywords): + if not context.getVar('userToken'): + return accessForbidden() admin = self.getAdmin() if not admin.userCanChoosePassword: return accessForbidden(dontAskForLogin = 1) @@ -321,8 +327,8 @@ class AuthenticationLoginPasswordWeb(WebMixin, self.modifyAccount(context.getVar('userId'), authObject) return success( - _('The password has been modified successfully.'), - X.url('/')) + _('The password has been modified successfully.'), + X.rootUrl()) changePasswordSubmit.isPublicForWeb = 1 @@ -468,12 +474,11 @@ class AuthenticationLoginPasswordWeb(WebMixin, req.headers_out['Pragma'] = 'no-cache' if keywords is None: keywords = {} - authObject = self.newAuthenticationObject() + authObject = LoginAccountLoginPassword() if not again: authObject.initFields(keywords) authObject.repairFields(keywords) - context.push(_level = 'index', layoutMode = 'edit', - authMode = 'login') + context.push(_level = 'index', layoutMode = 'edit') try: layout = X.array() if access == 'forbidden': @@ -575,8 +580,7 @@ class AuthenticationLoginPasswordWeb(WebMixin, authObject.repairFields(keywords) - context.push(_level = 'index', layoutMode = 'edit', - authMode = 'newAccount') + context.push(_level = 'index', layoutMode = 'edit') try: layout = X.array() @@ -584,17 +588,6 @@ class AuthenticationLoginPasswordWeb(WebMixin, method = 'post') layout += form - #context.push(_level = 'edit', layoutMode = 'edit') - - #widget = slot.getWidget() - #form += widget.getModelPageBodyLayout(userCardSlot, keywords) - - #slot = slots.Root(authObject) - #widget = slot.getWidget() - #form += widget.getModelPageBodyLayout(slot, keywords) - - #context.pull() - form += userCardObject.getEditLayout( keywords, parentSlot = userCardSlot) form += authObject.getEditLayout(keywords) diff --git a/shared/web/ForumsWeb.py b/shared/web/ForumsWeb.py index ea180c29..b8550c21 100644 --- a/shared/web/ForumsWeb.py +++ b/shared/web/ForumsWeb.py @@ -269,7 +269,8 @@ class ForumsWeb(ObjectsWebMixin, ForumsProxy): comment.title)) tr += X.td(align = "center")(comment.nbReplies) if comment.authorId: - tr += X.td(align = "center")(X.objectHypertextLabel(comment.authorId)) + tr += X.td(align = "center")( + X.objectHypertextLabel(comment.authorId)) elif comment.name: tr += X.td(align = "center")(comment.name) else: diff --git a/shared/web/ObjectsWeb.py b/shared/web/ObjectsWeb.py index 9224bd2b..a99adc43 100644 --- a/shared/web/ObjectsWeb.py +++ b/shared/web/ObjectsWeb.py @@ -89,13 +89,18 @@ class BaseObjectWebMixin(things.ThingMixin): self.repairFields(fields) return self.getCompactViewLayout(fields, parentSlot = None) - def getLabelTranslated(self, destinationLanguages, multiCall = None): + def getLabelTranslated(self, destinationLanguages = None, multiCall = None): translationsProxy = getProxyForServerRole('translations') if translationsProxy: - return translationsProxy.getTranslation( + if not destinationLanguages: + destinationLanguages = context.getVar('destinationLanguages') + try: + return translationsProxy.getTranslation( self.getLabel(), self.getId(), 'self.getLabel()', self.getLabelLanguage(), destinationLanguages, multiCall = multiCall) + except faults.UnknownStringDigest: + return self.getLabel() else: return self.getLabel() @@ -106,7 +111,9 @@ class BaseObjectWebMixin(things.ThingMixin): slotNames = things.ThingMixin.getViewLayoutSlotNames( self, fields, parentSlot = parentSlot) userToken = context.getVar('userToken', default = '') - if not userToken or context.getVar('useCompactLayout', default = 0): + + if context.getVar('useCompactLayout', default = 0) or ( + self.id and not self.getWeb().canModifyObject(self.id)): slotNames = slotNames[:] for slotName in ('language',): if slotName in slotNames: @@ -466,7 +473,10 @@ class ObjectsWebMixin(WebMixin): lazyLabels = objectIds # fastest way to get a list of same len for objectId, lazyLabel in zip(objectIds, lazyLabels): if translationsProxy: - label = lazyLabel() + try: + label = lazyLabel() + except faults.UnknownStringDigest: + label = partialObjects[objectId].getLabel() else: label = partialObjects[objectId].getLabel() partialObject = partialObjects[objectId] @@ -588,7 +598,10 @@ class ObjectsWebMixin(WebMixin): object.getLabelTranslated( readLanguages, multiCall = labelsMultiCall) for id, lazyLabel in zip(ids, labelsMultiCall.call()): - labels[id] = lazyLabel() + try: + labels[id] = lazyLabel() + except faults.UnknownStringDigest: + labels[id] = objects[id].getLabel() ids.sort(lambda id1, id2, labels = labels: locale.strcoll(labels[id1], labels[id2])) return ids @@ -664,6 +677,17 @@ class ObjectsWebMixin(WebMixin): def getViewOtherActionButtonsBarLayout(self, object, fields): return None + def id(self, id): + if not self.hasObject(id): + return pageNotFound() + if not self.canGetObject(id): + return accessForbidden() + object = self.getObject(id) + return writePageLayout( + X.p(id), + _('Id for "%s"') % object.getLabel()) + id.isPublicForWeb = 1 + image = download image.isPublicForWeb = 1 diff --git a/shared/web/VotesWeb.py b/shared/web/VotesWeb.py index fce404fb..4b5aad07 100644 --- a/shared/web/VotesWeb.py +++ b/shared/web/VotesWeb.py @@ -275,7 +275,8 @@ class VoteMixin(ObjectWebMixin): electionId_kind_hasToMakeFieldFromValue = 0 electionId_kind_hasToRepairField = 0 electionId_kind_hasToSubmitField = 0 - electionId_kind_stateInEditMode = 'read-only' + electionId_kind_stateInEditMode = 'hidden' + electionId_kind_stateInViewMode = 'hidden' electionId_kindName = 'Id' electionId_kind_serverRoles = ['elections'] electionId_kind_widget_fieldLabel = N_('Election') @@ -865,6 +866,8 @@ class VotesWeb(ObjectsWebMixin, VotesProxy): if voterId and voterId == userId and electionsWeb.canVote(electionId): layout += X.buttonStandalone( 'edit',X.idUrl(id, 'edit').add('electionId', electionId)) + layout += X.buttonStandalone( + _('Go to election'), X.idUrl(electionId)) return writePageLayout( layout, '%s - %s' % (_(self.objectNameCapitalized), label)) view.isPublicForWeb = 1 diff --git a/shared/web/calendaring.py b/shared/web/calendaring.py index 792c9528..5e7cdc04 100644 --- a/shared/web/calendaring.py +++ b/shared/web/calendaring.py @@ -133,7 +133,8 @@ def getMonthLayout(year, month, baseUrl, objects, startSlot, endSlot = None): ((getattr(x, endSlot) is None and getattr(x, startSlot) >= timeStart ) or \ getattr(x, endSlot) >= timeStart)] - dayObjects.sort(lambda x,y: cmp(getattr(x, startSlot), getattr(y, startSlot))) + dayObjects.sort(lambda x,y: cmp(getattr(x, startSlot), + getattr(y, startSlot))) if len(dayObjects): ul = X.ul() for d in dayObjects: diff --git a/shared/web/tools.py b/shared/web/tools.py index 043d6ca3..6a79ab6c 100644 --- a/shared/web/tools.py +++ b/shared/web/tools.py @@ -688,6 +688,7 @@ def writePageLayout(layout, title, canCache = 1): #os.chdir(context.getVar('webDirectoryPath')) os.chdir( context.getVar('templatesDirectoryPath') ) + dict['contextualHeaders'] = '\n'.join(context.getVar('htmlHeaders')) dict['body'] = layout.getAsXml() fileName = context.getVar('templateFileName') @@ -987,10 +988,7 @@ def processTALFile(fileName, file = None, xtal = None, **keywords): for k, v in dict.items(): engine.locals[k] = v - t1 = context.getVar('t1') interp = TALInterpreter(program, macros, engine, stream=req, wrap=80) - open('/tmp/webbench', 'a+').write(' %f (before interp())\n' % ( - time.time() - t1)) try: interp() except TALError: @@ -1000,8 +998,6 @@ def processTALFile(fileName, file = None, xtal = None, **keywords): exception = traceback.format_exception_only( info[0], info[1])[0].strip() writePageException(exception) - open('/tmp/webbench', 'a+').write(' %f (after interp())\n' % ( - time.time() - t1)) if req.caching: req.closeCachePage() diff --git a/shared/web/tools_new.py b/shared/web/tools_new.py index 6c801cb9..b0567c92 100644 --- a/shared/web/tools_new.py +++ b/shared/web/tools_new.py @@ -55,6 +55,7 @@ except ImportError: import glasnost.common.context as context import glasnost.common.tools_new as commonTools +import glasnost.common.xhtmlgenerator as X def debugInfos(): @@ -137,3 +138,15 @@ def getConfig(value, default = None, vars = None, raw = 0): default = commonTools.getConfig('Misc', value, default, vars, raw), vars = vars, raw = raw) +def addContextualHeader(htmlLine): + knownLines = { + 'tooltips.js': + '' % \ + X.fileUrl('/javascript/tooltips.js'), + } + if htmlLine in knownLines.keys(): + htmlLine = knownLines[htmlLine] + contextualHeaders = context.getVar('htmlHeaders') + if not htmlLine in contextualHeaders: + contextualHeaders.append(htmlLine) + diff --git a/shared/web/widgets.py b/shared/web/widgets.py index 93129a71..7805a831 100644 --- a/shared/web/widgets.py +++ b/shared/web/widgets.py @@ -142,6 +142,9 @@ class WidgetMixin(things.ThingMixin): # We have to enclose the field value in a tag with class 'cell' but we # want a nice markup so we can't simply
v
and # go away with this. + if self.isInForm() and context.getVar('virtualHost').showTooltips: + webTools.addContextualHeader('tooltips.js') + return X.enclose(self.getHtmlValue(slot, fields, **keywords), _class = 'cell') diff --git a/talGettext.py b/talGettext.py new file mode 100755 index 00000000..30d83771 --- /dev/null +++ b/talGettext.py @@ -0,0 +1,43 @@ +#! /usr/bin/env python + +# TODO: support attr-translate + +import os +import sgmllib +import sys + +directory = sys.argv[1] + +translations = {} + +class ParserForTranslations(sgmllib.SGMLParser): + def __init__(self, body): + sgmllib.SGMLParser.__init__(self) + self.translation = 0 + self.feed(body) + + def handle_data(self, data): + if not self.translation: + return + self.translation = 0 + translations[data.strip()] = None + + def unknown_starttag(self, tag, attrs): + attrs = [x for x in attrs if x[0] == 'tal:translate' and not x[1]] + if not attrs: + return + self.translation = 1 + + +for root, dir, files in os.walk(directory): + for file in files: + if not file.endswith('.tal') and not file.endswith('.html'): + continue + file = os.path.join(root, file) + ParserForTranslations(open(file).read()) + +for t in translations.keys(): + print '_("""%s""")' % t + + + diff --git a/templates/april/StandardLookAndFeel.html b/templates/april/StandardLookAndFeel.html index 10e23c85..80c0c93b 100644 --- a/templates/april/StandardLookAndFeel.html +++ b/templates/april/StandardLookAndFeel.html @@ -10,8 +10,8 @@ Théridion - [title] + - diff --git a/templates/april/web/css/april.css b/templates/april/web/css/april.css index a067f98c..8bcdaa4e 100644 --- a/templates/april/web/css/april.css +++ b/templates/april/web/css/april.css @@ -6,6 +6,8 @@ body { margin-left: auto; margin-right: auto; font-family: sans-serif; + color: black; + background: white; } div#header { diff --git a/templates/artus/StandardLookAndFeel.html b/templates/artus/StandardLookAndFeel.html index a1a79b67..af829c22 100644 --- a/templates/artus/StandardLookAndFeel.html +++ b/templates/artus/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + - diff --git a/templates/bxlug/StandardLookAndFeel.html b/templates/bxlug/StandardLookAndFeel.html index 89f45039..e4a10c84 100644 --- a/templates/bxlug/StandardLookAndFeel.html +++ b/templates/bxlug/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + - diff --git a/templates/chambon.raviart/StandardLookAndFeel.html b/templates/chambon.raviart/StandardLookAndFeel.html index 4ac2a509..91b8b1fd 100644 --- a/templates/chambon.raviart/StandardLookAndFeel.html +++ b/templates/chambon.raviart/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + - diff --git a/templates/codelutin.org/StandardLookAndFeel.html b/templates/codelutin.org/StandardLookAndFeel.html index 8e7ef828..64fdb44a 100644 --- a/templates/codelutin.org/StandardLookAndFeel.html +++ b/templates/codelutin.org/StandardLookAndFeel.html @@ -1,5 +1,5 @@ - + + + - @@ -61,7 +62,7 @@ http://www.codelutin.com - diff --git a/templates/codelutin.org/web/css/codelutin.org.css b/templates/codelutin.org/web/css/codelutin.org.css index 48af7140..01d508a2 100644 --- a/templates/codelutin.org/web/css/codelutin.org.css +++ b/templates/codelutin.org/web/css/codelutin.org.css @@ -4,7 +4,8 @@ body { font-family: Verdana, Arial, Georgia, Geneva, sans-serif; background-image: url(/images/lutin-background.png); background-repeat: no-repeat; - background-color : #FFFFFF; + background-color : white; + color: black; margin: 0; padding:0; } diff --git a/templates/codelutin/StandardLookAndFeel.html b/templates/codelutin/StandardLookAndFeel.html index 8cf55cd4..d69cc420 100644 --- a/templates/codelutin/StandardLookAndFeel.html +++ b/templates/codelutin/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + - @@ -46,7 +47,7 @@ http://www.codelutin.com - diff --git a/templates/crans/StandardLookAndFeel.html b/templates/crans/StandardLookAndFeel.html index 2309a11a..3df04c0b 100644 --- a/templates/crans/StandardLookAndFeel.html +++ b/templates/crans/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + - diff --git a/templates/cuisine/StandardLookAndFeel.html b/templates/cuisine/StandardLookAndFeel.html index 0bda75a6..c71aed90 100644 --- a/templates/cuisine/StandardLookAndFeel.html +++ b/templates/cuisine/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + - diff --git a/templates/cyborg/StandardLookAndFeel.html b/templates/cyborg/StandardLookAndFeel.html index df60554f..b51591ef 100644 --- a/templates/cyborg/StandardLookAndFeel.html +++ b/templates/cyborg/StandardLookAndFeel.html @@ -1,18 +1,18 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - -[title] - - - - - + + [title] + + + + + diff --git a/templates/default/comment.tal b/templates/default/comment.tal index efdd8497..e04f121d 100644 --- a/templates/default/comment.tal +++ b/templates/default/comment.tal @@ -2,7 +2,7 @@

titre

By
- Répondre + Reply
diff --git a/templates/default/misc.tal b/templates/default/misc.tal index 2b9e5af9..4d32c107 100644 --- a/templates/default/misc.tal +++ b/templates/default/misc.tal @@ -1,4 +1,4 @@ -

Powered by Glasnost

+

Glasnost

title +

the title goes here

- diff --git a/templates/demo.entrouvert.com/StandardLookAndFeel.html b/templates/demo.entrouvert.com/StandardLookAndFeel.html index 21bca83c..d19a9d48 100644 --- a/templates/demo.entrouvert.com/StandardLookAndFeel.html +++ b/templates/demo.entrouvert.com/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + @@ -42,7 +44,7 @@
  • Forums
  • Elections
  • Files
  • -
  • Calendrier
  • +
  • Calendar
  • diff --git a/templates/easter-eggs/StandardLookAndFeel.html b/templates/easter-eggs/StandardLookAndFeel.html index c7270caf..7281c833 100644 --- a/templates/easter-eggs/StandardLookAndFeel.html +++ b/templates/easter-eggs/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Website title - + + diff --git a/templates/easter-eggs/web/css/basicstyle.css b/templates/easter-eggs/web/css/basicstyle.css index 26a95947..9b57ff7b 100644 --- a/templates/easter-eggs/web/css/basicstyle.css +++ b/templates/easter-eggs/web/css/basicstyle.css @@ -40,3 +40,9 @@ ul.nav2 { img { border: 0; } +.tooltip { + display: none; +} +.error-message { + color: red; +} diff --git a/templates/easter-eggs/web/css/style.css b/templates/easter-eggs/web/css/style.css index 1826dabe..dd82d033 100644 --- a/templates/easter-eggs/web/css/style.css +++ b/templates/easter-eggs/web/css/style.css @@ -94,3 +94,6 @@ li.c { margin-top: 1.5em; padding-top: 0.3em; list-style-type: none; border-top: div.copyleft { text-align: center; font-size: 0.7em; margin-top: 4em; } .center { text-align: center; } + +div.preview { border: 1px dotted #036; margin-left: 2em; padding: 0;} + diff --git a/templates/eclova/StandardLookAndFeel.html b/templates/eclova/StandardLookAndFeel.html index 4386173d..57196f24 100644 --- a/templates/eclova/StandardLookAndFeel.html +++ b/templates/eclova/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> [title] + - diff --git a/templates/eclova/web/css/eclova.css b/templates/eclova/web/css/eclova.css index 7b72f7ca..5b2d8181 100644 --- a/templates/eclova/web/css/eclova.css +++ b/templates/eclova/web/css/eclova.css @@ -34,7 +34,7 @@ html, body { #footer { font-size: 70%; text-align: right; - padding: 2px 10px 0 0; + padding: 2px 10px 10px 0; } diff --git a/templates/entrouvert.be/StandardLookAndFeel.html b/templates/entrouvert.be/StandardLookAndFeel.html index bc49d9a6..74db2d9b 100644 --- a/templates/entrouvert.be/StandardLookAndFeel.html +++ b/templates/entrouvert.be/StandardLookAndFeel.html @@ -10,8 +10,8 @@ [title] + - diff --git a/templates/entrouvert.com/StandardLookAndFeel.html b/templates/entrouvert.com/StandardLookAndFeel.html index 34f3a9d3..7917457e 100644 --- a/templates/entrouvert.com/StandardLookAndFeel.html +++ b/templates/entrouvert.com/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> --> + - diff --git a/templates/entrouvert.com/web/images/fond-croissant.jpeg b/templates/entrouvert.com/web/images/fond-croissant.jpeg new file mode 100644 index 00000000..9dfe0cff Binary files /dev/null and b/templates/entrouvert.com/web/images/fond-croissant.jpeg differ diff --git a/templates/entrouvert/StandardLookAndFeel.html b/templates/entrouvert/StandardLookAndFeel.html index 739e388c..a7d68895 100644 --- a/templates/entrouvert/StandardLookAndFeel.html +++ b/templates/entrouvert/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + - + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    + - diff --git a/templates/fsfeurope/StandardLookAndFeel.html b/templates/fsfeurope/StandardLookAndFeel.html index 00e712c2..63821672 100644 --- a/templates/fsfeurope/StandardLookAndFeel.html +++ b/templates/fsfeurope/StandardLookAndFeel.html @@ -10,8 +10,8 @@ [title] + - diff --git a/templates/fsfeurope/web/css/fsfeurope.css b/templates/fsfeurope/web/css/fsfeurope.css index 9a03e981..a84f7798 100644 --- a/templates/fsfeurope/web/css/fsfeurope.css +++ b/templates/fsfeurope/web/css/fsfeurope.css @@ -2,6 +2,7 @@ body { background: white; + color: black; margin: 0; padding: 0; font-family: sans-serif; diff --git a/templates/glasnost.entrouvert.org/StandardLookAndFeel.html b/templates/glasnost.entrouvert.org/StandardLookAndFeel.html index 08b36933..995ee56d 100644 --- a/templates/glasnost.entrouvert.org/StandardLookAndFeel.html +++ b/templates/glasnost.entrouvert.org/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + - diff --git a/templates/glasnost/StandardLookAndFeel.html b/templates/glasnost/StandardLookAndFeel.html index 6bcfa1e5..ce11256a 100644 --- a/templates/glasnost/StandardLookAndFeel.html +++ b/templates/glasnost/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + - diff --git a/templates/glasnost2/StandardLookAndFeel.html b/templates/glasnost2/StandardLookAndFeel.html index 81bfecdd..e720cb48 100644 --- a/templates/glasnost2/StandardLookAndFeel.html +++ b/templates/glasnost2/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + - diff --git a/templates/i3c/StandardLookAndFeel.html b/templates/i3c/StandardLookAndFeel.html index bfac8295..028f14c4 100644 --- a/templates/i3c/StandardLookAndFeel.html +++ b/templates/i3c/StandardLookAndFeel.html @@ -10,6 +10,7 @@ [title] + - diff --git a/templates/upthings/StandardLookAndFeel.html b/templates/upthings/StandardLookAndFeel.html index 7dde166d..4010acdd 100644 --- a/templates/upthings/StandardLookAndFeel.html +++ b/templates/upthings/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + - diff --git a/templates/upthings/web/css/upthings.css b/templates/upthings/web/css/upthings.css index ea54625b..fef5b33c 100644 --- a/templates/upthings/web/css/upthings.css +++ b/templates/upthings/web/css/upthings.css @@ -2,6 +2,7 @@ body { background: white url(/images/upthings.jpeg) fixed top left no-repeat; + color: black; font-family: sans-serif; padding: 0; margin: 0; diff --git a/templates/vecam/StandardLookAndFeel.html b/templates/vecam/StandardLookAndFeel.html index 64707b9a..3e45aebc 100644 --- a/templates/vecam/StandardLookAndFeel.html +++ b/templates/vecam/StandardLookAndFeel.html @@ -10,6 +10,7 @@ [title] + - diff --git a/templates/vecam/web/css/vecam.css b/templates/vecam/web/css/vecam.css index bbab3fde..576379c7 100644 --- a/templates/vecam/web/css/vecam.css +++ b/templates/vecam/web/css/vecam.css @@ -2,6 +2,7 @@ html, body { background: #10743d; + color: black; padding-bottom: 15px; font-family: verdana, sans-serif; font-size: 12px; diff --git a/templates/watercolor/StandardLookAndFeel.html b/templates/watercolor/StandardLookAndFeel.html index 353e36ee..0e1f6f84 100644 --- a/templates/watercolor/StandardLookAndFeel.html +++ b/templates/watercolor/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Website title + +

    website title

    @@ -37,7 +39,7 @@ login - Glasnost + Glasnost diff --git a/templates/watercolor/web/css/watercolor.css b/templates/watercolor/web/css/watercolor.css index 1f210d75..368fd5cc 100644 --- a/templates/watercolor/web/css/watercolor.css +++ b/templates/watercolor/web/css/watercolor.css @@ -1,3 +1,4 @@ +@import url("/css/balloonHelp.css"); @import url("/css/calendar.css"); html, body { @@ -117,10 +118,6 @@ div#footer a.button { margin: 0 0.5em; } -.tooltip, .balloon-help { - display: none; -} - div#content ul { list-style: circle; } @@ -153,6 +150,7 @@ div.row ul { div.buttons-bar { margin-top: 1em; + clear: both; } div.buttons-bar .button { @@ -233,3 +231,9 @@ div.diff-error { font-size: 80%; } +.preview { + border: 1px solid #44618f; + padding: 0.5em; + margin: 0.5em 0 0 2em; +} + diff --git a/templates/wretched/StandardLookAndFeel.html b/templates/wretched/StandardLookAndFeel.html index ef9154d5..f2c4f56a 100644 --- a/templates/wretched/StandardLookAndFeel.html +++ b/templates/wretched/StandardLookAndFeel.html @@ -1,5 +1,5 @@ + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Website title +