diff --git a/.circleci-matrix.yml b/.circleci-matrix.yml new file mode 100644 index 00000000000..c23ed996f90 --- /dev/null +++ b/.circleci-matrix.yml @@ -0,0 +1,9 @@ +env: +- SEGMENTS="0123" +- SEGMENTS="4567" +- SEGMENTS="89ab" +- SEGMENTS="cdef" + +command: +- mkdir -p $CIRCLE_TEST_REPORTS/nose +- nosetests --ckan --reset-db --with-pylons=test-core.ini --nologcapture --with-coverage --cover-package=ckan --cover-package=ckanext --with-xunit --xunit-file=$CIRCLE_TEST_REPORTS/nose/junit.xml --segments=$SEGMENTS ckan ckanext diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index ee4ae5b3974..00000000000 --- a/.coveragerc +++ /dev/null @@ -1,3 +0,0 @@ -[run] -omit = */migration/*, /tests/* -source = ckan, ckanext diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000000..baf0efddc81 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,10 @@ +### CKAN Version if known (or site URL) + + +### Please describe the expected behaviour + + +### Please describe the actual behaviour + + +### What steps can be taken to reproduce the issue? diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000000..e05120c4edd --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,15 @@ +Fixes # + +### Proposed fixes: + + + +### Features: + +- [ ] includes tests covering changes +- [ ] includes updated documentation +- [ ] includes user-visible changes +- [ ] includes API changes +- [ ] includes bugfix for possible backport + +Please [X] all the boxes above that apply diff --git a/.travis.yml b/.travis.yml index 7b04aabff2e..1815e0e5b33 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,20 @@ language: python +sudo: required python: - "2.6" - "2.7" env: - - PGVERSION=9.1 - - PGVERSION=8.4 + global: + - CKAN_POSTGRES_DB=ckan_test + - CKAN_POSTGRES_USER=ckan_default + - CKAN_POSTGRES_PWD=pass + - CKAN_DATASTORE_POSTGRES_DB=datastore_test + - CKAN_DATASTORE_POSTGRES_WRITE_USER=ckan_default + - CKAN_DATASTORE_POSTGRES_READ_USER=datastore_default + - CKAN_DATASTORE_POSTGRES_READ_PWD=pass + matrix: + - PGVERSION=9.1 + - PGVERSION=8.4 matrix: exclude: - python: "2.7" diff --git a/.tx/config b/.tx/config index 203dc603b4d..5b652bb6569 100644 --- a/.tx/config +++ b/.tx/config @@ -1,7 +1,7 @@ [main] host = https://www.transifex.com -[ckan.2-2] +[ckan.2-4] file_filter = ckan/i18n//LC_MESSAGES/ckan.po source_file = ckan/i18n/ckan.pot source_lang = en diff --git a/CHANGELOG.rst b/CHANGELOG.rst index dfd43ab53a3..69903015a0c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,9 +7,63 @@ Changelog --------- -v2.5.0 XXXX-XX-XX +v2.5.2 2016-03-31 ================= +Bug fixes: + * Avoid submitting resources to the DataPusher multiple times (#2856) + * Use `resource.url` as raw_resource_url (#2873) + * Fix DomainObject.count() to return count (#2919) + * Prevent unicode/ascii conversion errors in DataStore + * Fix datastore_delete erasing the db when filters is blank (#2885) + * Avoid package_search exception when using use_default_schema (#2848) + * Encode EXPLAIN SQL before sending to datastore + * Use `ckan.site_url` to generate urls of resources (#2592) + * Fixed the url for the organization_item template + +v2.5.1 2015-12-17 +================= + +Note: This version requires a requirements upgrade on source installations + +Note: This version requires a database upgrade + +Note: This version does not require a Solr schema upgrade + +Major: + * CKAN extension language translations integrated using ITranslations interface (#2461, #2643) + * Speed improvements for displaying a dataset (#2234), home page (#2554), searching (#2382, #2724) and API actions: package_show (#1078) and user_list (#2752). + * An interface to replace the file uploader, allowing integration with other cloud storage providers (IUploader interface) (#2510) + +Minor: + * package_purge API action added (#1572) + * revision_list API action now has paging (#1431) + * Official Ubuntu 14.04 LTS support (#1651) + * Require/validate current password before allowing a password change (#1940) + * recline_map_view now recognizes GeoJSON fileds (#2387) + * Timezone setting (#2494) + * Updating a resource via upload now saves the last_modified value in the resource (#2519) + * DataPusher can be customized using the new IDataPusher interface (#2571) + * Exporting and importing users, with their passwords (if sysadmin) (#2647) + +Bug fixes: + * Fix to allow uppercase letters in local part of email when sending user invitations (#2415) + * License pick-list changes would cause old values in datasets to be overwritten when edited (#2472) + * Schema was being passed to package_create_default_resource_views (#2484) + * Arabic translation format string issue (#2493) + * Error when deleting organizations (#2512) + * When DataPusher had an error storing a resource in Data Store, the resource data page gave an error (#2518) + * Data preview failed when it comes from a server that gives 403 error from a HEAD request (#2530) + * 'paster views create' failed for non-default dataset types (#2532) + * DataPusher didn't work for TSV files (#2553) + * DataPusher failed sometimes due to 'type mismatch' (#2581) + * IGroupForm wasn't allowing new groups (of type 'group') to use group_form (#2617, #2640) + * group_purge left behind a Member if it has a parent group/org (#2631) + * organization_purge left orphaned datasets still with owner_id (#2632) + * Fix Markdown rendering issue + * Return default error page on fanstatic errors + * Prevent authentication when using API callbacks + Changes and deprecations ------------------------ @@ -18,6 +72,44 @@ Changes and deprecations https://github.com/ckan/ckanext-dcat#rdf-dcat-endpoints +* The library used to render markdown has been changed to python-markdown. This + introduces both ``python-markdown`` and ``bleach`` as dependencies, as ``bleach`` + is used to clean any HTML provided to the markdown processor. + +* This is the last version of CKAN to support Postgresql 8.x, 9.0 and 9.1. The + next minor version of CKAN will require Postgresql 9.2 or later. + + +v2.5.0 2015-12-17 +================= + +Cancelled release + +v2.4.3 2016-03-31 +================= + +Bug fixes: + * Use `resource.url` as raw_resource_url (#2873) + * Fix DomainObject.count() to return count (#2919) + * Add offset param to organization_activity (#2640) + * Prevent unicode/ascii conversion errors in DataStore + * Fix datastore_delete erasing the db when filters is blank (#2885) + * Avoid package_search exception when using use_default_schema (#2848) + * resource_edit incorrectly setting action to new instead of edit + * Encode EXPLAIN SQL before sending to datastore + * Use `ckan.site_url` to generate urls of resources (#2592) + * Don't hide actual exception on paster commands + +v2.4.2 2015-12-17 +================= + +Note: This version requires a requirements upgrade on source installations + +Bug fixes: + * Fix Markdown rendering issue + * Return default error page on fanstatic errors + * Prevent authentication when using API callbacks + v2.4.1 2015-09-02 ================= @@ -120,6 +212,37 @@ Changes and deprecations * Config option ``site_url`` is now required - CKAN will not abort during start-up if it is not set. (#1976) +v2.3.3 2015-12-17 +================= + +Bug fixes: + * Fix Markdown rendering issue + * Return default error page on fanstatic errors + * Prevent authentication when using API callbacks + +v2.3.4 2016-03-31 +================= + +Bug fixes: + * Use `resource.url` as raw_resource_url (#2873) + * Fix DomainObject.count() to return count (#2919) + * Prevent unicode/ascii conversion errors in DataStore + * Fix datastore_delete erasing the db when filters is blank (#2885) + * Avoid package_search exception when using use_default_schema (#2848) + * resource_edit incorrectly setting action to new instead of edit + * Use `ckan.site_url` to generate urls of resources (#2592) + * Don't hide actual exception on paster commands + +v2.3.3 2015-12-17 +================= + +Note: This version requires a requirements upgrade on source installations + +Bug fixes: + * Fix Markdown rendering issue + * Return default error page on fanstatic errors + * Prevent authentication when using API callbacks + v2.3.2 2015-09-02 ================= @@ -444,6 +567,16 @@ Troubleshooting: Also see the previous point for other ``who.ini`` changes. +v2.2.4 2015-12-17 +================= + +Note: This version requires a requirements upgrade on source installations + +Bug fixes: + * Fix Markdown rendering issue + * Return default error page on fanstatic errors + * Prevent authentication when using API callbacks + v2.2.3 2015-07-22 ================= @@ -676,6 +809,16 @@ Troubleshooting: leaving the fields empty. Also make sure to restart running processes like harvesters after the update to make sure they use the new code base. +v2.1.6 2015-12-17 +================= + +Note: This version requires a requirements upgrade on source installations + +Bug fixes: + * Fix Markdown rendering issue + * Return default error page on fanstatic errors + * Prevent authentication when using API callbacks + v2.1.5 2015-07-22 ================= @@ -843,6 +986,16 @@ Known issues: * Under certain authorization setups the frontend for the groups functionality may not work as expected (See #1176 #1175). +v2.0.8 2015-12-17 +================= + +Note: This version requires a requirements upgrade on source installations + +Bug fixes: + * Fix Markdown rendering issue + * Return default error page on fanstatic errors + * Prevent authentication when using API callbacks + v2.0.7 2015-07-22 ================= diff --git a/CONDUCT.rst b/CONDUCT.rst new file mode 100644 index 00000000000..25a29867f66 --- /dev/null +++ b/CONDUCT.rst @@ -0,0 +1,76 @@ + +This code of conduct outlines our expectations for participants within the **CKAN** community, as well as steps to reporting unacceptable behavior. We are committed to providing a welcoming and inspiring community for all and expect our code of conduct to be honored. Anyone who violates this code of conduct may be banned from the community. + +Our open source community strives to: + +* **Be friendly and patient.** +* **Be welcoming**: We strive to be a community that welcomes and supports people of all backgrounds and identities. This includes, but is not limited to members of any race, ethnicity, culture, national origin, colour, immigration status, social and economic class, educational level, sex, sexual orientation, gender identity and expression, age, size, family status, political belief, religion, and mental and physical ability. +* **Be considerate**: Your work will be used by other people, and you in turn will depend on the work of others. Any decision you take will affect users and colleagues, and you should take those consequences into account when making decisions. Remember that we're a world-wide community, so you might not be communicating in someone else's primary language. +* **Be respectful**: Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners. We might all experience some frustration now and then, but we cannot allow that frustration to turn into a personal attack. It’s important to remember that a community where people feel uncomfortable or threatened is not a productive one. +* **Be careful in the words that we choose**: we are a community of professionals, and we conduct ourselves professionally. Be kind to others. Do not insult or put down other participants. Harassment and other exclusionary behavior aren't acceptable. +* **Try to understand why we disagree**: Disagreements, both social and technical, happen all the time. It is important that we resolve disagreements and differing views constructively. Remember that we’re different. The strength of our community comes from its diversity, people from a wide range of backgrounds. Different people have different perspectives on issues. Being unable to understand why someone holds a viewpoint doesn’t mean that they’re wrong. Don’t forget that it is human to err and blaming each other doesn’t get us anywhere. Instead, focus on helping to resolve issues and learning from mistakes. + +Definitions +---- + +Harassment includes, but is not limited to: + +- Offensive comments related to gender, gender identity and expression, sexual orientation, disability, mental illness, neuro(a)typicality, physical appearance, body size, race, age, regional discrimination, political or religious affiliation +- Unwelcome comments regarding a person’s lifestyle choices and practices, including those related to food, health, parenting, drugs, and employment +- Deliberate misgendering. This includes deadnaming or persistently using a pronoun that does not correctly reflect a person's gender identity. You must address people by the name they give you when not addressing them by their username or handle +- Physical contact and simulated physical contact (eg, textual descriptions like “*hug*” or “*backrub*”) without consent or after a request to stop +- Threats of violence, both physical and psychological +- Incitement of violence towards any individual, including encouraging a person to commit suicide or to engage in self-harm +- Deliberate intimidation +- Stalking or following +- Harassing photography or recording, including logging online activity for harassment purposes +- Sustained disruption of discussion +- Unwelcome sexual attention, including gratuitous or off-topic sexual images or behaviour +- Pattern of inappropriate social contact, such as requesting/assuming inappropriate levels of intimacy with others +- Continued one-on-one communication after requests to cease +- Deliberate “outing” of any aspect of a person’s identity without their consent except as necessary to protect others from intentional abuse +- Publication of non-harassing private communication + +Our open source community prioritizes marginalized people’s safety over privileged people’s comfort. We will not act on complaints regarding: + +- ‘Reverse’ -isms, including ‘reverse racism,’ ‘reverse sexism,’ and ‘cisphobia’ +- Reasonable communication of boundaries, such as “leave me alone,” “go away,” or “I’m not discussing this with you” +- Refusal to explain or debate social justice concepts +- Communicating in a ‘tone’ you don’t find congenial +- Criticizing racist, sexist, cissexist, or otherwise oppressive behavior or assumptions + + +Diversity Statement +---- + +We encourage everyone to participate and are committed to building a community for all. Although we will fail at times, we seek to treat everyone both as fairly and equally as possible. Whenever a participant has made a mistake, we expect them to take responsibility for it. If someone has been harmed or offended, it is our responsibility to listen carefully and respectfully, and do our best to right the wrong. + +Although this list cannot be exhaustive, we explicitly honor diversity in age, gender, gender identity or expression, culture, ethnicity, language, national origin, political beliefs, profession, race, religion, sexual orientation, socioeconomic status, and technical ability. We will not tolerate discrimination based on any of the protected +characteristics above, including participants with disabilities. + +Reporting Issues +---- + +If you experience or witness unacceptable behavior—or have any other concerns—please report it by contacting us via conduct@ckan.org. All reports will be handled with discretion. In your report please include: + +- Your contact information. +- Names (real, nicknames, or pseudonyms) of any individuals involved. If there are additional witnesses, please +include them as well. Your account of what occurred, and if you believe the incident is ongoing. If there is a publicly available record (e.g. a mailing list archive or a public IRC logger), please include a link. +- Any additional information that may be helpful. + +After filing a report, a representative will contact you personally, review the incident, follow up with any additional questions, and make a decision as to how to respond. If the person who is harassing you is part of the response team, they will recuse themselves from handling your incident. If the complaint originates from a member of the response team, it will be handled by a different member of the response team. We will respect confidentiality requests for the purpose of protecting victims of abuse. + +Attribution & Acknowledgements +---- + +This document is derived on the `opencodeofconduct `. + +We all stand on the shoulders of giants across many open source communities. We'd like to thank the communities and projects that established code of conducts and diversity statements as our inspiration: + +* `Django ` +* `Python ` +* `Ubuntu ` +* `Contributor Covenant ` +* `Geek Feminism ` +* `Citizen Code of Conduct ` + diff --git a/LICENSE.txt b/LICENSE.txt index 35b1b7fac90..26a96720c5d 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -37,10 +37,10 @@ All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - 1. Redistributions of source code must retain the above copyright notice, + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright + + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. @@ -59,19 +59,6 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -Genshi ------- - -Copyright © 2006-2007 Edgewall Software -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Migrate ------- diff --git a/README.rst b/README.rst index bce027b8506..60cf028d912 100644 --- a/README.rst +++ b/README.rst @@ -1,12 +1,23 @@ CKAN: The Open Source Data Portal Software ========================================== +.. image:: https://img.shields.io/badge/license-AGPL-blue.svg?style=flat + :target: https://opensource.org/licenses/AGPL-3.0 + :alt: License + +.. image:: https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat + :target: http://docs.ckan.org + :alt: Documentation +.. image:: https://img.shields.io/badge/support-StackOverflow-yellowgreen.svg?style=flat + :target: https://stackoverflow.com/questions/tagged/ckan + :alt: Support on StackOverflow + .. image:: https://secure.travis-ci.org/ckan/ckan.png?branch=master :target: http://travis-ci.org/ckan/ckan :alt: Build Status -.. image:: https://coveralls.io/repos/ckan/ckan/badge.png?branch=master - :target: https://coveralls.io/r/ckan/ckan +.. image:: https://coveralls.io/repos/github/ckan/ckan/badge.svg?branch=master + :target: https://coveralls.io/github/ckan/ckan?branch=master :alt: Coverage Status **CKAN is the world’s leading open-source data portal platform**. @@ -33,6 +44,9 @@ question first). If you've found a bug in CKAN, open a new issue on CKAN's `GitHub Issues`_ (try searching first to see if there's already an issue for your bug). +If you find a potential security vulnerability please email security@ckan.org, +rather than creating a public issue on GitHub. + .. _CKAN tag on Stack Overflow: http://stackoverflow.com/questions/tagged/ckan .. _ckan-discuss: http://lists.okfn.org/mailman/listinfo/ckan-discuss diff --git a/bin/postgres_init/1_create_ckan_db.sh b/bin/postgres_init/1_create_ckan_db.sh new file mode 100755 index 00000000000..bec5fe26a45 --- /dev/null +++ b/bin/postgres_init/1_create_ckan_db.sh @@ -0,0 +1,6 @@ +#!/bin/sh +psql -U postgres -c "CREATE USER ${CKAN_POSTGRES_USER} \ + WITH PASSWORD '${CKAN_POSTGRES_PWD}' \ + NOSUPERUSER NOCREATEDB NOCREATEROLE;" + +createdb -U postgres -e -O ${CKAN_POSTGRES_USER} ${CKAN_POSTGRES_DB} -E utf-8 diff --git a/bin/postgres_init/2_create_ckan_datastore_db.sh b/bin/postgres_init/2_create_ckan_datastore_db.sh new file mode 100755 index 00000000000..c775b5749a9 --- /dev/null +++ b/bin/postgres_init/2_create_ckan_datastore_db.sh @@ -0,0 +1,14 @@ +#!/bin/sh +if [ "${CKAN_DATASTORE_POSTGRES_DB}" ]; then + psql -U postgres -c "CREATE USER ${CKAN_DATASTORE_POSTGRES_READ_USER} \ + WITH PASSWORD '${CKAN_DATASTORE_POSTGRES_READ_PWD}' \ + NOSUPERUSER NOCREATEDB NOCREATEROLE;" + + if [ "${CKAN_DATASTORE_POSTGRES_WRITE_USER}" ] && [ "${CKAN_DATASTORE_POSTGRES_WRITE_PWD}" ]; then + psql -U postgres -c "CREATE USER ${CKAN_DATASTORE_POSTGRES_WRITE_USER} \ + WITH PASSWORD '${CKAN_DATASTORE_POSTGRES_WRITE_PWD}' \ + NOSUPERUSER NOCREATEDB NOCREATEROLE;" + fi + + createdb -U postgres -e -O ${CKAN_DATASTORE_POSTGRES_WRITE_USER} ${CKAN_DATASTORE_POSTGRES_DB} -E utf-8 +fi diff --git a/bin/solr_init/create_core.sh b/bin/solr_init/create_core.sh new file mode 100755 index 00000000000..2bb6d5bcd2a --- /dev/null +++ b/bin/solr_init/create_core.sh @@ -0,0 +1,11 @@ +#!/bin/sh +SOLR_HOME=${SOLR_HOME:-/opt/solr} +SOLR_URL=${SOLR_HOST:-http://localhost:8983} +SOLR_CORE=${SOLR_CORE:-ckan} +SOLR_SCHEMA=${SOLR_SCHEMA:-$HOME/ckan/ckan/config/solr/schema.xml} + +INSTANCE_DIR=$SOLR_HOME/example/solr/$SOLR_CORE +cp -R $SOLR_HOME/example/solr/collection1 $SOLR_HOME/example/solr/$SOLR_CORE +cp $SOLR_SCHEMA $SOLR_HOME/example/solr/$SOLR_CORE/conf + +curl "$SOLR_URL/solr/admin/cores?action=CREATE&name=$SOLR_CORE&instanceDir=$INSTANCE_DIR" \ No newline at end of file diff --git a/bin/travis-install-dependencies b/bin/travis-install-dependencies index d9dacfbcdc7..8b9b1430d8f 100755 --- a/bin/travis-install-dependencies +++ b/bin/travis-install-dependencies @@ -25,10 +25,8 @@ fi sudo service postgresql restart # Setup postgres' users and databases -sudo -u postgres psql -c "CREATE USER ckan_default WITH PASSWORD 'pass';" -sudo -u postgres psql -c "CREATE USER datastore_default WITH PASSWORD 'pass';" -sudo -u postgres psql -c 'CREATE DATABASE ckan_test WITH OWNER ckan_default;' -sudo -u postgres psql -c 'CREATE DATABASE datastore_test WITH OWNER ckan_default;' +sudo -E -u postgres ./bin/postgres_init/1_create_ckan_db.sh +sudo -E -u postgres ./bin/postgres_init/2_create_ckan_datastore_db.sh export PIP_USE_MIRRORS=true pip install -r requirements.txt --allow-all-external diff --git a/bin/travis-run-tests b/bin/travis-run-tests index 80c0ac44879..5f53b18640f 100755 --- a/bin/travis-run-tests +++ b/bin/travis-run-tests @@ -16,11 +16,11 @@ MOCHA_ERROR=$? killall paster # And finally, run the nosetests -nosetests --ckan --reset-db --with-pylons=test-core.ini --nologcapture --with-coverage ckan ckanext +nosetests --ckan --reset-db --with-pylons=test-core.ini --nologcapture --with-coverage --cover-package=ckan --cover-package=ckanext ckan ckanext # Did an error occur? NOSE_ERROR=$? -[ "0" -ne "$MOCHA_ERROR" ] && echo MOCKA tests have failed +[ "0" -ne "$MOCHA_ERROR" ] && echo MOCHA tests have failed [ "0" -ne "$NOSE_ERROR" ] && echo NOSE tests have failed # If an error occurred in our tests make sure travis knows diff --git a/circle.yml b/circle.yml new file mode 100644 index 00000000000..d9c321c9b77 --- /dev/null +++ b/circle.yml @@ -0,0 +1,64 @@ +machine: + + environment: + PIP_USE_MIRRORS: true + CKAN_POSTGRES_DB: ckan_test + CKAN_POSTGRES_USER: ckan_default + CKAN_POSTGRES_PWD: pass + CKAN_DATASTORE_POSTGRES_DB: datastore_test + CKAN_DATASTORE_POSTGRES_WRITE_USER: ckan_default + CKAN_DATASTORE_POSTGRES_READ_USER: datastore_default + CKAN_DATASTORE_POSTGRES_READ_PWD: pass + SOLR_HOME: $HOME/solr + + node: + version: 0.10.33 + +dependencies: + pre: + - "[ -e ~/.local/bin/circleci-matrix ] + || mkdir -p ~/.local/bin + && curl -fsSL https://raw.githubusercontent.com/michaelcontento/circleci-matrix/master/src/circleci-matrix.sh -o ~/.local/bin/circleci-matrix + && chmod +x ~/.local/bin/circleci-matrix" + + override: + - pip install -r requirements.txt --allow-all-external + - pip install -r dev-requirements.txt --allow-all-external + - python setup.py develop + + post: + - "[ -e ~/nvm/v0.10.33/lib/node_modules/mocha-phantomjs ] + || npm install -g mocha-phantomjs@3.5.0 phantomjs@~1.9.1" + + cache_directories: + - ~/.local/bin/circleci-matrix + - ~/nvm/v0.10.33/lib/node_modules/mocha-phantomjs + - ~/nvm/v0.10.33/lib/node_modules/phantomjs + - ~/nvm/v0.10.33/bin/mocha-phantomjs + - ~/nvm/v0.10.33/bin/phantomjs + +database: + post: + - sudo -E -u postgres ./bin/postgres_init/1_create_ckan_db.sh + - sudo -E -u postgres ./bin/postgres_init/2_create_ckan_datastore_db.sh + - sed -i -e 's/.*datastore.read_url.*/ckan.datastore.read_url = postgresql:\/\/datastore_default:pass@\/datastore_test/' test-core.ini + - paster datastore -c test-core.ini set-permissions | sudo -u postgres psql + + - cp -R /opt/solr-4.3.1 $SOLR_HOME + - cd $SOLR_HOME/example; java -jar start.jar >> $HOME/solr.log: + background: true + - while ! grep "Started" $HOME/solr.log; do sleep 0.1; done + - ./bin/solr_init/create_core.sh + + - paster db init -c test-core.ini + +test: + override: + - circleci-matrix: + parallel: true + + post: + - paster serve test-core.ini: + background: true + - sleep 5 + - mocha-phantomjs http://localhost:5000/base/test/index.html diff --git a/ckan/__init__.py b/ckan/__init__.py index 2cdfbbacca4..e798f015977 100644 --- a/ckan/__init__.py +++ b/ckan/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.5.0a' +__version__ = '2.6.0a' __description__ = 'CKAN Software' __long_description__ = \ diff --git a/ckan/authz.py b/ckan/authz.py index c95c85f5f1f..715127d8d9c 100644 --- a/ckan/authz.py +++ b/ckan/authz.py @@ -431,12 +431,6 @@ def auth_is_anon_user(context): See ckan/lib/base.py:232 for pylons context object logic ''' context_user = context.get('user') - # FIXME: our current pattern is to set context['user'] to - # the IP address in our controller code. Detect and - # ignore that case for now. Stop putting the IP address - # in context['user'] in a future ckan version. - if context_user and '.' in context_user: - context_user = None is_anon_user = not bool(context_user) return is_anon_user diff --git a/ckan/config/deployment.ini_tmpl b/ckan/config/deployment.ini_tmpl index 8eb7050591a..d25c9773804 100644 --- a/ckan/config/deployment.ini_tmpl +++ b/ckan/config/deployment.ini_tmpl @@ -107,7 +107,7 @@ ckan.views.default_views = image_view text_view recline_view ckan.site_title = CKAN ckan.site_logo = /base/images/ckan-logo.png ckan.site_description = -ckan.favicon = /images/icons/ckan.ico +ckan.favicon = /base/images/ckan.ico ckan.gravatar_default = identicon ckan.preview.direct = png jpg gif ckan.preview.loadable = html htm rdf+xml owl+xml xml n3 n-triples turtle plain atom csv tsv rss txt json @@ -151,7 +151,9 @@ ckan.feeds.author_link = # Resource Proxy settings # Preview size limit, default: 1MB -#ckan.resource_proxy.max_file_size = 1 * 1024 * 1024 +#ckan.resource_proxy.max_file_size = 1048576 +# Size of chunks to read/write. +#ckan.resource_proxy.chunk_size = 4096 ## Activity Streams Settings diff --git a/ckan/config/environment.py b/ckan/config/environment.py index 0bd9416d4df..131a794f18c 100644 --- a/ckan/config/environment.py +++ b/ckan/config/environment.py @@ -4,18 +4,15 @@ import logging import warnings from urlparse import urlparse +import pytz -import pylons -from paste.deploy.converters import asbool import sqlalchemy from pylons import config -from genshi.template import TemplateLoader -from genshi.filters.i18n import Translator import ckan.config.routing as routing import ckan.model as model import ckan.plugins as p -import ckan.lib.helpers as h +import ckan.lib.helpers as helpers import ckan.lib.app_globals as app_globals import ckan.lib.render as render import ckan.lib.search as search @@ -24,6 +21,7 @@ import ckan.lib.jinja_extensions as jinja_extensions from ckan.common import _, ungettext +from ckan.exceptions import CkanConfigurationException log = logging.getLogger(__name__) @@ -32,79 +30,11 @@ warnings.simplefilter('ignore', UserWarning) -class _Helpers(object): - ''' Helper object giving access to template helpers stopping - missing functions from causing template exceptions. Useful if - templates have helper functions provided by extensions that have - not been enabled. ''' - def __init__(self, helpers): - self.helpers = helpers - self._setup() - - def _setup(self): - helpers = self.helpers - functions = {} - allowed = helpers.__allowed_functions__[:] - # list of functions due to be deprecated - self.deprecated = [] - - for helper in dir(helpers): - if helper not in allowed: - self.deprecated.append(helper) - continue - functions[helper] = getattr(helpers, helper) - if helper in allowed: - allowed.remove(helper) - self.functions = functions - - if allowed: - raise Exception('Template helper function(s) `%s` not defined' - % ', '.join(allowed)) - - # extend helper functions with ones supplied by plugins - extra_helpers = [] - for plugin in p.PluginImplementations(p.ITemplateHelpers): - helpers = plugin.get_helpers() - for helper in helpers: - if helper in extra_helpers: - raise Exception('overwritting extra helper %s' % helper) - extra_helpers.append(helper) - functions[helper] = helpers[helper] - # logging - self.log = logging.getLogger('ckan.helpers') - - @classmethod - def null_function(cls, *args, **kw): - ''' This function is returned if no helper is found. The idea is - to try to allow templates to be rendered even if helpers are - missing. Returning the empty string seems to work well.''' - return '' - - def __getattr__(self, name): - ''' return the function/object requested ''' - if name in self.functions: - if name in self.deprecated: - msg = 'Template helper function `%s` is deprecated' % name - self.log.warn(msg) - return self.functions[name] - else: - if name in self.deprecated: - msg = ('Template helper function `{0}` is not available ' - 'because it has been deprecated.'.format(name)) - self.log.critical(msg) - else: - msg = 'Helper function `%s` could not be found\n ' \ - '(are you missing an extension?)' % name - self.log.critical(msg) - return self.null_function - - def load_environment(global_conf, app_conf): - """Configure the Pylons environment via the ``pylons.config`` - object. This code should only need to be run once. """ - - ###### Pylons monkey-patch + Configure the Pylons environment via the ``pylons.config`` object. This + code should only need to be run once. + """ # this must be run at a time when the env is semi-setup, thus inlined here. # Required by the deliverance plugin and iATI from pylons.wsgiapp import PylonsApp @@ -117,14 +47,19 @@ def find_controller(self, controller): return self.controller_classes[controller] # Check to see if its a dotted name if '.' in controller or ':' in controller: - mycontroller = pkg_resources \ - .EntryPoint \ - .parse('x=%s' % controller).load(False) + ep = pkg_resources.EntryPoint.parse('x={0}'.format(controller)) + + if hasattr(ep, 'resolve'): + # setuptools >= 10.2 + mycontroller = ep.resolve() + else: + # setuptools >= 11.3 + mycontroller = ep.load(False) + self.controller_classes[controller] = mycontroller return mycontroller return find_controller_generic(self, controller) PylonsApp.find_controller = find_controller - ###### END evil monkey-patch os.environ['CKAN_CONFIG'] = global_conf['__file__'] @@ -138,87 +73,6 @@ def find_controller(self, controller): # Initialize config with the basic options config.init_app(global_conf, app_conf, package='ckan', paths=paths) - ################################################################# - # # - # HORRIBLE GENSHI HACK # - # # - ################################################################# - # # - # Genshi does strange things to get stuff out of the template # - # variables. This stops it from handling properties in the # - # correct way as it returns the property rather than the actual # - # value of the property. # - # # - # By overriding lookup_attr() in the LookupBase class we are # - # able to get the required behaviour. Using @property allows # - # us to move functionality out of templates whilst maintaining # - # backwards compatability. # - # # - ################################################################# - - ''' - This code is based on Genshi code - - Copyright © 2006-2012 Edgewall Software - All rights reserved. - - Redistribution and use in source and binary forms, with or - without modification, are permitted provided that the following - conditions are met: - - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - The name of the author may not be used to endorse or promote - products derived from this software without specific prior - written permission. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ''' - from genshi.template.eval import LookupBase - - @classmethod - def genshi_lookup_attr(cls, obj, key): - __traceback_hide__ = True - try: - val = getattr(obj, key) - except AttributeError: - if hasattr(obj.__class__, key): - raise - else: - try: - val = obj[key] - except (KeyError, TypeError): - val = cls.undefined(key, owner=obj) - if isinstance(val, property): - val = val.fget() - return val - - setattr(LookupBase, 'lookup_attr', genshi_lookup_attr) - del genshi_lookup_attr - del LookupBase - - ################################################################# - # # - # END OF GENSHI HACK # - # # - ################################################################# - # Setup the SQLAlchemy database engine # Suppress a couple of sqlalchemy warnings msgs = ['^Unicode type received non-unicode bind param value', @@ -291,6 +145,14 @@ def update_config(): 'ckan.site_url should be a full URL, including the schema ' '(http or https)') + display_timezone = config.get('ckan.display_timezone', '') + if (display_timezone and + display_timezone != 'server' and + display_timezone not in pytz.all_timezones): + raise CkanConfigurationException( + "ckan.display_timezone is not 'server' or a valid timezone" + ) + # Remove backslash from site_url if present config['ckan.site_url'] = config['ckan.site_url'].rstrip('/') @@ -303,11 +165,11 @@ def update_config(): config['ckan.site_id'] = ckan_host # ensure that a favicon has been set - favicon = config.get('ckan.favicon', '/images/icons/ckan.ico') + favicon = config.get('ckan.favicon', '/base/images/ckan.ico') config['ckan.favicon'] = favicon # Init SOLR settings and check if the schema is compatible - #from ckan.lib.search import SolrSettings, check_solr_schema_version + # from ckan.lib.search import SolrSettings, check_solr_schema_version # lib.search is imported here as we need the config enabled and parsed search.SolrSettings.init(config.get('solr_url'), @@ -325,24 +187,11 @@ def update_config(): # initialise the globals config['pylons.app_globals']._init() - # add helper functions - helpers = _Helpers(h) - config['pylons.h'] = helpers + helpers.load_plugin_helpers() + config['pylons.h'] = helpers.helper_functions - ## redo template setup to use genshi.search_path - ## (so remove std template setup) - legacy_templates_path = os.path.join(root, 'templates_legacy') jinja2_templates_path = os.path.join(root, 'templates') - if asbool(config.get('ckan.legacy_templates', 'no')): - # We want the new template path for extra snippets like the - # dataviewer and also for some testing stuff - msg = 'Support for Genshi templates is deprecated and will be removed'\ - ' in a future release' - log.warn(msg) - - template_paths = [legacy_templates_path, jinja2_templates_path] - else: - template_paths = [jinja2_templates_path, legacy_templates_path] + template_paths = [jinja2_templates_path] extra_template_paths = config.get('extra_template_paths', '') if extra_template_paths: @@ -350,21 +199,11 @@ def update_config(): template_paths = extra_template_paths.split(',') + template_paths config['pylons.app_globals'].template_paths = template_paths - # Translator (i18n) - translator = Translator(pylons.translator) - - def template_loaded(template): - translator.setup(template) - # Markdown ignores the logger config, so to get rid of excessive # markdown debug messages in the log, set it to the level of the # root logger. logging.getLogger("MARKDOWN").setLevel(logging.getLogger().level) - # Create the Genshi TemplateLoader - config['pylons.app_globals'].genshi_loader = TemplateLoader( - template_paths, auto_reload=True, callback=template_loaded) - # Create Jinja2 environment env = jinja_extensions.Environment( loader=jinja_extensions.CkanFileSystemLoader(template_paths), diff --git a/ckan/config/middleware.py b/ckan/config/middleware.py index 75aa4f8a15a..7b4a17f88ff 100644 --- a/ckan/config/middleware.py +++ b/ckan/config/middleware.py @@ -20,6 +20,14 @@ from repoze.who.middleware import PluggableAuthenticationMiddleware from fanstatic import Fanstatic +from wsgi_party import WSGIParty, HighAndDry +from flask import Flask +from flask import abort as flask_abort +from flask import request as flask_request +from flask import _request_ctx_stack +from werkzeug.exceptions import HTTPException +from werkzeug.test import create_environ, run_wsgi_app + from ckan.plugins import PluginImplementations from ckan.plugins.interfaces import IMiddleware from ckan.lib.i18n import get_locales_from_config @@ -32,6 +40,19 @@ def make_app(conf, full_stack=True, static_files=True, **app_conf): + + # :::TODO::: like the flask app, make the pylons app respond to invites at + # /__invite__/, and handle can_handle_request requests. + + pylons_app = make_pylons_stack(conf, full_stack, static_files, **app_conf) + flask_app = make_flask_stack(conf) + + app = AskAppDispatcherMiddleware({'pylons_app': pylons_app, 'flask_app': flask_app}) + + return app + + +def make_pylons_stack(conf, full_stack=True, static_files=True, **app_conf): """Create a Pylons WSGI application and return it ``conf`` @@ -74,7 +95,7 @@ def make_app(conf, full_stack=True, static_files=True, **app_conf): app = CacheMiddleware(app, config) # CUSTOM MIDDLEWARE HERE (filtered by error handling middlewares) - #app = QueueLogMiddleware(app) + # app = QueueLogMiddleware(app) if asbool(config.get('ckan.use_pylons_response_cleanup_middleware', True)): app = execute_on_completion(app, config, cleanup_pylons_response_string) @@ -108,12 +129,12 @@ def make_app(conf, full_stack=True, static_files=True, **app_conf): # Handle Python exceptions app = ErrorHandler(app, conf, **config['pylons.errorware']) - # Display error documents for 401, 403, 404 status codes (and + # Display error documents for 400, 403, 404 status codes (and # 500 when debug is disabled) if asbool(config['debug']): - app = StatusCodeRedirect(app, [400, 404]) + app = StatusCodeRedirect(app, [400, 403, 404]) else: - app = StatusCodeRedirect(app, [400, 404, 500]) + app = StatusCodeRedirect(app, [400, 403, 404, 500]) # Initialize repoze.who who_parser = WhoConfig(conf['here']) @@ -152,7 +173,7 @@ def make_app(conf, full_stack=True, static_files=True, **app_conf): try: os.makedirs(path) except OSError, e: - ## errno 17 is file already exists + # errno 17 is file already exists if e.errno != 17: raise @@ -180,6 +201,155 @@ def make_app(conf, full_stack=True, static_files=True, **app_conf): return app +def make_flask_stack(conf): + """ This has to pass the flask app through all the same middleware that + Pylons used """ + + app = CKANFlask(__name__) + + @app.route('/hello', methods=['GET']) + def hello_world(): + return 'Hello World, this is served by Flask' + + @app.route('/hello', methods=['POST']) + def hello_world_post(): + return 'Hello World, this was posted to Flask' + + return app + + +class CKANFlask(Flask): + + '''Extend the Flask class with a special view to join the 'partyline' + established by AskAppDispatcherMiddleware. + + Also provide a 'can_handle_request' method. + ''' + + def __init__(self, import_name, *args, **kwargs): + super(CKANFlask, self).__init__(import_name, *args, **kwargs) + self.add_url_rule('/__invite__/', endpoint='partyline', + view_func=self.join_party) + self.partyline = None + self.partyline_connected = False + self.invitation_context = None + self.app_name = None # A label for the app handling this request + # (this app). + + def join_party(self, request=flask_request): + # Bootstrap, turn the view function into a 404 after registering. + if self.partyline_connected: + # This route does not exist at the HTTP level. + flask_abort(404) + self.invitation_context = _request_ctx_stack.top + self.partyline = request.environ.get(WSGIParty.partyline_key) + self.app_name = request.environ.get('partyline_handling_app') + self.partyline.connect('can_handle_request', self.can_handle_request) + self.partyline_connected = True + return 'ok' + + def can_handle_request(self, environ): + ''' + Decides whether it can handle a request with the Flask app by + matching the request environ against the route mapper + + Returns (True, 'flask_app') if this is the case. + ''' + + # TODO: identify matching urls as core or extension. This will depend + # on how we setup routing in Flask + + urls = self.url_map.bind_to_environ(environ) + try: + endpoint, args = urls.match() + log.debug('Flask route match, endpoint: {0}, args: {1}'.format( + endpoint, args)) + return (True, self.app_name) + except HTTPException: + raise HighAndDry() + + +class AskAppDispatcherMiddleware(WSGIParty): + + ''' + Establish a 'partyline' to each provided app. Select which app to call + by asking each if they can handle the requested path at PATH_INFO. + + Used to help transition from Pylons to Flask, and should be removed once + Pylons has been deprecated and all app requests are handled by Flask. + + Each app should handle a call to 'can_handle_request(environ)', responding + with a tuple: + (, , []) + where: + `bool` is True if the app can handle the payload url, + `app` is the wsgi app returning the answer + `origin` is an optional string to determine where in the app the url + will be handled, e.g. 'core' or 'extension'. + + Order of precedence if more than one app can handle a url: + Flask Extension > Pylons Extension > Flask Core > Pylons Core + ''' + + def __init__(self, apps=None, invites=(), ignore_missing_services=False): + # Dict of apps managed by this middleware {: , ...} + self.apps = apps or {} + + # A dict of service name => handler mappings. + self.handlers = {} + + # If True, suppress :class:`NoSuchServiceName` errors. Default: False. + self.ignore_missing_services = ignore_missing_services + + self.send_invitations(apps) + + def send_invitations(self, apps): + '''Call each app at the invite route to establish a partyline. Called + on init.''' + PATH = '/__invite__/' + for app_name, app in apps.items(): + environ = create_environ(path=PATH) + environ[self.partyline_key] = self.operator_class(self) + # A reference to the handling app. Used to id the app when + # responding to a handling request. + environ['partyline_handling_app'] = app_name + run_wsgi_app(app, environ) + + def __call__(self, environ, start_response): + '''Determine which app to call by asking each app if it can handle the + url and method defined on the eviron''' + # :::TODO::: Enforce order of precedence for dispatching to apps here. + + app_name = 'pylons_app' # currently defaulting to pylons app + answers = self.ask_around('can_handle_request', environ) + log.debug('Route support answers for {0} {1}: {2}'.format( + environ.get('REQUEST_METHOD'), environ.get('PATH_INFO'), + answers)) + available_handlers = [] + for answer in answers: + if len(answer) == 2: + can_handle, asked_app = answer + origin = 'core' + else: + can_handle, asked_app, origin = answer + if can_handle: + available_handlers.append('{0}_{1}'.format(asked_app, origin)) + + # Enforce order of precedence: + # Flask Extension > Pylons Extension > Flask Core > Pylons Core + if available_handlers: + if 'flask_app_extension' in available_handlers: + app_name = 'flask_app' + elif 'pylons_app_extension' in available_handlers: + app_name = 'pylons_app' + elif 'flask_app_core' in available_handlers: + app_name = 'flask_app' + + log.debug('Serving request via {0} app'.format(app_name)) + environ['ckan.app'] = app_name + return self.apps[app_name](environ, start_response) + + class I18nMiddleware(object): """I18n Middleware selects the language based on the url eg /fr/home is French""" diff --git a/ckan/config/resource_formats.json b/ckan/config/resource_formats.json index 74452820782..ccdc0039513 100644 --- a/ckan/config/resource_formats.json +++ b/ckan/config/resource_formats.json @@ -10,9 +10,9 @@ ], ["PPTX", "Powerpoint OOXML Presentation", "application/vnd.openxmlformats-officedocument.presentationml.presentation", []], ["EXE", "Windows Executable Program", "application/x-msdownload", []], - ["DOC", "Word Document", "application/ms-word", []], + ["DOC", "Word Document", "application/msword", []], ["KML", "KML File", "application/vnd.google-earth.kml+xml", []], - ["XLS", "Excel Document", "application/vnd.ms-excel", []], + ["XLS", "Excel Document", "application/vnd.ms-excel", ["Excel", "application/msexcel", "application/x-msexcel", "application/x-ms-excel", "application/x-excel", "application/x-dos_ms_excel", "application/xls", "application/x-xls"]], ["WCS", "Web Coverage Service", "wcs", []], ["JS", "JavaScript", "application/x-javascript", []], ["MDB", "Access Database", "application/x-msaccess", []], @@ -20,6 +20,7 @@ ["ArcGIS Map Service", "ArcGIS Map Service", "ArcGIS Map Service", ["arcgis map service"]], ["TSV", "Tab Separated Values File", "text/tab-separated-values", ["text/tsv"]], ["WFS", "Web Feature Service", null, []], + ["WMTS", "Web Map Tile Service", null, []], ["ArcGIS Online Map", "ArcGIS Online Map", "ArcGIS Online Map", ["web map application"]], ["Perl", "Perl Script", "text/x-perl", []], ["KMZ", "KMZ File", "application/vnd.google-earth.kmz+xml", ["application/vnd.google-earth.kmz"]], @@ -69,5 +70,7 @@ ["PNG", "PNG Image File", "image/png", []], ["RSS", "RSS feed", "application/rss+xml", []], ["GeoJSON", "Geographic JavaScript Object Notation", null, []], - ["SHP", "Shapefile", null, ["esri shapefile"]] + ["SHP", "Shapefile", null, ["esri shapefile"]], + ["TORRENT", "Torrent", "application/x-bittorrent", ["bittorrent"]], + ["ICS", "iCalendar", "text/calendar", ["ifb", "iCal"]] ] diff --git a/ckan/config/routing.py b/ckan/config/routing.py index 9cfab2d6393..15a879fe5dd 100644 --- a/ckan/config/routing.py +++ b/ckan/config/routing.py @@ -31,7 +31,8 @@ def connect(self, *args, **kw): Also takes some additional params: :param ckan_icon: name of the icon to be associated with this route, - e.g. 'group', 'time' + e.g. 'group', 'time'. Available icons are listed here: + http://fortawesome.github.io/Font-Awesome/3.2.1/icons/ :type ckan_icon: string :param highlight_actions: space-separated list of controller actions that should be treated as the same as this named route for menu @@ -39,9 +40,14 @@ def connect(self, *args, **kw): :type highlight_actions: string ''' + ckan_icon = kw.pop('ckan_icon', None) highlight_actions = kw.pop('highlight_actions', kw.get('action', '')) + ckan_core = kw.pop('ckan_core', None) out = _Mapper.connect(self, *args, **kw) + route = self.matchlist[-1] + if ckan_core is not None: + route._ckan_core = ckan_core if len(args) == 1 or args[0].startswith('_redirect_'): return out # we have a named route @@ -87,16 +93,24 @@ def make_map(): # The ErrorController route (handles 404/500 error pages); it should # likely stay at the top, ensuring it can always be resolved. - map.connect('/error/{action}', controller='error') - map.connect('/error/{action}/{id}', controller='error') + map.connect('/error/{action}', controller='error', ckan_core=True) + map.connect('/error/{action}/{id}', controller='error', ckan_core=True) map.connect('*url', controller='home', action='cors_options', - conditions=OPTIONS) + conditions=OPTIONS, ckan_core=True) # CUSTOM ROUTES HERE for plugin in p.PluginImplementations(p.IRoutes): map = plugin.before_map(map) + # Mark all routes added from extensions on the `before_map` extension point + # as non-core + for route in map.matchlist: + if not hasattr(route, '_ckan_core'): + route._ckan_core = False + + map.connect('invite', '/__invite__/', controller='partyline', action='join_party') + map.connect('home', '/', controller='home', action='index') map.connect('about', '/about', controller='home', action='about') @@ -107,7 +121,6 @@ def make_map(): 'resource', 'tag', 'group', - 'related', 'revision', 'licenses', 'rating', @@ -233,7 +246,6 @@ def make_map(): m.connect('/dataset/activity/{id}/{offset}', action='activity') m.connect('dataset_groups', '/dataset/groups/{id}', action='groups', ckan_icon='group') - m.connect('/dataset/{id}.{format}', action='read') m.connect('dataset_resources', '/dataset/resources/{id}', action='resources', ckan_icon='reorder') m.connect('dataset_read', '/dataset/{id}', action='read', @@ -316,7 +328,7 @@ def make_map(): 'member_delete', 'history' ]))) - m.connect('organization_activity', '/organization/activity/{id}', + m.connect('organization_activity', '/organization/activity/{id}/{offset}', action='activity', ckan_icon='time') m.connect('organization_read', '/organization/{id}', action='read') m.connect('organization_about', '/organization/about/{id}', @@ -414,15 +426,26 @@ def make_map(): m.connect('/testing/primer', action='primer') m.connect('/testing/markup', action='markup') + # Mark all unmarked routes added up until now as core routes + for route in map.matchlist: + if not hasattr(route, '_ckan_core'): + route._ckan_core = True + for plugin in p.PluginImplementations(p.IRoutes): map = plugin.after_map(map) + # Mark all routes added from extensions on the `after_map` extension point + # as non-core + for route in map.matchlist: + if not hasattr(route, '_ckan_core'): + route._ckan_core = False + # sometimes we get requests for favicon.ico we should redirect to # the real favicon location. map.redirect('/favicon.ico', config.get('ckan.favicon')) map.redirect('/*(url)/', '/{url}', _redirect_code='301 Moved Permanently') - map.connect('/*url', controller='template', action='view') + map.connect('/*url', controller='template', action='view', ckan_core=True) return map diff --git a/ckan/config/solr/schema.xml b/ckan/config/solr/schema.xml index a46115c0d04..e8893f70ff9 100644 --- a/ckan/config/solr/schema.xml +++ b/ckan/config/solr/schema.xml @@ -41,6 +41,13 @@ schema. In this case the version should be set to the next CKAN version number. + + + + + + + diff --git a/ckan/controllers/admin.py b/ckan/controllers/admin.py index 5d103a1e054..079294cf1c3 100644 --- a/ckan/controllers/admin.py +++ b/ckan/controllers/admin.py @@ -28,7 +28,7 @@ def __before__(self, action, **params): try: logic.check_access('sysadmin', context, {}) except logic.NotAuthorized: - base.abort(401, _('Need to be system administrator to administer')) + base.abort(403, _('Need to be system administrator to administer')) c.revision_change_state_allowed = True def _get_config_form_items(self): diff --git a/ckan/controllers/api.py b/ckan/controllers/api.py index 84f7e0af437..de734483b86 100644 --- a/ckan/controllers/api.py +++ b/ckan/controllers/api.py @@ -52,7 +52,7 @@ def __call__(self, environ, start_response): self._identify_user() try: - context = {'model': model, 'user': c.user or c.author, + context = {'model': model, 'user': c.user, 'auth_user_obj': c.userobj} logic.check_access('site_read', context) except NotAuthorized: @@ -197,6 +197,10 @@ def action(self, logic_function, ver=None): # if callback is specified we do not want to send that to the search if 'callback' in request_data: del request_data['callback'] + c.user = None + c.userobj = None + context['user'] = None + context['auth_user_obj'] = None try: result = function(context, request_data) return_dict['success'] = True @@ -277,7 +281,6 @@ def list(self, ver=None, register=None, subregister=None, id=None): 'group': 'group_list', 'dataset': 'package_list', 'tag': 'tag_list', - 'related': 'related_list', 'licenses': 'license_list', ('dataset', 'relationships'): 'package_relationships_list', ('dataset', 'revisions'): 'package_revision_list', @@ -305,7 +308,6 @@ def show(self, ver=None, register=None, subregister=None, 'revision': 'revision_show', 'group': 'group_show_rest', 'tag': 'tag_show_rest', - 'related': 'related_show', 'dataset': 'package_show_rest', ('dataset', 'relationships'): 'package_relationships_list', } @@ -340,7 +342,6 @@ def create(self, ver=None, register=None, subregister=None, 'group': 'group_create_rest', 'dataset': 'package_create_rest', 'rating': 'rating_create', - 'related': 'related_create', ('dataset', 'relationships'): 'package_relationship_create_rest', } for type in model.PackageRelationship.get_all_types(): @@ -455,7 +456,6 @@ def delete(self, ver=None, register=None, subregister=None, action_map = { 'group': 'group_delete', 'dataset': 'package_delete', - 'related': 'related_delete', ('dataset', 'relationships'): 'package_relationship_delete_rest', } for type in model.PackageRelationship.get_all_types(): @@ -618,7 +618,7 @@ def tag_counts(self, ver=None): c.q = request.params.get('q', '') context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} tag_names = get_action('tag_list')(context, {}) results = [] @@ -653,7 +653,7 @@ def user_autocomplete(self): user_list = [] if q: context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'q': q, 'limit': limit} @@ -730,7 +730,7 @@ def dataset_autocomplete(self): package_dicts = [] if q: context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'q': q, 'limit': limit} @@ -747,7 +747,7 @@ def tag_autocomplete(self): tag_names = [] if q: context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'q': q, 'limit': limit} @@ -766,7 +766,7 @@ def format_autocomplete(self): formats = [] if q: context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'q': q, 'limit': limit} formats = get_action('format_autocomplete')(context, data_dict) @@ -893,7 +893,8 @@ def make_unicode(entity): cls.log.debug('Retrieved request body: %r', request.body) if not request_data: if not try_url_params: - msg = "No request body data" + msg = "Invalid request. Please use POST method" \ + " for your request" raise ValueError(msg) else: request_data = {} diff --git a/ckan/controllers/error.py b/ckan/controllers/error.py index 57180dc7289..b1bc2a73b27 100644 --- a/ckan/controllers/error.py +++ b/ckan/controllers/error.py @@ -29,8 +29,14 @@ def document(self): if not original_response: return 'There is no error.' # Bypass error template for API operations. - if original_request and original_request.path.startswith('/api'): + if (original_request and + (original_request.path.startswith('/api') or + original_request.path.startswith('/fanstatic'))): return original_response.body + # If the charset has been lost on the middleware stack, use the + # default one (utf-8) + if not original_response.charset and original_response.default_charset: + original_response.charset = original_response.default_charset # Otherwise, decorate original response with error template. c.content = literal(original_response.unicode_body) or \ cgi.escape(request.GET.get('message', '')) diff --git a/ckan/controllers/feed.py b/ckan/controllers/feed.py index 88d83d696ff..8720e5d2535 100644 --- a/ckan/controllers/feed.py +++ b/ckan/controllers/feed.py @@ -46,7 +46,7 @@ def _package_search(data_dict): * unless overridden, sets a default item limit """ context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} if 'sort' not in data_dict or not data_dict['sort']: data_dict['sort'] = 'metadata_modified desc' @@ -217,7 +217,7 @@ def _group_or_organization(self, obj_dict, is_org): def group(self, id): try: context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} group_dict = logic.get_action('group_show')(context, {'id': id}) except logic.NotFound: base.abort(404, _('Group not found')) @@ -227,7 +227,7 @@ def group(self, id): def organization(self, id): try: context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} group_dict = logic.get_action('organization_show')(context, {'id': id}) except logic.NotFound: diff --git a/ckan/controllers/group.py b/ckan/controllers/group.py index 515db88758f..61f6a76b20f 100644 --- a/ckan/controllers/group.py +++ b/ckan/controllers/group.py @@ -127,8 +127,6 @@ def _guess_group_type(self, expecting_name=False): idx = -2 gt = parts[idx] - if gt == 'group': - gt = None return gt @@ -154,7 +152,7 @@ def index(self): items_per_page = 21 context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'for_view': True, + 'user': c.user, 'for_view': True, 'with_private': False} q = c.q = request.params.get('q', '') @@ -162,7 +160,7 @@ def index(self): try: self._check_access('site_read', context) except NotAuthorized: - abort(401, _('Not authorized to see this page')) + abort(403, _('Not authorized to see this page')) # pass user info to context as needed to view private datasets of # orgs correctly @@ -206,10 +204,10 @@ def read(self, id, limit=20): id.split('@')[0]) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'schema': self._db_to_form_schema(group_type=group_type), 'for_view': True} - data_dict = {'id': id} + data_dict = {'id': id, 'type': group_type} # unicode format (decoded from utf8) c.q = request.params.get('q', '') @@ -220,10 +218,8 @@ def read(self, id, limit=20): data_dict['include_datasets'] = False c.group_dict = self._action('group_show')(context, data_dict) c.group = context['group'] - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Group not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read group %s') % id) self._read(id, limit, group_type) return render(self._read_template(c.group_dict['type']), @@ -232,7 +228,7 @@ def read(self, id, limit=20): def _read(self, id, limit, group_type): ''' This is common code used by both read and bulk_process''' context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'schema': self._db_to_form_schema(group_type=group_type), 'for_view': True, 'extras_as_string': True} @@ -248,10 +244,6 @@ def _read(self, id, limit, group_type): context['return_query'] = True - # c.group_admins is used by CKAN's legacy (Genshi) templates only, - # if we drop support for those then we can delete this line. - c.group_admins = authz.get_group_or_org_admin_ids(c.group.id) - page = self._get_page_number(request.params) # most search operations should reset the page counter: @@ -395,10 +387,10 @@ def bulk_process(self, id): # check we are org admin context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'schema': self._db_to_form_schema(group_type=group_type), 'for_view': True, 'extras_as_string': True} - data_dict = {'id': id} + data_dict = {'id': id, 'type': group_type} try: # Do not query for the group datasets when dictizing, as they will @@ -406,10 +398,8 @@ def bulk_process(self, id): data_dict['include_datasets'] = False c.group_dict = self._action('group_show')(context, data_dict) c.group = context['group'] - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Group not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read group %s') % id) #use different form names so that ie7 can be detected form_names = set(["bulk_action.public", "bulk_action.delete", @@ -452,7 +442,7 @@ def bulk_process(self, id): try: get_action(action_functions[action])(context, data_dict) except NotAuthorized: - abort(401, _('Not authorized to perform bulk update')) + abort(403, _('Not authorized to perform bulk update')) base.redirect(h.url_for(controller='organization', action='bulk_process', id=id)) @@ -466,13 +456,13 @@ def new(self, data=None, errors=None, error_summary=None): data['type'] = group_type context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'save': 'save' in request.params, 'parent': request.params.get('parent', None)} try: self._check_access('group_create', context) except NotAuthorized: - abort(401, _('Unauthorized to create a group')) + abort(403, _('Unauthorized to create a group')) if context['save'] and not data: return self._save_new(context, group_type) @@ -498,7 +488,7 @@ def edit(self, id, data=None, errors=None, error_summary=None): id.split('@')[0]) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'save': 'save' in request.params, 'for_edit': True, 'parent': request.params.get('parent', None) @@ -514,10 +504,8 @@ def edit(self, id, data=None, errors=None, error_summary=None): c.grouptitle = old_data.get('title') c.groupname = old_data.get('name') data = data or old_data - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Group not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read group %s') % '') group = context.get("group") c.group = group @@ -526,7 +514,7 @@ def edit(self, id, data=None, errors=None, error_summary=None): try: self._check_access('group_update', context) except NotAuthorized: - abort(401, _('User %r not authorized to edit %s') % (c.user, id)) + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) errors = errors or {} vars = {'data': data, 'errors': errors, @@ -538,16 +526,6 @@ def edit(self, id, data=None, errors=None, error_summary=None): return render(self._edit_template(c.group.type), extra_vars={'group_type': group_type}) - def _get_group_type(self, id): - """ - Given the id of a group it determines the type of a group given - a valid id/name for the group. - """ - group = model.Group.get(id) - if not group: - return None - return group.type - def _save_new(self, context, group_type=None): try: data_dict = clean_dict(dict_fns.unflatten( @@ -559,9 +537,7 @@ def _save_new(self, context, group_type=None): # Redirect to the appropriate _read route for the type of group h.redirect_to(group['type'] + '_read', id=group['name']) - except NotAuthorized: - abort(401, _('Unauthorized to read group %s') % '') - except NotFound, e: + except (NotFound, NotAuthorized), e: abort(404, _('Group not found')) except dict_fns.DataError: abort(400, _(u'Integrity Error')) @@ -591,9 +567,7 @@ def _save_edit(self, id, context): self._force_reindex(group) h.redirect_to('%s_read' % group['type'], id=group['name']) - except NotAuthorized: - abort(401, _('Unauthorized to read group %s') % id) - except NotFound, e: + except (NotFound, NotAuthorized), e: abort(404, _('Group not found')) except dict_fns.DataError: abort(400, _(u'Integrity Error')) @@ -614,14 +588,14 @@ def authz(self, id): try: context = \ - {'model': model, 'user': c.user or c.author, 'group': group} + {'model': model, 'user': c.user, 'group': group} self._check_access('group_edit_permissions', context) c.authz_editable = True c.group = context['group'] except NotAuthorized: c.authz_editable = False if not c.authz_editable: - abort(401, + abort(403, _('User %r not authorized to edit %s authorizations') % (c.user, id)) @@ -637,12 +611,12 @@ def delete(self, id): self._redirect_to_this_controller(action='edit', id=id) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author} + 'user': c.user} try: self._check_access('group_delete', context, {'id': id}) except NotAuthorized: - abort(401, _('Unauthorized to delete group %s') % '') + abort(403, _('Unauthorized to delete group %s') % '') try: if request.method == 'POST': @@ -657,7 +631,7 @@ def delete(self, id): self._redirect_to_this_controller(action='index') c.group_dict = self._action('group_show')(context, {'id': id}) except NotAuthorized: - abort(401, _('Unauthorized to delete group %s') % '') + abort(403, _('Unauthorized to delete group %s') % '') except NotFound: abort(404, _('Group not found')) return self._render_template('group/confirm_delete.html', group_type) @@ -666,7 +640,7 @@ def members(self, id): group_type = self._ensure_controller_matches_group_type(id) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author} + 'user': c.user} try: c.members = self._action('member_list')( @@ -675,9 +649,7 @@ def members(self, id): data_dict = {'id': id} data_dict['include_datasets'] = False c.group_dict = self._action('group_show')(context, data_dict) - except NotAuthorized: - abort(401, _('Unauthorized to delete group %s') % '') - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Group not found')) return self._render_template('group/members.html', group_type) @@ -685,7 +657,7 @@ def member_new(self, id): group_type = self._ensure_controller_matches_group_type(id) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author} + 'user': c.user} #self._check_access('group_delete', context, {'id': id}) try: @@ -728,7 +700,7 @@ def member_new(self, id): else: c.user_role = 'member' except NotAuthorized: - abort(401, _('Unauthorized to add member to group %s') % '') + abort(403, _('Unauthorized to add member to group %s') % '') except NotFound: abort(404, _('Group not found')) except ValidationError, e: @@ -742,12 +714,12 @@ def member_delete(self, id): self._redirect_to_this_controller(action='members', id=id) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author} + 'user': c.user} try: self._check_access('group_member_delete', context, {'id': id}) except NotAuthorized: - abort(401, _('Unauthorized to delete group %s members') % '') + abort(403, _('Unauthorized to delete group %s members') % '') try: user_id = request.params.get('user') @@ -760,7 +732,7 @@ def member_delete(self, id): c.user_id = user_id c.group_id = id except NotAuthorized: - abort(401, _('Unauthorized to delete group %s') % '') + abort(403, _('Unauthorized to delete group %s members') % '') except NotFound: abort(404, _('Group not found')) return self._render_template('group/confirm_delete_member.html', @@ -784,7 +756,7 @@ def history(self, id): h.redirect_to(controller='revision', action='diff', **params) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'schema': self._db_to_form_schema()} data_dict = {'id': id} try: @@ -794,10 +766,8 @@ def history(self, id): #TODO: remove # Still necessary for the authz check in group/layout.html c.group = context['group'] - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Group not found')) - except NotAuthorized: - abort(401, _('User %r not authorized to edit %r') % (c.user, id)) format = request.params.get('format', '') if format == 'atom': @@ -850,15 +820,11 @@ def activity(self, id, offset=0): group_type = self._ensure_controller_matches_group_type(id) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'for_view': True} + 'user': c.user, 'for_view': True} try: c.group_dict = self._get_group_dict(id) - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Group not found')) - except NotAuthorized: - abort(401, - _('Unauthorized to read group {group_id}').format( - group_id=id)) # Add the group's activity stream (already rendered to HTML) to the # template context for the group/read.html template to retrieve later. @@ -873,7 +839,7 @@ def follow(self, id): self._ensure_controller_matches_group_type(id) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author} + 'user': c.user} data_dict = {'id': id} try: get_action('follow_group')(context, data_dict) @@ -893,7 +859,7 @@ def unfollow(self, id): self._ensure_controller_matches_group_type(id) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author} + 'user': c.user} data_dict = {'id': id} try: get_action('unfollow_group')(context, data_dict) @@ -912,13 +878,13 @@ def unfollow(self, id): def followers(self, id): group_type = self._ensure_controller_matches_group_type(id) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author} + 'user': c.user} c.group_dict = self._get_group_dict(id) try: c.followers = \ get_action('group_follower_list')(context, {'id': id}) except NotAuthorized: - abort(401, _('Unauthorized to view followers %s') % '') + abort(403, _('Unauthorized to view followers %s') % '') return render('group/followers.html', extra_vars={'group_type': group_type}) @@ -932,7 +898,7 @@ def admins(self, id): def about(self, id): group_type = self._ensure_controller_matches_group_type(id) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author} + 'user': c.user} c.group_dict = self._get_group_dict(id) group_type = c.group_dict['type'] self._setup_template_variables(context, {'id': id}, @@ -944,12 +910,10 @@ def _get_group_dict(self, id): ''' returns the result of group_show action or aborts if there is a problem ''' context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'for_view': True} try: return self._action('group_show')( context, {'id': id, 'include_datasets': False}) - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Group not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read group %s') % id) diff --git a/ckan/controllers/home.py b/ckan/controllers/home.py index f297f06655f..3f76427c36c 100644 --- a/ckan/controllers/home.py +++ b/ckan/controllers/home.py @@ -19,11 +19,11 @@ class HomeController(base.BaseController): def __before__(self, action, **env): try: base.BaseController.__before__(self, action, **env) - context = {'model': model, 'user': c.user or c.author, + context = {'model': model, 'user': c.user, 'auth_user_obj': c.userobj} logic.check_access('site_read', context) except logic.NotAuthorized: - base.abort(401, _('Not authorized to see this page')) + base.abort(403, _('Not authorized to see this page')) except (sqlalchemy.exc.ProgrammingError, sqlalchemy.exc.OperationalError), e: # postgres and sqlite errors for missing tables @@ -41,7 +41,7 @@ def index(self): try: # package search context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} data_dict = { 'q': '*:*', 'facet.field': g.facets, diff --git a/ckan/controllers/package.py b/ckan/controllers/package.py index 3b26cc0a433..4564d741cc8 100644 --- a/ckan/controllers/package.py +++ b/ckan/controllers/package.py @@ -13,7 +13,6 @@ import ckan.lib.maintain as maintain import ckan.lib.i18n as i18n import ckan.lib.navl.dictization_functions as dict_fns -import ckan.lib.accept as accept import ckan.lib.helpers as h import ckan.model as model import ckan.lib.datapreview as datapreview @@ -131,16 +130,16 @@ def _guess_package_type(self, expecting_name=False): return pt def search(self): - from ckan.lib.search import SearchError + from ckan.lib.search import SearchError, SearchQueryError package_type = self._guess_package_type() try: - context = {'model': model, 'user': c.user or c.author, + context = {'model': model, 'user': c.user, 'auth_user_obj': c.userobj} check_access('site_read', context) except NotAuthorized: - abort(401, _('Not authorized to see this page')) + abort(403, _('Not authorized to see this page')) # unicode format (decoded from utf8) q = c.q = request.params.get('q', u'') @@ -221,7 +220,7 @@ def pager_url(q=None, page=None): search_extras[param] = value context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'for_view': True, + 'user': c.user, 'for_view': True, 'auth_user_obj': c.userobj} if package_type and package_type != 'dataset': @@ -279,7 +278,17 @@ def pager_url(q=None, page=None): c.facets = query['facets'] c.search_facets = query['search_facets'] c.page.items = query['results'] + except SearchQueryError, se: + # User's search parameters are invalid, in such a way that is not + # achievable with the web interface, so return a proper error to + # discourage spiders which are the main cause of this. + log.info('Dataset search query rejected: %r', se.args) + abort(400, _('Invalid search query: {error_message}') + .format(error_message=str(se))) except SearchError, se: + # May be bad input from the user, but may also be more serious like + # bad code causing a SOLR syntax error, or a problem connecting to + # SOLR log.error('Dataset search error: %r', se.args) c.query_error = True c.facets = {} @@ -306,25 +315,9 @@ def pager_url(q=None, page=None): return render(self._search_template(package_type), extra_vars={'dataset_type': package_type}) - def _content_type_from_extension(self, ext): - ct, ext = accept.parse_extension(ext) - if not ct: - return None, None - return ct, ext - - def _content_type_from_accept(self): - """ - Given a requested format this method determines the content-type - to set and the genshi template loader to use in order to render - it accurately. TextTemplate must be used for non-xml templates - whilst all that are some sort of XML should use MarkupTemplate. - """ - ct, ext = accept.parse_header(request.headers.get('Accept', '')) - return ct, ext - def resources(self, id): context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'for_view': True, + 'user': c.user, 'for_view': True, 'auth_user_obj': c.userobj} data_dict = {'id': id, 'include_tracking': True} @@ -333,15 +326,13 @@ def resources(self, id): except NotFound: abort(404, _('Dataset not found')) except NotAuthorized: - abort(401, _('User %r not authorized to edit %s') % (c.user, id)) + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) # check if package exists try: c.pkg_dict = get_action('package_show')(context, data_dict) c.pkg = context['package'] - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Dataset not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read package %s') % id) package_type = c.pkg_dict['type'] or 'dataset' self._setup_template_variables(context, {'id': id}, @@ -350,22 +341,9 @@ def resources(self, id): return render('package/resources.html', extra_vars={'dataset_type': package_type}) - def read(self, id, format='html'): - if not format == 'html': - ctype, extension = \ - self._content_type_from_extension(format) - if not ctype: - # An unknown format, we'll carry on in case it is a - # revision specifier and re-constitute the original id - id = "%s.%s" % (id, format) - ctype, format = "text/html; charset=utf-8", "html" - else: - ctype, format = self._content_type_from_accept() - - response.headers['Content-Type'] = ctype - + def read(self, id): context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'for_view': True, + 'user': c.user, 'for_view': True, 'auth_user_obj': c.userobj} data_dict = {'id': id, 'include_tracking': True} @@ -391,14 +369,11 @@ def read(self, id, format='html'): try: c.pkg_dict = get_action('package_show')(context, data_dict) c.pkg = context['package'] - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Dataset not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read package %s') % id) # used by disqus plugin c.current_package_id = c.pkg.id - c.related_count = c.pkg.related_count # can the resources be previewed? for resource in c.pkg_dict['resources']: @@ -415,8 +390,6 @@ def read(self, id, format='html'): package_type=package_type) template = self._read_template(package_type) - template = template[:template.index('.') + 1] + format - try: return render(template, extra_vars={'dataset_type': package_type}) @@ -447,7 +420,7 @@ def history(self, id): h.redirect_to(controller='revision', action='diff', **params) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'id': id} try: c.pkg_dict = get_action('package_show')(context, data_dict) @@ -458,7 +431,7 @@ def history(self, id): c.pkg = context['package'] except NotAuthorized: - abort(401, _('Unauthorized to read package %s') % '') + abort(403, _('Unauthorized to read package %s') % '') except NotFound: abort(404, _('Dataset not found')) @@ -507,7 +480,6 @@ def history(self, id): package_type = c.pkg_dict['type'] or 'dataset' - c.related_count = c.pkg.related_count return render( self._history_template(c.pkg_dict.get('type', package_type)), extra_vars={'dataset_type': package_type}) @@ -519,7 +491,7 @@ def new(self, data=None, errors=None, error_summary=None): package_type = self._guess_package_type(True) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj, + 'user': c.user, 'auth_user_obj': c.userobj, 'save': 'save' in request.params} # Package needs to have a organization group in the call to @@ -527,7 +499,7 @@ def new(self, data=None, errors=None, error_summary=None): try: check_access('package_create', context) except NotAuthorized: - abort(401, _('Unauthorized to create a package')) + abort(403, _('Unauthorized to create a package')) if context['save'] and not data: return self._save_new(context, package_type=package_type) @@ -565,14 +537,6 @@ def new(self, data=None, errors=None, error_summary=None): package_type=package_type) new_template = self._new_template(package_type) - c.form = ckan.lib.render.deprecated_lazy_render( - new_template, - form_snippet, - lambda: render(form_snippet, extra_vars=form_vars), - 'use of c.form is deprecated. please see ' - 'ckan/templates/package/base_form_page.html for an example ' - 'of the new way to include the form snippet' - ) return render(new_template, extra_vars={'form_vars': form_vars, 'form_snippet': form_snippet, @@ -590,7 +554,7 @@ def resource_edit(self, id, resource_id, data=None, errors=None, context = {'model': model, 'session': model.Session, 'api_version': 3, 'for_edit': True, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} data['package_id'] = id try: @@ -605,13 +569,13 @@ def resource_edit(self, id, resource_id, data=None, errors=None, return self.resource_edit(id, resource_id, data, errors, error_summary) except NotAuthorized: - abort(401, _('Unauthorized to edit this resource')) + abort(403, _('Unauthorized to edit this resource')) redirect(h.url_for(controller='package', action='resource_read', id=id, resource_id=resource_id)) context = {'model': model, 'session': model.Session, 'api_version': 3, 'for_edit': True, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} pkg_dict = get_action('package_show')(context, {'id': id}) if pkg_dict['state'].startswith('draft'): # dataset has not yet been fully created @@ -644,7 +608,7 @@ def resource_edit(self, id, resource_id, data=None, errors=None, errors = errors or {} error_summary = error_summary or {} vars = {'data': data, 'errors': errors, - 'error_summary': error_summary, 'action': 'new', + 'error_summary': error_summary, 'action': 'edit', 'resource_form_snippet': self._resource_form(package_type), 'dataset_type': package_type} return render('package/resource_edit.html', extra_vars=vars) @@ -663,7 +627,7 @@ def new_resource(self, id, data=None, errors=None, error_summary=None): del data['id'] context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} # see if we have any data that we are trying to save data_provided = False @@ -682,7 +646,7 @@ def new_resource(self, id, data=None, errors=None, error_summary=None): try: data_dict = get_action('package_show')(context, {'id': id}) except NotAuthorized: - abort(401, _('Unauthorized to update dataset')) + abort(403, _('Unauthorized to update dataset')) except NotFound: abort(404, _('The dataset {id} could not be found.' ).format(id=id)) @@ -719,7 +683,7 @@ def new_resource(self, id, data=None, errors=None, error_summary=None): error_summary = e.error_summary return self.new_resource(id, data, errors, error_summary) except NotAuthorized: - abort(401, _('Unauthorized to create a resource')) + abort(403, _('Unauthorized to create a resource')) except NotFound: abort(404, _('The dataset {id} could not be found.' ).format(id=id)) @@ -746,7 +710,7 @@ def new_resource(self, id, data=None, errors=None, error_summary=None): # get resources for sidebar context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} try: pkg_dict = get_action('package_show')(context, {'id': id}) except NotFound: @@ -755,7 +719,7 @@ def new_resource(self, id, data=None, errors=None, error_summary=None): check_access( 'resource_create', context, {"package_id": pkg_dict["id"]}) except NotAuthorized: - abort(401, _('Unauthorized to create a resource for this package')) + abort(403, _('Unauthorized to create a resource for this package')) package_type = pkg_dict['type'] or 'dataset' @@ -777,7 +741,7 @@ def new_resource(self, id, data=None, errors=None, error_summary=None): def edit(self, id, data=None, errors=None, error_summary=None): package_type = self._get_package_type(id) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj, + 'user': c.user, 'auth_user_obj': c.userobj, 'save': 'save' in request.params} if context['save'] and not data: @@ -791,9 +755,7 @@ def edit(self, id, data=None, errors=None, error_summary=None): if data: old_data.update(data) data = old_data - except NotAuthorized: - abort(401, _('Unauthorized to read package %s') % '') - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Dataset not found')) # are we doing a multiphase add? if data.get('state', '').startswith('draft'): @@ -808,7 +770,7 @@ def edit(self, id, data=None, errors=None, error_summary=None): try: check_access('package_update', context) except NotAuthorized: - abort(401, _('User %r not authorized to edit %s') % (c.user, id)) + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) # convert tags if not supplied in data if data and not data.get('tag_string'): data['tag_string'] = ', '.join(h.dict_list_reduce( @@ -823,7 +785,6 @@ def edit(self, id, data=None, errors=None, error_summary=None): self._setup_template_variables(context, {'id': id}, package_type=package_type) - c.related_count = c.pkg.related_count # we have already completed stage 1 form_vars['stage'] = ['active'] @@ -831,14 +792,6 @@ def edit(self, id, data=None, errors=None, error_summary=None): form_vars['stage'] = ['active', 'complete'] edit_template = self._edit_template(package_type) - c.form = ckan.lib.render.deprecated_lazy_render( - edit_template, - form_snippet, - lambda: render(form_snippet, extra_vars=form_vars), - 'use of c.form is deprecated. please see ' - 'ckan/templates/package/edit.html for an example ' - 'of the new way to include the form snippet' - ) return render(edit_template, extra_vars={'form_vars': form_vars, 'form_snippet': form_snippet, @@ -846,13 +799,11 @@ def edit(self, id, data=None, errors=None, error_summary=None): def read_ajax(self, id, revision=None): context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj, + 'user': c.user, 'auth_user_obj': c.userobj, 'revision_id': revision} try: data = get_action('package_show')(context, {'id': id}) - except NotAuthorized: - abort(401, _('Unauthorized to read package %s') % '') - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Dataset not found')) data.pop('tags') @@ -863,13 +814,13 @@ def read_ajax(self, id, revision=None): def history_ajax(self, id): context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'id': id} try: pkg_revisions = get_action('package_revision_list')( context, data_dict) except NotAuthorized: - abort(401, _('Unauthorized to read package %s') % '') + abort(403, _('Unauthorized to read package %s') % '') except NotFound: abort(404, _('Dataset not found')) @@ -970,7 +921,7 @@ def _save_new(self, context, package_type=None): self._form_save_redirect(pkg_dict['name'], 'new', package_type=package_type) except NotAuthorized: - abort(401, _('Unauthorized to read package %s') % '') + abort(403, _('Unauthorized to read package %s') % '') except NotFound, e: abort(404, _('Dataset not found')) except dict_fns.DataError: @@ -1018,7 +969,7 @@ def _save_edit(self, name_or_id, context, package_type=None): self._form_save_redirect(pkg['name'], 'edit', package_type=package_type) except NotAuthorized: - abort(401, _('Unauthorized to read package %s') % id) + abort(403, _('Unauthorized to read package %s') % id) except NotFound, e: abort(404, _('Dataset not found')) except dict_fns.DataError: @@ -1060,7 +1011,7 @@ def delete(self, id): h.redirect_to(controller='package', action='edit', id=id) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} try: if request.method == 'POST': @@ -1070,7 +1021,7 @@ def delete(self, id): c.pkg_dict = get_action('package_show')(context, {'id': id}) dataset_type = c.pkg_dict['type'] or 'dataset' except NotAuthorized: - abort(401, _('Unauthorized to delete package %s') % '') + abort(403, _('Unauthorized to delete package %s') % '') except NotFound: abort(404, _('Dataset not found')) return render('package/confirm_delete.html', @@ -1083,12 +1034,12 @@ def resource_delete(self, id, resource_id): resource_id=resource_id, id=id) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} try: check_access('package_delete', context, {'id': id}) except NotAuthorized: - abort(401, _('Unauthorized to delete package %s') % '') + abort(403, _('Unauthorized to delete package %s') % '') try: if request.method == 'POST': @@ -1099,7 +1050,7 @@ def resource_delete(self, id, resource_id): context, {'id': resource_id}) c.pkg_id = id except NotAuthorized: - abort(401, _('Unauthorized to delete resource %s') % '') + abort(403, _('Unauthorized to delete resource %s') % '') except NotFound: abort(404, _('Resource not found')) return render('package/confirm_delete_resource.html', @@ -1107,16 +1058,14 @@ def resource_delete(self, id, resource_id): def resource_read(self, id, resource_id): context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'auth_user_obj': c.userobj, 'for_view': True} try: c.package = get_action('package_show')(context, {'id': id}) - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Dataset not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read dataset %s') % id) for resource in c.package.get('resources', []): if resource['id'] == resource_id: @@ -1142,8 +1091,6 @@ def resource_read(self, id, resource_id): c.datastore_api = '%s/api/action' % \ config.get('ckan.site_url', '').rstrip('/') - c.related_count = c.pkg.related_count - c.resource['can_be_previewed'] = self._resource_preview( {'resource': c.resource, 'package': c.package}) @@ -1186,15 +1133,13 @@ def resource_download(self, id, resource_id, filename=None): stored or downloading an uploaded file directly. """ context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} try: rsc = get_action('resource_show')(context, {'id': resource_id}) get_action('package_show')(context, {'id': id}) - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Resource not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read resource %s') % id) if rsc.get('url_type') == 'upload': upload = uploader.ResourceUpload(rsc) @@ -1219,7 +1164,7 @@ def follow(self, id): '''Start following this dataset.''' context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'id': id} try: get_action('follow_dataset')(context, data_dict) @@ -1238,7 +1183,7 @@ def unfollow(self, id): '''Stop following this dataset.''' context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'id': id} try: get_action('unfollow_dataset')(context, data_dict) @@ -1256,7 +1201,7 @@ def unfollow(self, id): def followers(self, id=None): context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'for_view': True, + 'user': c.user, 'for_view': True, 'auth_user_obj': c.userobj} data_dict = {'id': id} @@ -1266,28 +1211,25 @@ def followers(self, id=None): c.followers = get_action('dataset_follower_list')( context, {'id': c.pkg_dict['id']}) - c.related_count = c.pkg.related_count dataset_type = c.pkg.type or 'dataset' except NotFound: abort(404, _('Dataset not found')) except NotAuthorized: - abort(401, _('Unauthorized to read package %s') % id) + abort(403, _('Unauthorized to read package %s') % id) return render('package/followers.html', {'dataset_type': dataset_type}) def groups(self, id): context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'for_view': True, + 'user': c.user, 'for_view': True, 'auth_user_obj': c.userobj, 'use_cache': False} data_dict = {'id': id} try: c.pkg_dict = get_action('package_show')(context, data_dict) dataset_type = c.pkg_dict['type'] or 'dataset' - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Dataset not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read dataset %s') % id) if request.method == 'POST': new_group = request.POST.get('group_added') @@ -1340,21 +1282,20 @@ def activity(self, id): '''Render this package's public activity stream page.''' context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'for_view': True, + 'user': c.user, 'for_view': True, 'auth_user_obj': c.userobj} data_dict = {'id': id} try: c.pkg_dict = get_action('package_show')(context, data_dict) c.pkg = context['package'] c.package_activity_stream = get_action( - 'package_activity_list_html')(context, - {'id': c.pkg_dict['id']}) - c.related_count = c.pkg.related_count + 'package_activity_list_html')( + context, {'id': c.pkg_dict['id']}) dataset_type = c.pkg_dict['type'] or 'dataset' except NotFound: abort(404, _('Dataset not found')) except NotAuthorized: - abort(401, _('Unauthorized to read dataset %s') % id) + abort(403, _('Unauthorized to read dataset %s') % id) return render('package/activity.html', {'dataset_type': dataset_type}) @@ -1367,7 +1308,7 @@ def resource_embedded_dataviewer(self, id, resource_id, querystring (as well as accepting them via routes). """ context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj} + 'user': c.user, 'auth_user_obj': c.userobj} try: c.resource = get_action('resource_show')(context, @@ -1381,10 +1322,8 @@ def resource_embedded_dataviewer(self, id, resource_id, raise NotFound dataset_type = c.package['type'] or 'dataset' - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Resource not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read resource %s') % id) # Construct the recline state state_version = int(request.params.get('state_version', '1')) @@ -1440,22 +1379,20 @@ def _parse_recline_state(self, params): def resource_views(self, id, resource_id): package_type = self._get_package_type(id.split('@')[0]) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'for_view': True, + 'user': c.user, 'for_view': True, 'auth_user_obj': c.userobj} data_dict = {'id': id} try: check_access('package_update', context, data_dict) except NotAuthorized: - abort(401, _('User %r not authorized to edit %s') % (c.user, id)) + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) # check if package exists try: c.pkg_dict = get_action('package_show')(context, data_dict) c.pkg = context['package'] - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Dataset not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read dataset %s') % id) try: c.resource = get_action('resource_show')(context, @@ -1466,7 +1403,7 @@ def resource_views(self, id, resource_id): except NotFound: abort(404, _('Resource not found')) except NotAuthorized: - abort(401, _('Unauthorized to read resource %s') % id) + abort(403, _('Unauthorized to read resource %s') % id) self._setup_template_variables(context, {'id': id}, package_type=package_type) @@ -1476,30 +1413,26 @@ def resource_views(self, id, resource_id): def edit_view(self, id, resource_id, view_id=None): package_type = self._get_package_type(id.split('@')[0]) context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'for_view': True, + 'user': c.user, 'for_view': True, 'auth_user_obj': c.userobj} # update resource should tell us early if the user has privilages. try: check_access('resource_update', context, {'id': resource_id}) except NotAuthorized, e: - abort(401, _('User %r not authorized to edit %s') % (c.user, id)) + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) # get resource and package data try: c.pkg_dict = get_action('package_show')(context, {'id': id}) c.pkg = context['package'] - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Dataset not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read dataset %s') % id) try: c.resource = get_action('resource_show')(context, {'id': resource_id}) - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Resource not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read resource %s') % id) data = {} errors = {} @@ -1534,7 +1467,7 @@ def edit_view(self, id, resource_id, view_id=None): except NotAuthorized: ## This should never happen unless the user maliciously changed ## the resource_id in the url. - abort(401, _('Unauthorized to edit resource')) + abort(403, _('Unauthorized to edit resource')) else: if not to_preview: redirect(h.url_for(controller='package', @@ -1551,10 +1484,8 @@ def edit_view(self, id, resource_id, view_id=None): ## might as well preview when loading good existing view if not errors: to_preview = True - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('View not found')) - except NotAuthorized: - abort(401, _('Unauthorized to view View %s') % view_id) view_type = view_type or request.GET.get('view_type') data['view_type'] = view_type @@ -1597,23 +1528,19 @@ def resource_view(self, id, resource_id, view_id=None): ''' context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'auth_user_obj': c.userobj} try: package = get_action('package_show')(context, {'id': id}) - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Dataset not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read dataset %s') % id) try: resource = get_action('resource_show')( context, {'id': resource_id}) - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Resource not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read resource %s') % resource_id) view = None if request.params.get('resource_view', ''): @@ -1625,11 +1552,8 @@ def resource_view(self, id, resource_id, view_id=None): try: view = get_action('resource_view_show')( context, {'id': view_id}) - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Resource view not found')) - except NotAuthorized: - abort(401, - _('Unauthorized to read resource view %s') % view_id) if not view or not isinstance(view, dict): abort(404, _('Resource view not supplied')) @@ -1647,7 +1571,7 @@ def resource_datapreview(self, id, resource_id): context = { 'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'auth_user_obj': c.userobj } @@ -1666,10 +1590,8 @@ def resource_datapreview(self, id, resource_id): preview_plugin.setup_template_variables(context, data_dict) c.resource_json = json.dumps(c.resource) dataset_type = c.package['type'] or 'dataset' - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('Resource not found')) - except NotAuthorized: - abort(401, _('Unauthorized to read resource %s') % id) else: return render(preview_plugin.preview_template(context, data_dict), extra_vars={'dataset_type': dataset_type}) diff --git a/ckan/controllers/partyline.py b/ckan/controllers/partyline.py new file mode 100644 index 00000000000..7998a6b6494 --- /dev/null +++ b/ckan/controllers/partyline.py @@ -0,0 +1,64 @@ +from pylons.controllers import WSGIController +from pylons import config + +import ckan.lib.base as base +from ckan.common import request + +from wsgi_party import WSGIParty, HighAndDry + +import logging +log = logging.getLogger(__name__) + + +class PartylineController(WSGIController): + + '''Handle requests from the WSGI stack 'partyline'. Most importantly, + answers the question, 'can you handle this url?'. ''' + + def __init__(self, *args, **kwargs): + super(PartylineController, self).__init__(*args, **kwargs) + self.app_name = None # A reference to the main pylons app. + self.partyline_connected = False + + def join_party(self): + if self.partyline_connected: + base.abort(404) + self.partyline = request.environ.get(WSGIParty.partyline_key) + self.app_name = request.environ.get('partyline_handling_app') + self.partyline.connect('can_handle_request', self.can_handle_request) + self.partyline_connected = True + return 'ok' + + def can_handle_request(self, environ): + ''' + Decides whether it can handle a request with the Pylons app by + matching the request environ against the route mapper + + Returns (True, 'pylons_app', origin) if this is the case. + + origin can be either 'core' or 'extension' depending on where + the route was defined. + + NOTE: There is currently a catch all route for GET requests to + point arbitrary urls to templates with the same name: + + map.connect('/*url', controller='template', action='view') + + This means that this function will match all GET requests. This + does not cause issues as the Pylons core routes are the last to + take precedence so the current behaviour is kept, but it's worth + keeping in mind. + ''' + + pylons_mapper = config['routes.map'] + match_route = pylons_mapper.routematch(environ=environ) + if match_route: + match, route = match_route + origin = 'core' + if hasattr(route, '_ckan_core') and not route._ckan_core: + origin = 'extension' + log.debug('Pylons route match: {0} Origin: {1}'.format( + match, origin)) + return (True, self.app_name, origin) + else: + raise HighAndDry() diff --git a/ckan/controllers/revision.py b/ckan/controllers/revision.py index 171d7dbaad4..5d2b4643ce4 100644 --- a/ckan/controllers/revision.py +++ b/ckan/controllers/revision.py @@ -15,7 +15,7 @@ class RevisionController(base.BaseController): def __before__(self, action, **env): base.BaseController.__before__(self, action, **env) - context = {'model': model, 'user': c.user or c.author, + context = {'model': model, 'user': c.user, 'auth_user_obj': c.userobj} if c.user: try: @@ -28,7 +28,7 @@ def __before__(self, action, **env): try: logic.check_access('site_read', context) except logic.NotAuthorized: - base.abort(401, _('Not authorized to see this page')) + base.abort(403, _('Not authorized to see this page')) def index(self): return self.list() @@ -179,7 +179,7 @@ def edit(self, id=None): if action in ['delete', 'undelete']: # this should be at a lower level (e.g. logic layer) if not c.revision_change_state_allowed: - base.abort(401) + base.abort(403) if action == 'delete': revision.state = model.State.DELETED elif action == 'undelete': diff --git a/ckan/controllers/tag.py b/ckan/controllers/tag.py index 277d339478d..67b761af444 100644 --- a/ckan/controllers/tag.py +++ b/ckan/controllers/tag.py @@ -1,9 +1,13 @@ +# encoding: utf-8 + from pylons import config +from paste.deploy.converters import asbool import ckan.logic as logic import ckan.model as model import ckan.lib.base as base import ckan.lib.helpers as h +from ckan.lib.alphabet_paginate import AlphaPage from ckan.common import _, request, c @@ -16,17 +20,17 @@ class TagController(base.BaseController): def __before__(self, action, **env): base.BaseController.__before__(self, action, **env) try: - context = {'model': model, 'user': c.user or c.author, + context = {'model': model, 'user': c.user, 'auth_user_obj': c.userobj} logic.check_access('site_read', context) except logic.NotAuthorized: - base.abort(401, _('Not authorized to see this page')) + base.abort(403, _('Not authorized to see this page')) def index(self): c.q = request.params.get('q', '') context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj, + 'user': c.user, 'auth_user_obj': c.userobj, 'for_view': True} data_dict = {'all_fields': True} @@ -49,7 +53,7 @@ def index(self): ) c.page.items = results else: - c.page = h.AlphaPage( + c.page = AlphaPage( collection=results, page=request.params.get('page', 'A'), alpha_attribute='name', @@ -60,7 +64,7 @@ def index(self): def read(self, id): context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj, + 'user': c.user, 'auth_user_obj': c.userobj, 'for_view': True} data_dict = {'id': id} @@ -69,7 +73,7 @@ def read(self, id): except logic.NotFound: base.abort(404, _('Tag not found')) - if h.asbool(config.get('ckan.legacy_templates', False)): + if asbool(config.get('ckan.legacy_templates', False)): return base.render('tag/read.html') else: h.redirect_to(controller='package', action='search', diff --git a/ckan/controllers/user.py b/ckan/controllers/user.py index bea4ad7ecf9..5f8f8086fda 100644 --- a/ckan/controllers/user.py +++ b/ckan/controllers/user.py @@ -2,6 +2,7 @@ from urllib import quote from pylons import config +from paste.deploy.converters import asbool import ckan.lib.base as base import ckan.model as model @@ -38,12 +39,12 @@ class UserController(base.BaseController): def __before__(self, action, **env): base.BaseController.__before__(self, action, **env) try: - context = {'model': model, 'user': c.user or c.author, + context = {'model': model, 'user': c.user, 'auth_user_obj': c.userobj} check_access('site_read', context) except NotAuthorized: if c.action not in ('login', 'request_reset', 'perform_reset',): - abort(401, _('Not authorized to see this page')) + abort(403, _('Not authorized to see this page')) ## hooks for subclasses new_user_form = 'user/new_user_form.html' @@ -70,7 +71,7 @@ def _setup_template_variables(self, context, data_dict): except NotFound: abort(404, _('User not found')) except NotAuthorized: - abort(401, _('Not authorized to see this page')) + abort(403, _('Not authorized to see this page')) c.user_dict = user_dict c.is_myself = user_dict['name'] == c.user @@ -85,21 +86,23 @@ def _get_repoze_handler(self, handler_name): handler_name) def index(self): - LIMIT = 20 - page = self._get_page_number(request.params) c.q = request.params.get('q', '') c.order_by = request.params.get('order_by', 'name') - context = {'return_query': True, 'user': c.user or c.author, + context = {'return_query': True, 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'q': c.q, 'order_by': c.order_by} + + limit = int( + request.params.get('limit', config.get('ckan.user_list_limit', 20)) + ) try: check_access('user_list', context, data_dict) except NotAuthorized: - abort(401, _('Not authorized to see this page')) + abort(403, _('Not authorized to see this page')) users_list = get_action('user_list')(context, data_dict) @@ -108,26 +111,24 @@ def index(self): page=page, url=h.pager_url, item_count=users_list.count(), - items_per_page=LIMIT + items_per_page=limit ) return render('user/list.html') def read(self, id=None): context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj, + 'user': c.user, 'auth_user_obj': c.userobj, 'for_view': True} data_dict = {'id': id, 'user_obj': c.userobj, 'include_datasets': True, 'include_num_followers': True} - context['with_related'] = True - self._setup_template_variables(context, data_dict) # The legacy templates have the user's activity stream on the user # profile page, new templates do not. - if h.asbool(config.get('ckan.legacy_templates', False)): + if asbool(config.get('ckan.legacy_templates', False)): c.user_activity_stream = get_action('user_activity_list_html')( context, {'id': c.user_dict['id']}) @@ -146,7 +147,7 @@ def register(self, data=None, errors=None, error_summary=None): try: check_access('user_create', context) except NotAuthorized: - abort(401, _('Unauthorized to register as a user.')) + abort(403, _('Unauthorized to register as a user.')) return self.new(data, errors, error_summary) @@ -155,7 +156,7 @@ def new(self, data=None, errors=None, error_summary=None): or POST the form data to actually do the user registration. ''' context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'auth_user_obj': c.userobj, 'schema': self._new_form_to_db_schema(), 'save': 'save' in request.params} @@ -163,7 +164,7 @@ def new(self, data=None, errors=None, error_summary=None): try: check_access('user_create', context) except NotAuthorized: - abort(401, _('Unauthorized to create a user')) + abort(403, _('Unauthorized to create a user')) if context['save'] and not data: return self._save_new(context) @@ -195,7 +196,7 @@ def delete(self, id): h.redirect_to(user_index) except NotAuthorized: msg = _('Unauthorized to delete user with id "{user_id}".') - abort(401, msg.format(user_id=id)) + abort(403, msg.format(user_id=id)) def generate_apikey(self, id): '''Cycle the API key of a user''' @@ -214,7 +215,7 @@ def generate_apikey(self, id): try: result = get_action('user_generate_apikey')(context, data_dict) except NotAuthorized: - abort(401, _('Unauthorized to edit user %s') % '') + abort(403, _('Unauthorized to edit user %s') % '') except NotFound: abort(404, _('User not found')) @@ -229,7 +230,7 @@ def _save_new(self, context): captcha.check_recaptcha(request) user = get_action('user_create')(context, data_dict) except NotAuthorized: - abort(401, _('Unauthorized to create user %s') % '') + abort(403, _('Unauthorized to create user %s') % '') except NotFound, e: abort(404, _('User not found')) except DataError: @@ -273,7 +274,7 @@ def edit(self, id=None, data=None, errors=None, error_summary=None): try: check_access('user_update', context, data_dict) except NotAuthorized: - abort(401, _('Unauthorized to edit a user.')) + abort(403, _('Unauthorized to edit a user.')) if (context['save']) and not data: return self._save_edit(id, context) @@ -292,7 +293,7 @@ def edit(self, id=None, data=None, errors=None, error_summary=None): data = data or old_data except NotAuthorized: - abort(401, _('Unauthorized to edit user %s') % '') + abort(403, _('Unauthorized to edit user %s') % '') except NotFound: abort(404, _('User not found')) @@ -300,7 +301,7 @@ def edit(self, id=None, data=None, errors=None, error_summary=None): if not (authz.is_sysadmin(c.user) or c.user == user_obj.name): - abort(401, _('User %s not authorized to edit %s') % + abort(403, _('User %s not authorized to edit %s') % (str(c.user), id)) errors = errors or {} @@ -308,11 +309,11 @@ def edit(self, id=None, data=None, errors=None, error_summary=None): self._setup_template_variables({'model': model, 'session': model.Session, - 'user': c.user or c.author}, + 'user': c.user}, data_dict) c.is_myself = True - c.show_email_notifications = h.asbool( + c.show_email_notifications = asbool( config.get('ckan.activity_streams_email_notifications')) c.form = render(self.edit_user_form, extra_vars=vars) @@ -325,7 +326,10 @@ def _save_edit(self, id, context): context['message'] = data_dict.get('log_message', '') data_dict['id'] = id - if data_dict['password1'] and data_dict['password2']: + email_changed = data_dict['email'] != c.userobj.email + + if (data_dict['password1'] and data_dict['password2']) \ + or email_changed: identity = {'login': c.user, 'password': data_dict['old_password']} auth = authenticator.UsernamePasswordAuthenticator() @@ -341,7 +345,7 @@ def _save_edit(self, id, context): h.flash_success(_('Profile updated')) h.redirect_to(controller='user', action='read', id=user['name']) except NotAuthorized: - abort(401, _('Unauthorized to edit user %s') % id) + abort(403, _('Unauthorized to edit user %s') % id) except NotFound, e: abort(404, _('User not found')) except DataError: @@ -394,7 +398,7 @@ def logged_in(self): return self.me() else: err = _('Login failed. Bad username or password.') - if h.asbool(config.get('ckan.legacy_templates', 'false')): + if asbool(config.get('ckan.legacy_templates', 'false')): h.flash_error(err) h.redirect_to(controller='user', action='login', came_from=came_from) @@ -427,7 +431,7 @@ def request_reset(self): try: check_access('request_reset', context) except NotAuthorized: - abort(401, _('Unauthorized to request reset password.')) + abort(403, _('Unauthorized to request reset password.')) if request.method == 'POST': id = request.params.get('user') @@ -482,7 +486,7 @@ def perform_reset(self, id): try: check_access('user_reset', context) except NotAuthorized: - abort(401, _('Unauthorized to reset password.')) + abort(403, _('Unauthorized to reset password.')) try: data_dict = {'id': id} @@ -537,7 +541,7 @@ def _get_form_password(self): raise ValueError(_('You must provide a password')) def followers(self, id=None): - context = {'for_view': True, 'user': c.user or c.author, + context = {'for_view': True, 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'id': id, 'user_obj': c.userobj, 'include_num_followers': True} @@ -546,21 +550,21 @@ def followers(self, id=None): try: c.followers = f(context, {'id': c.user_dict['id']}) except NotAuthorized: - abort(401, _('Unauthorized to view followers %s') % '') + abort(403, _('Unauthorized to view followers %s') % '') return render('user/followers.html') def activity(self, id, offset=0): '''Render this user's public activity stream page.''' context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj, + 'user': c.user, 'auth_user_obj': c.userobj, 'for_view': True} data_dict = {'id': id, 'user_obj': c.userobj, 'include_num_followers': True} try: check_access('user_show', context, data_dict) except NotAuthorized: - abort(401, _('Not authorized to see this page')) + abort(403, _('Not authorized to see this page')) self._setup_template_variables(context, data_dict) @@ -583,7 +587,7 @@ def display_name(followee): if (filter_type and filter_id): context = { 'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj, + 'user': c.user, 'auth_user_obj': c.userobj, 'for_view': True } data_dict = {'id': filter_id, 'include_num_followers': True} @@ -602,11 +606,8 @@ def display_name(followee): abort(404, _('Follow item not found')) try: followee = action_function(context, data_dict) - except NotFound: + except (NotFound, NotAuthorized): abort(404, _('{0} not found').format(filter_type)) - except NotAuthorized: - abort(401, _('Unauthorized to read {0} {1}').format( - filter_type, id)) if followee is not None: return { @@ -627,7 +628,7 @@ def display_name(followee): def dashboard(self, id=None, offset=0): context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, 'auth_user_obj': c.userobj, + 'user': c.user, 'auth_user_obj': c.userobj, 'for_view': True} data_dict = {'id': id, 'user_obj': c.userobj, 'offset': offset} self._setup_template_variables(context, data_dict) @@ -651,21 +652,21 @@ def dashboard(self, id=None, offset=0): return render('user/dashboard.html') def dashboard_datasets(self): - context = {'for_view': True, 'user': c.user or c.author, + context = {'for_view': True, 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'user_obj': c.userobj, 'include_datasets': True} self._setup_template_variables(context, data_dict) return render('user/dashboard_datasets.html') def dashboard_organizations(self): - context = {'for_view': True, 'user': c.user or c.author, + context = {'for_view': True, 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'user_obj': c.userobj} self._setup_template_variables(context, data_dict) return render('user/dashboard_organizations.html') def dashboard_groups(self): - context = {'for_view': True, 'user': c.user or c.author, + context = {'for_view': True, 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'user_obj': c.userobj} self._setup_template_variables(context, data_dict) @@ -675,7 +676,7 @@ def follow(self, id): '''Start following this user.''' context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'id': id, 'include_num_followers': True} try: @@ -695,7 +696,7 @@ def unfollow(self, id): '''Stop following this user.''' context = {'model': model, 'session': model.Session, - 'user': c.user or c.author, + 'user': c.user, 'auth_user_obj': c.userobj} data_dict = {'id': id, 'include_num_followers': True} try: diff --git a/ckan/exceptions.py b/ckan/exceptions.py index 1fc407029f6..bd0d009e892 100644 --- a/ckan/exceptions.py +++ b/ckan/exceptions.py @@ -1,12 +1,16 @@ +# -*- coding: utf-8 -*- class CkanException(Exception): pass + class EmptyRevisionException(CkanException): pass + class CkanUrlException(Exception): pass + class CkanVersionException(Exception): '''Exception raised by :py:func:`~ckan.plugins.toolkit.requires_ckan_version` if the required CKAN @@ -14,3 +18,15 @@ class CkanVersionException(Exception): ''' pass + + +class CkanConfigurationException(Exception): + pass + + +class HelperError(Exception): + """Raised if an attempt to access an undefined helper is made. + + Normally, this would be a subclass of AttributeError, but Jinja2 will + catch and ignore them. We want this to be an explicit failure re #2908. + """ diff --git a/ckan/i18n/ar/LC_MESSAGES/ckan.mo b/ckan/i18n/ar/LC_MESSAGES/ckan.mo index 05d8639be28..83abb742833 100644 Binary files a/ckan/i18n/ar/LC_MESSAGES/ckan.mo and b/ckan/i18n/ar/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ar/LC_MESSAGES/ckan.po b/ckan/i18n/ar/LC_MESSAGES/ckan.po index f7ac69c25f5..f908e009324 100644 --- a/ckan/i18n/ar/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ar/LC_MESSAGES/ckan.po @@ -9,252 +9,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Arabic (http://www.transifex.com/projects/p/ckan/language/ar/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:18+0000\n" +"Last-Translator: dread \n" +"Language-Team: Arabic (http://www.transifex.com/okfn/ckan/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "لم يتم العثور على وظيفة إثبات الأصالة %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "مدير" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "محرر" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "عضو" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "تحتاج إلى أن تكون مسؤول النظام للقيام بالإدارة" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "عنوان الموقع" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "شكل" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "شعار الموقع" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "شعار علامة الموقع" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "حول" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "نص الصفحة : حول" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "نص المقدمة" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "النص على الصفحة الرئيسية" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "css خاص" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "لقد تم إدراج CSS مخصصة في رأس الصفحة" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "لا يمكن تطهير الحزمة %s لأنها ترتبط في تنقيح %s الذي يشمل الحزم التي لا يمكن حذف %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "مشكلة تطهير تنقيح %s : %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "الانتهاء من التطهير" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "لم ينفذ العمل." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "غير مخول لرؤية هذه الصفحة" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "رفض الدخول" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "غير موجود" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "طلب غير صحيح" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "اسم الإجراء غير معروف: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "خطأ JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "طلب غير صحيح المعلومات : %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "لا يمكن سرد كيان من هذا النوع: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "لا يمكن قراءة كيان من هذا النوع: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "لا يمكن إنشاء كيان جديد من هذا النوع: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "غير قادر على إضافة مجموعة إلى فهرس البحث" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "لا يمكن تحديث كيان من هذا النوع: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "قادر على تحديث فهرس البحث" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "لا يمكن حذف كيان من هذا النوع: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "لم يتم تحديد مراجعة" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "ليس هناك مراجعة ذات الرقم: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "مفقود مصطلح البحث ('since_id = UUID' أو 'since_time = TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "لا يمكن قراءة المعلمات: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "خيارات البحث سيئة %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "سجل غير معروف: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "يجب أن يكون طلب params في شكل قاموس ترميز json." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "لم يتم العثور على المجموعة" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "غير مرخص لقراءة المجموعة %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -265,23 +265,23 @@ msgstr "غير مرخص لقراءة المجموعة %s" msgid "Organizations" msgstr "المنظمات" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "مجموعات" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -289,394 +289,303 @@ msgstr "مجموعات" msgid "Tags" msgstr "أوسمة" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "صيغ" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "غير مخول لإجراء التحديث الشامل" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "غير مخول إنشاء مجموعة" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "المستخدم %r غير مخول لتحرير %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "خطأ سلامة" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "المستخدم %r غير مخول لتحرير أذون %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "حذف المجموعة غير مصرح به %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "تم حذف المنظمة." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "تم حذف المجموعة." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "غير مصرح به إضافة عضو إلى مجموعة %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "غير مصرح به  حذف أعضاء المجموعة %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "تم حذف أعضاء المجموعة." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "الرجاء اختيار اثنين من التنقيحات قبل القيام بالمقارنة." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "المستخدم %r غير مخول لتحرير %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "تاريخ مراجعة مجموعة CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "التغييرات الأخيرة في المجموعة CKAN:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "سجل الرسالة:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "غير مرخص لقراءة مجموعة {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "أنت الآن تتابع {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "أنت الآن لم تعد تتابع {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "غير مصرح به مشاهدة أتباع %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "هذا الموقع هو حاليا خارج الخط. لم يتم بدء قاعدة البيانات." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "يرجى <\"{a href=\"{link> تحديث ملفك الشخصي و إضافة عنوان البريد الإلكتروني الخاص بك واسمك الكامل. {site} يستخدم عنوان البريد الإلكتروني الخاص بك إذا كنت تحتاج إلى إعادة تعيين كلمة السر الخاصة بك." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "إضافة تحديث ملفك الشخصي و إضافة " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr " %s يستخدم عنوان البريد الإلكتروني الخاص بك إذا كنت تحتاج إلى إعادة تعيين كلمة السر " -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "لم يتم العثور على مجموعة البيانات" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "لم يتم العثور على الموارد" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "يجب إضافة مورد بيانات واحدة على الأقل" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "تم حذف البيانات." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "تم حذف البيانات." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "تم حذف الموارد." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "التحميل غير متاح" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "" @@ -702,10 +611,10 @@ msgstr "" msgid "Tag not found" msgstr "" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "" @@ -725,13 +634,13 @@ msgstr "" msgid "No user specified" msgstr "" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "" @@ -755,75 +664,87 @@ msgstr "" msgid "Unauthorized to edit a user." msgstr "" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "" @@ -945,7 +866,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -953,7 +874,7 @@ msgid "View" msgstr "معاينة" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" msgstr[1] "" @@ -1010,11 +931,11 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" @@ -1024,7 +945,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" @@ -1034,7 +955,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" @@ -1044,7 +965,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" @@ -1054,7 +975,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" @@ -1064,95 +985,95 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" @@ -1162,7 +1083,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1197,7 +1118,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1222,7 +1143,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "" @@ -1235,7 +1156,7 @@ msgstr "" msgid "Please enter an integer value" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1245,11 +1166,11 @@ msgstr "" msgid "Resources" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "" @@ -1259,25 +1180,22 @@ msgstr "" msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "" @@ -1289,378 +1207,369 @@ msgstr "" msgid "A organization must be supplied" msgstr "" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "" @@ -1691,7 +1600,7 @@ msgstr "" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "" @@ -1701,94 +1610,98 @@ msgstr "" msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1809,7 +1722,7 @@ msgstr "" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1887,63 +1800,63 @@ msgstr "" msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "" @@ -2050,8 +1963,6 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "إلغاء" @@ -2076,12 +1987,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "" @@ -2154,7 +2066,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "" @@ -2168,7 +2079,6 @@ msgstr "" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "تعديل" @@ -2207,11 +2117,11 @@ msgstr "" msgid "Sysadmin settings" msgstr "" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" @@ -2222,23 +2132,31 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "خروج" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "دخول" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "تسجيل" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2247,7 +2165,6 @@ msgstr "تسجيل" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2257,15 +2174,13 @@ msgstr "تسجيل" msgid "Datasets" msgstr "" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "بحث" @@ -2301,24 +2216,24 @@ msgstr "" msgid "Trash" msgstr "" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2389,7 +2304,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "" @@ -2541,7 +2455,7 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2574,8 +2488,6 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "" @@ -2593,7 +2505,7 @@ msgstr "" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2738,14 +2650,12 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "حفظ" @@ -2833,7 +2743,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "" @@ -2898,7 +2807,7 @@ msgstr "" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2998,38 +2907,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3047,7 +2948,6 @@ msgid "Custom" msgstr "" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "" @@ -3060,7 +2960,6 @@ msgid "http://example.com/my-image.jpg" msgstr "" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "" @@ -3105,7 +3004,7 @@ msgstr "مسودة" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3139,6 +3038,20 @@ msgstr "" msgid "There are currently no organizations for this site" msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3273,7 +3186,6 @@ msgid "Preview" msgstr "" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "" @@ -3332,7 +3244,7 @@ msgstr "" msgid "Add" msgstr "" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3364,28 +3276,32 @@ msgstr "" msgid "Error:" msgstr "" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3489,7 +3405,7 @@ msgid "unknown" msgstr "" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "" @@ -3525,6 +3441,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "" @@ -3581,7 +3501,7 @@ msgid "Version" msgstr "" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "" @@ -3596,7 +3516,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "" @@ -3616,30 +3535,30 @@ msgstr "" msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3766,7 +3685,7 @@ msgstr "استكشف" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "" @@ -3852,139 +3771,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -4072,7 +3858,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "" @@ -4081,7 +3866,7 @@ msgid "Language" msgstr "" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4113,21 +3898,25 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "أرسل" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4226,7 +4015,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4245,10 +4034,6 @@ msgstr "" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4312,36 +4097,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4574,15 +4350,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4590,6 +4366,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4616,6 +4400,10 @@ msgstr "" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4633,64 +4421,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4750,7 +4498,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "" @@ -4778,33 +4525,27 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "" @@ -4814,12 +4555,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "" @@ -4829,7 +4568,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "" @@ -4844,7 +4582,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 @@ -4855,42 +4593,16 @@ msgstr "" msgid "Total Number of Datasets" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/bg/LC_MESSAGES/ckan.mo b/ckan/i18n/bg/LC_MESSAGES/ckan.mo index a9e54d24679..01ecb5ed539 100644 Binary files a/ckan/i18n/bg/LC_MESSAGES/ckan.mo and b/ckan/i18n/bg/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/bg/LC_MESSAGES/ckan.po b/ckan/i18n/bg/LC_MESSAGES/ckan.po index d0c73f612bc..4e769518150 100644 --- a/ckan/i18n/bg/LC_MESSAGES/ckan.po +++ b/ckan/i18n/bg/LC_MESSAGES/ckan.po @@ -13,257 +13,258 @@ # Open Knowledge Foundation , 2011 # ptsikov , 2014 # Sean Hammond , 2012 +# Todor Georgiev , 2015 # yuliya , 2014 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:21+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Bulgarian (http://www.transifex.com/projects/p/ckan/language/bg/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:23+0000\n" +"Last-Translator: dread \n" +"Language-Team: Bulgarian (http://www.transifex.com/okfn/ckan/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Упълномощаващата функция не е открита: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Администратор" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Редактор" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Член" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Трябва да имате права на системен администратор" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Заглавие на страницата" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Стил" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Мото на сайта" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Лого на сайта" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "За портала" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Текст за страница „Относно“" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Въвеждащ текст" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Текст на начална страница" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Персонализиран CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Персонализиран CSS, вмъкнат в хедъра на страницата" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Начална страница" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Пакет %s не може да бъде прочистен, тъй като свързаната ревизия %s съдържа пакети, които не са изтрити %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Проблем при прочистване на ревизия %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Прочистването е завършено" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Действието не е приложимо." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Нямате право на достъп до тази странца" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Достъп отказан" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Данните не бяха намерени" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Неправилна заявка" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Неизвестно име на действие: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON Грешка: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Неправилни данни в заявка: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Не може да се извежда списък на обекти от този тип: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Не могат да се четат обекти от този тип: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Не могат да се създават обекти от този тип: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Пакетът данни не може да бъде включен в индекса за търсене" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Не могат да се обновяват обекти от този тип: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Индексът за търсене не може да бъде обновен." -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Не могат да се изтриват обекти от този тип: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Няма посочена ревизия" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Няма ревизия с индентификатор: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Липсващо условие на търсене ('since_id=UUID' или 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Не могат да се прочетат параметри: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Неправилна опция на търсене: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Неизвестен регистър: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Неправилно зададена qjson стойност: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Параметрите на заявката трябва да са във формат на JSON речник." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Групата не е намерена" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Организацията не е намерена" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Неправилен тип на групата" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Нямате право да четете група %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -274,23 +275,23 @@ msgstr "Нямате право да четете група %s" msgid "Organizations" msgstr "Организации" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Групи" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -298,394 +299,303 @@ msgstr "Групи" msgid "Tags" msgstr "Етикети" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Формати" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Лицензи" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Нямате право да извършвате цялостно обновяване." -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Нямате право да създадавате група" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Потребител %r няма право да редактира %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Грешка в целостта" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Потребител %r няма право да редактира права за %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Нямате право да изтривате група %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Организацията беше изтрита." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Групата беше изтрита." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Нямате право да добавяте член към група %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Нпмате право да изтривате членове на група %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Член на групата беше изтрит" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Изберете две ревизии, преди да направите сравнение." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Потребител %r няма право да редактира %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "История на ревизии на CKAN група" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Последни промени в CKAN група" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Журнално съобщение: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Нямате право да четете група {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Вече следвате {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Вече не следвате {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Нямате право да виждате тези последователи %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "В момента тази страница е недостъпна. Базата данни не е инициализирана." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Моля, обновете профила си, като добавите своя имейл адрес и пълното си име. {site} използва Вашия имейл при необходимост от възстановяване на паролата Ви." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Моля, обновете профила си и добавете своя имейл адрес." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s използвайte своя имейл адрес, ако имате нужда да възстановите паролата си." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Моля, обновете профила си и добавете пълното си име." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Параметърът \"{parameter_name}\" не е цяло число" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Наборът от данни не е намерен" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Нямате право да четете пакет %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Невалиден формат на ревизия: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Разглеждането на {package_type} набори от данни във формат {format} не се поддържа (не е намерен шаблонен файл {file} )." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "История на ревизии на CKAN набор от данни" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Последни промени в CKAN набор от данни:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Нямате право да създавате пакет" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Нямате право да редактирате ресурс" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Ресурсът не беше намерен" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Нямате право да обновявате набор от данни." -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Наборът от данни {id} не беше намерен." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Трябва да добавите поне един ресурс от данни." -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Грешка" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Нямате право да създавате ресурс" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Пакетът данни не може да бъде включен в индекса за търсене." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Индексът за търсене не може да бъде обновен." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Наборът от данни беше изтрит." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Нямате право да изтриете пакет %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Наборът от данни беше изтрит." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Ресурсът е изтрит." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Нямате право да изтриете ресурс %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Нямате право да четете набор от данни %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Нямате право да четете ресурс %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Не е намерена информация за ресурса" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Не са налични файлове за сваляне" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Нямате право да редактирате ресурс" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "Изгледът не е намерен" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Не е дефиниран предварителен изглед." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Най-разглеждани" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Най-разглеждани" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Най-малко разглеждани" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Най-нови" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Най-стари" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Търсеният елемент не беше намерен" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Свързаният елемент не е намерен" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Недостатъчни права" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Пакетът не е намерен" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Свързаният елемент беше създаден успешно" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Свързаният елемент беше обновен успешно" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Свързаният елемент е изтрит" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Нямате право да изтривате свързан елемент %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Приложение" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Идея" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Новинарска статия" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Хартия" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Публикация" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Визуализация" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "История на ревизии на CKAN хранилище" @@ -711,10 +621,10 @@ msgstr "Други" msgid "Tag not found" msgstr "Етикетът не е намерен" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Потребителят не е намерен" @@ -734,13 +644,13 @@ msgstr "Нямате право да изтривате потребител с msgid "No user specified" msgstr "Не е посочен потребител" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Нямате право да обработвате потребител %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Профилът е обновен" @@ -764,75 +674,87 @@ msgstr "Потребител \"%s\" вече е регистриран, но В msgid "Unauthorized to edit a user." msgstr "Нямате право да редактирате потребител" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Потребител %s няма право да редактира %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Вход неуспешен. Грешно потребителско име или парола." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Нямате право да заявявате възстановяване на парола." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" съвпадащи потребители" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Няма такъв потребител: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Моля, проверете входящата си поща за получен код за възстановяване." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Не може да се изпрати линк за възстановяване: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Нямате право да възстановявате парола." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Невалиден код за възстановяване. Моля, опитайте отново." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Вашата парола беше възстановена." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Паролата трябва да е с дължина най-малко 4 символа." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Въведените пароли не съвпадат." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Трябва да предоставите парола" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Елементът за следене не е намерен" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} не е намерен" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Нямате право да четете {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Всичко" @@ -842,7 +764,7 @@ msgstr "Липсваща стойност" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Пренасочването към външен сайт не е позволено." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" @@ -954,7 +876,7 @@ msgstr "{actor} добави {related_type} {related_item} към набора msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} добави {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -962,10 +884,10 @@ msgid "View" msgstr "Преглед" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "1 ново събитие от {site_title}" -msgstr[1] "{n} нови дейности от сайта {site_title}" +msgstr[0] "" +msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1015,135 +937,135 @@ msgstr "ноември" msgid "December" msgstr "декември" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Току-що" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "преди {mins} минута" msgstr[1] "преди {mins} минути" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "преди {hours} час" msgstr[1] "преди {hours} часа" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "преди {days} ден" msgstr[1] "преди {days} дена" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "преди {months} месец" msgstr[1] "преди {months} месеца" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "преди повече от {years} година" msgstr[1] "преди повече от {years} години" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Обновете своя аватара на gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Непознат" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Ресурс без име" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Създаден е нов набор от данни" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Редактирани ресурси." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Редактирани настройки." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} преглеждане" msgstr[1] "{number} преглеждания" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} скорошно преглеждане" @@ -1174,7 +1096,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1199,7 +1121,7 @@ msgstr "Покана за {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Липсваща стойност" @@ -1212,7 +1134,7 @@ msgstr "Полето за въвеждане '%(name)s' не беше очакв msgid "Please enter an integer value" msgstr "Моля, въведете целочислена стойност" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1222,11 +1144,11 @@ msgstr "Моля, въведете целочислена стойност" msgid "Resources" msgstr "Ресурси" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Невалиден/ни ресурс/и към пакет" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Допълнителни" @@ -1236,25 +1158,22 @@ msgstr "Допълнителни" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Речников етикет \"%s\" не съществува" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Потребител" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Набор данни" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Група" @@ -1266,378 +1185,369 @@ msgstr "Не може да бъде разчетен като валиден JSO msgid "A organization must be supplied" msgstr "Трябва да бъде посочена организация" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Не можете да премахнете набор данни от съществуваща организация" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Организацията не съществува" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Не можете да добавите набор данни към тази организация" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Невалидна целочислена стойност" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Трябва да бъде естествено число" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Трябва да бъде положително цяло число" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Невалиден формат на дата" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Не се допускат връзки в log_message." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Ресурси" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Свързан" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Това име или идентификатор на група не съществува." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Тип дейност" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Името трябва да бъде низ." -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Това име не може да бъде използвано" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Името може да е най-много %i символа" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Този URL вече е в употреба." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Името \"%s\" е по-кратко от минимално допустимите %s символа" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Името \"%s\" е по-дълго от максимално допустимите %s символа" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Версията не може да бъде по-дълга от %i символа" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Дублиращ се ключ \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Вече съществува група с това име" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Етикет \"%s\" е по-кратък от минимално допустимите %s символа" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Етикет \"%s\" е по-дълъг от максимално допустимите %i символа" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Етикет \"%s\" трябва да съдържа само малки букви на латиница, цифри и символите за тире и долна черта: -_" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Етикет \"%s\" не трябва да съдържа главни букви" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Потребителското име трябва да бъде низ" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Това потребителско име не е налично." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Моля, въведете двете пароли:" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Паролата трябва да е низ" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Паролата трябва да е с дължина най-малко 4 символа" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Въведените пароли не съвпадат" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Редакцията не е приета, тъй като прилича на спам. Моля, избягвайте връзки (URL адреси) в описанието." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Името трябва да е най-малко %s символа" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Това име на речник вече се използва" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Стойността на ключа не може да бъде променена от %s на %s. Ключът може само да се чете, без да се променя." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Етикет за речник не беше намерен." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Таг %s не принадлежи на речник %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Няма име на етикет" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Таг %s вече е бил добавен към речник %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Моля, въведете валиден URL адрес" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "ролята не съществува" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Набори от данни без организация не могат да са частни." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Не е списък" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Не е низ" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Този родител ще създаде цикъл в йерархията" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Създаване на обект %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Създаване на връзка между пакети %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Създаване на член-обект %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Опит за създаване на организация като група." -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Трябва да се зададе идентификатор или име на пакет (параметър \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Трябва да посочите оценка (параметър \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Оценката трябва да бъде цяло число." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Оценката трябва да е между %i и %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Трябва да сте влезли в системата, за да следвате потребители" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Не можете да следвате себе си" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Вече следвате {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Трябва да сте влезли в системата, за да следвате набор от данни." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Потребител {username} вече съществува." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Трябва да сте регистрирани, за да следвате група." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Изтриване на пакет: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Изтриване на %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Изтриване на член %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "Идентификаторът липсва в данните" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Речник \"%s\" не може да бъде намерен" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Етикет \"%s\" не може да бъде намерен" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Трябва да сте влезли в системата, за да престанете да следвате нещо." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Не следвате {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Ресурсът не беше намерен." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Не посочвайте, ако използвате \"query\" параметър" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Трябва да е двойка :" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Полето \"{field}\" не е разпознато в resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "неизвестен потребител" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Елементът не беше намерен." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Пакетът не беше намерен." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Обновяване на обект %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Обновяване на връзка между пакети: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus не беше намерен." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Организацията не беше намерена" @@ -1668,7 +1578,7 @@ msgstr "Трябва да сте влезли в системата, за да msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Не е намерен пакет за този ресурс, автентичността не може да бъде проверена." @@ -1678,94 +1588,98 @@ msgstr "Не е намерен пакет за този ресурс, автен msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Потребител %s няма право да редактира тези пакети" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Потребител %s няма право да създава групи" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Потребител %s няма право да създава организации" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "Потребител {user} няма право да създава потребители посредством API." -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Нямате право да създавате потребители" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Групата не беше намерена." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Създаването на пакет изисква валиден API ключ" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Създаването на група изисква валиден API ключ" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Потребител %s няма право да добавя членове" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Потребител %s няма право да редактира група %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Потребител %s няма право да изтрие ресурс %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Само собсвеникът може да изтрие свързан елемент" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Потребител %s няма право да изтрие връзка %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Потребител %s няма право да изтрива групи" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Потребител %s няма право да изтрие група %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Потребител %s няма право да изтрива организации" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Потребител %s няма право да изтрие организация %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Потребител %s няма право да изтрие task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Недостатъчни права" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1786,7 +1700,7 @@ msgstr "Потребител %s няма право да чете този ре msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Трябва да влезете в профила си, за да получите достъп до потребителския панел." @@ -1864,63 +1778,63 @@ msgstr "Редактирането на пакет изисква валиден msgid "Valid API key needed to edit a group" msgstr "Редактирането на група изисква валиден API ключ" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Лиценз за Предоставяне на Обществено Достояние (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Лиценз за Отворени Бази Данни (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Лиценз за Признание" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Признание" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Признание, Споделяне на споделеното" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Лиценз за свободна документация" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Друг (отворен лиценз)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Друг (Обществено Достояние)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Друг (Признание)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "Отворен Правителствен Лиценз на Обединеното Кралство (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Некомерсиален лиценз (Всичко)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Друг (некомерсиален лиценз)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Друг (не отворен лиценз)" @@ -2027,8 +1941,6 @@ msgstr "Потвърждаване" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Отказ" @@ -2053,12 +1965,13 @@ msgstr "Връзка" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Премахване" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Изображение" @@ -2131,7 +2044,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL адрес" @@ -2145,7 +2057,6 @@ msgstr "URL адрес" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Редакция" @@ -2184,34 +2095,42 @@ msgstr "Задвижван от Site Title: This is the title of this CKAN instance It " @@ -2362,7 +2278,6 @@ msgid "" msgstr "Това Data API е достъпно само чрез следните действия от CKAN API за действия." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Създаване" @@ -2514,7 +2429,7 @@ msgstr "Избиране" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2547,8 +2462,6 @@ msgstr "Формуляр за Група" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Потвърждаване на изтриването" @@ -2566,7 +2479,7 @@ msgstr "Сигурни ли сте, че искате да изтриете то #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2711,14 +2624,12 @@ msgstr "Сигурни ли сте, че искате да изтриете то #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Изтриване" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Запазване" @@ -2806,7 +2717,6 @@ msgstr "моята-група" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Описание" @@ -2867,7 +2777,7 @@ msgstr "Сравняване" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2967,38 +2877,30 @@ msgstr "" msgid "{0} statistics" msgstr "{0} статистически данни" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "набор от данни" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "набори от данни" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "организация" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "организации" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "група" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "групи" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "свързан елемент" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "свързани елементи" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3016,7 +2918,6 @@ msgid "Custom" msgstr "Персонализиран" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Формулярът съдържа невалидни записи:" @@ -3029,7 +2930,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL адрес на изображението" @@ -3074,7 +2974,7 @@ msgstr "Чернова" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3108,6 +3008,20 @@ msgstr "Търсене на организации..." msgid "There are currently no organizations for this site" msgstr "Не са налични организации за тази страница" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Потребителско име" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Обновяване на член" @@ -3242,7 +3156,6 @@ msgid "Preview" msgstr "Преглед" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Обновяване" @@ -3301,7 +3214,7 @@ msgstr "" msgid "Add" msgstr "Добавяне" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3333,28 +3246,32 @@ msgstr "Грешка при качването:" msgid "Error:" msgstr "Грешка:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Статус" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Последно обновяване" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Никога" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Качване на лог-файл" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Детайли" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Край на лог-файла" @@ -3458,7 +3375,7 @@ msgid "unknown" msgstr "неизвестен" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Създаден" @@ -3494,6 +3411,10 @@ msgid "" "add some?

" msgstr "

Този набор от данни не съдържа данни, защо да не добавите някакви?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API документация" @@ -3550,7 +3471,7 @@ msgid "Version" msgstr "Версия" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Статус" @@ -3565,7 +3486,6 @@ msgstr "Data API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Заглавие" @@ -3585,30 +3505,30 @@ msgstr "напр. Някои полезни пояснения относно д msgid "eg. economy, mental health, government" msgstr "напр. икономика, психично здраве, правителство" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Описание и допълнителна информация за лиценза можете да намерите на opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Организация" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Няма организация" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Видимост" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Публичен" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Активен" @@ -3735,7 +3655,7 @@ msgstr "Разучаване" msgid "More information" msgstr "Още информация" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Внедряване" @@ -3821,139 +3741,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Свързан формуляр" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Какво представляват свързаните елементи?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Свързана Медия е всяко приложение, статия, визуализация или идея, свързана с този набор от данни.

Това например може да бъде персонализирана визуализация, пиктография или диаграма, приложение, използващо всички или част от данните, или дори новинарска история, която се позовава на набора от данни.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Сигурни ли сте, че желаете да изтриете свързания елемент - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Приложения и идеи" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Показване на %(first)s - %(last)s от %(item_count)s намерени свързани елементи

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s намерени свързани елементи

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Все още няма качени приложения." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Какво представляват приложенията?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Това са приложения, основаващи се на наборите от данни, както и идеи за неща, за които биха могли да бъдат използвани." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Филтриране на резултати" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Филтрираен по по тип" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Всички" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Подреждане по" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "По подразбиране" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Показване само на препоръчани елементи" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Прилагане" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Редактиране на свързания елемент" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Редактиране на свързаните" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Редактиране на свързания елемент" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Създаване на свързан елемент" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Създаване на свързани" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Създаване на свързан елемент" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Моят свързан елемент" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Малко информация за елемент..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Тип" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Сигурни ли сте, че искате да изтриете този свързан елемент?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Отиване на {related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "Разлики" @@ -4041,7 +3828,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Няма {facet_type}, отговарящ на търсенето" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Начало" @@ -4050,7 +3836,7 @@ msgid "Language" msgstr "Език" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4082,21 +3868,25 @@ msgstr "Все още няма приложения, идеи, новини ил msgid "Add Item" msgstr "Добавяне на елемент" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Изпращане" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Подреждане по" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Филтриране на резултати" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Моля, опитайте да потърсите отново

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4171,7 +3961,7 @@ msgid "Subscribe" msgstr "Абониране" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4190,10 +3980,6 @@ msgstr "Редакции" msgid "Search Tags" msgstr "Етикети за търсене" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Потребителски панел" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Известия за новини" @@ -4257,36 +4043,27 @@ msgstr "Вашият профил позволява на други CKAN пот msgid "Change details" msgstr "Промяна на детайли" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Потребителско име" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Пълно име" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "напр. Марта Иванова" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "напр. marta@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Малко информация за Вас" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Абониране за имейл известия " -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Променяна на паролата" @@ -4519,15 +4296,15 @@ msgstr "Все още не е качено" msgid "DataStore resource not found" msgstr "Ресурсът от DataStore хранилището не е намерен" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Ресурс \"{0}\" не е намерен." @@ -4535,6 +4312,14 @@ msgstr "Ресурс \"{0}\" не е намерен." msgid "User {0} not authorized to update resource {1}" msgstr "Потребител {0} няма право да обновява ресурс {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4561,6 +4346,10 @@ msgstr "Код на държавата" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4578,65 +4367,25 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Авторски права (c) 2010 Майкъл Лайбман, http://github.com/mleibman/slickgrid\n\nС настоящото се предоставя разрешение, освободено от заплащане, на всяко лице, получило копие от този софтуер и свързаната документация (the\n\"Software\"), да се разпорежда със Софтуера без ограничение, включително\nбез ограничение на правомощията да ползва, размножава, изменя, слива, публикува,\nразпространява, преотстъпва правата, и/или продава копия от Софтуера, и да\nразрешава на лица, които Софтуерът оправомощава за това, задължавайки се да спазват\nследните условия:\n\nГорната декларация за авторски права и следващото разрешение следва да бъдат включвани във всички копия или значителни части от Софтуера.\n\nСОФТУЕРЪТ СЕ ПРEДОСТАВЯ \"ТАКА, КАКТО Е\", БЕЗ КАКВОТО И ДА Е ОПРАВОМОЩАВАНЕ, \nИЗРИЧНО ИЛИ МЪЛЧАЛИВО, ВКЛЮЧИТЕЛНО, НО НЕ ОГРАНИЧЕНО ДО ОПРАВОМОЩАВАНЕТО ЗА ПОСЛУЖВАНЕ ЗА ТЪРГОВСКИ ЦЕЛИ, ГОДНОСТ ЗА ОСОБЕНА УПОТРЕБА И ЗАБРАНА ЗА ДОСТЪП.\nПРИ НИКАКВИ ОБСТОЯТЕЛСТВА АВТОРИТЕ ИЛИ ДЪРЖАТЕЛИТЕ НА АВТОРСКИТЕ ПРАВА НЕ СА ОТГОВОРНИ ЗА ВРЕДИ, НЕЗАВИСИМО ДАЛИ ПРОИЗТИЧАЩИ ОТ ДОГОВОРНИ ЗАДЪЛЖЕНИЯ, НЕПОЗВОЛЕНО УВРЕЖДАНЕ ИЛИ ДРУГО, ПРИЧИНЕНИ ОТ ИЛИ ВЪВ ВРЪЗКА СЪС СОФТУЕРА ИЛИ ДРУГИ ДЕЙСТВИЯ НА РАЗПОРЕЖДАНЕ СЪС СОФТУЕРА." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Тази компилирана версия на SlickGrid е придобита с Google Closure\nCompiler, използвайки следната команда:\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\nИма още два файла, които са необходими за това изгледът SlickGrid да функционира правилно:\n * jquery-ui-1.8.16.custom.min.js\n* jquery.event.drag-2.0.min.js\nТе са включени в източника Recline, но не са включени в изградения файл, за да се улесни справянето с проблеми при съвместяване.\nМоля, проверете лиценза за SlickGrid във включения файл MIT-LICENSE.txt\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4695,7 +4444,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Общ брой набори от данни" @@ -4723,33 +4471,27 @@ msgstr "Нови набори от данни" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Набори от данни с най-висока оценка" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Средно висока оценка" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Брой на оценки" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Без оценка" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Най-често редактирани набори от данни" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Брой редакции" @@ -4759,12 +4501,10 @@ msgstr "Няма редактирани набори от данни" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Най-големи групи" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Брой набори от данни" @@ -4774,7 +4514,6 @@ msgstr "Няма групи" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Най-визоко класирани етикети" @@ -4789,8 +4528,8 @@ msgstr "Брой набори от данни" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Потребители с най-много набори от данни." +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4800,42 +4539,16 @@ msgstr "Меню Статистика" msgid "Total Number of Datasets" msgstr "Общ брой набори от данни" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Статистика" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Седмичнен брой ревизии на наборите от данни" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Потребители, притежаващи най-много набори от данни" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Последно обновяване на страницата:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Класация - статистика" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Класация на набори от данни" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Изберете атрибут за набор от данни и открийте кои категории в тази област съдържат най-много набори от данни. Пример: етикети, групи, лиценз, res_format, страна." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Избиране на област" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/ca/LC_MESSAGES/ckan.mo b/ckan/i18n/ca/LC_MESSAGES/ckan.mo index ef4e72d5330..315a22cf7e7 100644 Binary files a/ckan/i18n/ca/LC_MESSAGES/ckan.mo and b/ckan/i18n/ca/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ca/LC_MESSAGES/ckan.po b/ckan/i18n/ca/LC_MESSAGES/ckan.po index ce63191333e..aa118c92fae 100644 --- a/ckan/i18n/ca/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ca/LC_MESSAGES/ckan.po @@ -3,259 +3,259 @@ # This file is distributed under the same license as the ckan project. # # Translators: -# Adrià Mercader , 2011,2013-2015 +# Adrià Mercader , 2015 # ilabastida , 2011,2014 # Sean Hammond , 2013 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-02-25 10:36+0000\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-04 10:58+0000\n" "Last-Translator: Adrià Mercader \n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/ckan/language/ca/)\n" +"Language-Team: Catalan (http://www.transifex.com/okfn/ckan/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Funció d'autorització no trobada: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Administració" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Contribuïdor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Membre" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Heu de ser administradors del sistema per administrar" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Nom del lloc" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Estil" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Titular del lloc" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Logotip del lloc" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Quant a" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Text de presentació" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Text introductori" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Text de la pàgina d'inici" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "CSS personalitzat" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Full CSS personalitzable que s'insereix a la capçalera de la pàgina" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Pàgina d'inici" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "No es pot purgar el paquet %s ja que la revisió associada %s inclou paquets de dades no esborrats %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problema al purgar la revisió %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Purga completa" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Acció no implementada." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "No esteu autoritzats a editar aquesta pàgina" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Accés denegat" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "No trobat" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Mala sol·licitud" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Acció desconeguda: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Error JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Dades de la sol·licitud incorrectes: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "No es pot llistar l'entitat de tipus: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "No es pot llegir l'entitat de tipus: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "No es pot crear una nova entitat d'aquest tipus: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "No s'ha pogut afegir el conjunt de dades a l'índex de cerca" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "No es pot editer l'entitat de tipus: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "No s'ha pogut actualitzar l'índex de cerca" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "No es pot eliminar l'entitat de tipus: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "No s'ha especificat una revisió" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "No hi ha cap revisiió amb id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Falta el terme de cerca ('since_id=UUID' o 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "No s'han pogut llegir els paràmetres: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Opció de cerca incorrecta: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Registre desconegut: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Valor qjsn mal format: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Els paràmetres de la sol·licitud han d'estar en forma d'un diccionari codificat com a JSON." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Grup no trobat" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "Organització no trobada" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Tipus de grup incorrecte" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "No autoritzat a llegir el grup %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -266,23 +266,23 @@ msgstr "No autoritzat a llegir el grup %s" msgid "Organizations" msgstr "Organitzacions" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grups" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -290,394 +290,303 @@ msgstr "Grups" msgid "Tags" msgstr "Etiquetes" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formats" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Llicències" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "No autoritzat a actualitzar per lots" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "No autoritzat a crear un grup" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "L'usuari %r no està autoritzat a editar %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Error d'integritat" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "L'usuari %r no està autoritzat a editar les autorizacions de %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "No teniu autorització per a esborrar el grup %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Heu esborrat l'organització" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Heu esborrat el grup" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s ha sigut esborrat." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "No teniu autorització per a afegir un membre al grup %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "No teniu autorització per a esborrar membres del grup %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Heu esborrat el membre del grup. " -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Seleccioneu dues revisions abans de fer la comparació." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "L'usuari %r no està autoritzat a editar %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Historial de revisions del grup de CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Canvis recents al grup de CKAN" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Missatge de registre: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "No teniu autorització per a veure el grup {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "No esteu seguint {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "No seguiràs {0} a partir d'ara" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "No teniu autorització per a veure els seguidors %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Aquest lloc es troba fora de línia. La base de dades no ha estat inicialitzada." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Si us plau update your profile i afegiu la vostra adreça de correu electonic i el nom complet. {site} utilitza el vostre correu electrònic si necessiteu restaurar la contrasenya." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Si us plau, actualitzeu el vostre perfil i afegiu la vostra direcció de correu elctrònic" -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s usa el vostre correu electrònic si mai necessiteu restaurar la contrasenya." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Si us plau, actualitzeu el vostre perfil i afegiu el vostre nom complet." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "El paràmetre \"{parameter_name}\" no és un número enter" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Conjunt de dades no trobat" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "No autoritzat a llegir el paquet %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Format de revisió invàlid: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Els conjunts de dades {package_type} en format {format} no estan suportats (no s'ha trobat la plantilla {file})." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Historial de revisions dels conjunts de dades de CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Canvis recents als conjunt de dades de CKAN" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "No autoritzat a crear un paquet" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "No teniu autorització per a modificar aquest recurs" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Recurs no trobat" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "No teniu autorització per a modificar aquest conjunt de dades" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "No s'ha trobat el conjunt de dades {id}." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Afegiu almenys un recurs de dades" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Error" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "No teniu autorització per a crear un recurs" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "No teniu autorització per a afegir un recurs a aquest conjunt de dades" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "No s'ha pogut afegir el conjunt de dades a l'índex de cerca." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "No s'ha pogut actualitzar l'índex de cerca." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Heu esborrat el conjunt de dades. " + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "No teniu autorització per a esborrar el paquet %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Heu esborrat el conjunt de dades. " - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Heu esborrat el recurs." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "No teniu autorització per a esborrar el recurs %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "No teniu autorització per a llegir el conjunt de dades %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "Vista del recurs no trobada" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "No autoritzat a llegir el recurs %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Dades del recurs no trobades" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "No hi ha descàrregues disponibles" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "No teniu autorització per a editar el recurs" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "Vista no trobada" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "No teniu autorització per editar la vista %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "Tipus de vista no trobat" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "Dades de la vista de recurs incorrectes" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "No teniu autorització per a veure la vista de recurs %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "No s'ha proporcionat la vista de recurs" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "No hi ha cap previsualització definida." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Més vistos" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "El més vist" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "El menys vist" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Més nou" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Més vell" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "No s'ha trobat l'element relacionat" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "No es troba l'element relacionat" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "No teniu autorització" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Aquest paquet no es troba" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "S'ha creat correctament l'element relacionat" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "S'ha modificat correctament l'element relacionat" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "S'ha eliminat l'element relacionat" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "No teniu autorització per a esborrar l'element relacionat %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Aplicació" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idea" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Artícle de notícies" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Article acadèmic" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Entrada (blog)" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualització" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Historial de canvis al repositori de CKAN" @@ -703,10 +612,10 @@ msgstr "Altres" msgid "Tag not found" msgstr "Etiqueta no trobada" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Usuari no trobat" @@ -726,13 +635,13 @@ msgstr "No autoritzat a eliminar l'usuari amb id \"{user_id}\"." msgid "No user specified" msgstr "No s'ha especificat cap usuari" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "No autoritzat a editar l'usuari %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Perfil actualitzat" @@ -756,75 +665,87 @@ msgstr "L'usuari \"%s\" ha estat registrat, pero encara teniu la sessió iniciad msgid "Unauthorized to edit a user." msgstr "No autoritzat a editar un usuari." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Usuari %s no autoritzat a editar %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "La contrasenya introuduïda és incorrecta" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Contrasenya antiga" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "Contrasenya incorrecta" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "No s'ha pogut iniciar sessió. Nom d'usuari o contrasenya incorrectes." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "No autoritzat a actualitzar la contrasenya." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" coincideix amb més d'un usuari" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Usuari desconegut: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Si us plau, comproveu la vostra safata d'entrada per veure si heu rebut un codi de reinici" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "No s'ha pogut enviar l'enllaç de reinici: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "No autoritzat a actualitzar la contrasenya." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Clau de reinici invàlida. Si us plau, torneu-ho a intentar" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "La vostra contrasenya s'ha actualitzat" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "La vostra contrasenya ha de tenir 4 caràcters o més." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Les contrasenyes que heu introduït no coincideiexen." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Cal que faciliteu una contrasenya" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "L'element de seguiment no es troba" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} no es troba" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "No teniu autorització per a llegir {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Tot" @@ -946,7 +867,7 @@ msgstr "{actor} ha afegit el {related_type} {related_item} del conjunt de dades msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} ha afegit {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -954,10 +875,10 @@ msgid "View" msgstr "Veure" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "1 nova activitat de {site_title}" -msgstr[1] "{n} noves activitats de {site_title}" +msgstr[0] "{n} nova activitat a {site_title}" +msgstr[1] "{n} noves activitats a {site_title}" #: ckan/lib/formatters.py:17 msgid "January" @@ -1007,135 +928,135 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Ara mateix" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "Fa {mins} minut" msgstr[1] "Fa {mins} minuts" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "Fa {hours} hora" msgstr[1] "Fa {hours} hores" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "Fa {days} dia" msgstr[1] "Fa {days} dies" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "Fa {months} mesos" msgstr[1] "Fa {months} mesos" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "fa un {years} any" msgstr[1] "fa uns {years} anys" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{day}{month}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day} {month} {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Actualitzeu el vostre avatar a gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Desconegut" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Recurs sense nom" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Nou conjunt de dades creat" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Recursos editats." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Preferències editades." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "vista {number}" msgstr[1] "vista {number}" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} vistes recents" @@ -1166,12 +1087,12 @@ msgstr "Heu sol·licitat reiniciar la clau de pas per al lloc {site_title}.\n\nS #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "Heu sigut convidats al lloc {site_title}. Se us ha creat un usuari amb el nom d'usuari {user_name}. Podeu canviar-lo posteriorment.\n\nPer acceptar, si us plau reinicieu la vostra contrasenya al següent enllaç:\n\n{reset_link}\n" +msgstr "Heu sigut convidats al lloc {site_title}. Se us ha creat un usuari, amb el nom {user_name}. Podeu canviar-lo després.\n\nPer acceptar la invitació, si us plau reinicieu la vostra contrasenya fent clic al següent enllaç:\n\n {reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1191,7 +1112,7 @@ msgstr "Invitació per a {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Falta el valor" @@ -1204,7 +1125,7 @@ msgstr "El camp %(name)s no s'esperava." msgid "Please enter an integer value" msgstr "Si us plau entreu un valor enter" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1214,11 +1135,11 @@ msgstr "Si us plau entreu un valor enter" msgid "Resources" msgstr "Recursos" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Recurs(os) invàlid(s)" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Extres" @@ -1228,25 +1149,22 @@ msgstr "Extres" msgid "Tag vocabulary \"%s\" does not exist" msgstr "El vocabulari d'etiquetes \"%s\" no existeix" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Usuari" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Conjunt de dades" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grup" @@ -1258,378 +1176,369 @@ msgstr "No s'ha pogut interpretar com a JSON vàlid" msgid "A organization must be supplied" msgstr "Heu de facilitar una organització" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "No podeu esborrar un conjunt de dades d'una organització existent" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "L'organització no existeix" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "No podeu afegir un conjunt de dades a aquesta organització" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Valor enter invàlid" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Ha de ser un nombre natural" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Ha de ser un valor enter positiu" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Format de la data incorrecte" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "No es permeten enllaços al missatge de registre" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "L'identificador del conjunt de dades ja existeix" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Recurs" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Relacionats" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Aquest nom o identificador de grup no existeix." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Tipus d'activitat" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Els noms han de ser cadenes de text" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Aquest nom no es pot fer servir" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "Ha de tenir al menys %s caràcters" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "El nom ha de tenir com a màxim %i caràcters" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "Ha de ser en minúscules i només contenir números i lletres sense caràcters especials (excepte -_)" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Aquesta URL ja està en ús." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "El nom \"%s\" té menys caràcters que el mínim %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "El nom \"%s\" té més caràcters que el màxim %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "La versió ha de tenir com a màxim %i caràcters" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Clau duplicada \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Aquest nom de grup ja existeix a la base de dades" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "La longitud de l'etiqueta \"%s\" és menor al mínim (%s)" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "La longitud de l'etiqueta \"%s\" és més gran que el permès %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "L'etiqueta \"%s\" ha de ser alfanumèrica o amb els símbols: -_" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "L'etiqueta \"%s\" ha d'estar en minúscules" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Els noms d'usuari han de ser cadenes de text" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Aquest nom de registre no es troba disponible." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Si us plau, introduïu les dues contrasenyes" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Les contrasenyes han de ser cadenes de text" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "La vostra contrasenya ha de tenir 4 caràcters o més" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Les contrasenyes introduïdes no coincideixen" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Actualització no permesa, ja que s'assembla a spam. Si us plau, eviteu enllaços en la vostra descripció" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "El nom ha de tenir al menys %s caràcters" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Aquest nom de vocabulari ja existeix." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "No es pot canviar el valor de la clau de %s a %s. Aquesta clau és de només lectura." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Vocabulari d'etiquetes no trobat." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "L'etiqueta %s no pertany al vocabulari %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Falta el nom de l'etiqueta" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "L'etiqueta %s ja pertany al vocabulari %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Si us plau, proporcioneu una URL vàlida" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "Aquest rol no existeix" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Els conjunts de dades sense organització no poden ser privats." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "No és una llista" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "No és text" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Aquest progenitor crearia un bucle en la jerarquia" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "\"filter_fields\" i \"filter_values\" han de tenir la mateixa longitud" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "\"filter_fields\" és requerit quan s;usa \"filter_values\"" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "\"filter_values\" és requerit quan s'usa \"filter_fields\"" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "Hi ha un altre camp amb el mateix nom" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "API REST: Creat objecte %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "API REST: Creada relació entre paquets: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "API REST: Crear objecte membre %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Esteu intentant crear una organizació com a grup" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Heu de proporcionar un identificador o nom de paquet (paràmetre \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Heu de proporcionar una valoració (paràmetre \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "La valoració ha de ser un valor enter." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "La valoració ha d'estar entre %i i %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Cal que us identifiqueu per a seguir usuaris" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "No us podeu seguir a vosaltres mateixos" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Ja esteu seguint {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Cal que us identifiqueu per a seguir un dataset" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "L'usuari {username} no existeix." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Cal que us identifiqueu per a seguir un grup" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "API REST: Esborrat Paquet: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "API REST: Esborrat %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "API REST: Esborrar el membre: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id no present a les dades" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "No s'ha trobat el vocabulari \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "No s'ha trobat l'etiqueta \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Cal que us identifiqueu per a seguir qualsevol cosa." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "No esteu seguint {0}" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Recurs no trobat" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "No ho especifiqueu si feu servir el paràmetre \"query\"" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Ha de ser parelles de tipus :" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Camp \"{field}\" no reconegut en resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "usuari desconegut:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Element no trobat." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "No s'ha trobat el paquet." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "API REST: Actualitzat objecte %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "API REST: Actualitzada la relació entre paquets: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "No s'ha trobat l'estat de tasques" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "No s'ha trobat l'organització." @@ -1660,7 +1569,7 @@ msgstr "Heu d'haver iniciat sessió per afegir un element relacionat" msgid "No dataset id provided, cannot check auth." msgstr "No s'ha proporcionat un identificador per al conjunt de dades, no es pot comprovar l'autorització." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "No s'ha trobat cap paquet per aquest recurs, no es pot comprovar l'autorització." @@ -1670,94 +1579,98 @@ msgstr "No s'ha trobat cap paquet per aquest recurs, no es pot comprovar l'autor msgid "User %s not authorized to create resources on dataset %s" msgstr "Usuari %s no autoritzat a crear recursos al conjunt de dades %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "L'usuari %s no està autoritzat a editar aquests conjunts de dades" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "L'usuari %s no està autoritzat a crear grups" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "L'usuari %s no té autorització per a crear organitzacions" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "L'usuari {user} no està autortizat a crear usuaris via la API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "No autoritzat a crear usuaris" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "No s'ha trobat el grup." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Es necessita una clau API vàlida per crear un conjunt de dades" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Es necessita una clau API vàlida per crear un grup" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "L'usuari %s no té autorització per a afegir membres" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "L'usuari %s no està autoritzat a editar el grup %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "L'usuari %s no té autorització per a eliminar el recurs %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "No s'ha trobat la vista del recurs, no es pot comprovar l'autorització." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Només el propietari pot eliminar un element relacionat" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "L'usuari %s no està autoritzat a esborrar la relació %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "L'usuari %s no té autorització per a eliminar grups" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "L'usuari %s no està autoritzat a esborrar el grup %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "L'usuari %s no té autorització per a eliminar organitzacions" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "L'usuari %s no té autorització per a eliminar l'organització %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "L'usuari %s no està autoritzat a esborrar l'estat de les tasques" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "No teniu autorització" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1778,7 +1691,7 @@ msgstr "L'usuari %s no està autoritzat a llegir el recurs %s" msgid "User %s not authorized to read group %s" msgstr "Usuari %s no autoritzat a llegir el grup %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Cal que us identifiqueu per a accedir al vostre panell." @@ -1856,63 +1769,63 @@ msgstr "Es necessita una clau API vàlida per editar un conjunt de dades" msgid "Valid API key needed to edit a group" msgstr "Es necessita una clau API vàlida per editar un grup" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "No s'ha especificat la llicència" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Altres (Oberta)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Altres (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Altres (Atribució)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Altres (No comercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Altres (No oberta)" @@ -2019,8 +1932,6 @@ msgstr "Confirma" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Cancel·lar" @@ -2045,12 +1956,13 @@ msgstr "Enllaç" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Esborra" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Imatge" @@ -2123,7 +2035,6 @@ msgstr "Reordenar vistes del recurs" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2137,7 +2048,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Editar" @@ -2176,34 +2086,42 @@ msgstr "Suportat per Site Title: This is the title of this CKAN instance It " @@ -2354,7 +2269,6 @@ msgid "" msgstr "Es pot accedir a la API de dades a través de les següents accions de la API de CKAN." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Crea" @@ -2506,7 +2420,7 @@ msgstr "Desplegable" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2539,8 +2453,6 @@ msgstr "Formulari de grup" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Confirmeu l'esborrat" @@ -2558,7 +2470,7 @@ msgstr "Segur que voleu esborrar el membre - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2703,14 +2615,12 @@ msgstr "Segur que voleu eliminar aquest membre?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Esborrar" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Desar" @@ -2798,7 +2708,6 @@ msgstr "el-meu-grup" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Descripció" @@ -2859,7 +2768,7 @@ msgstr "Comparar" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2959,38 +2868,30 @@ msgstr "Etiquetes freqüents" msgid "{0} statistics" msgstr "{0} estadístiques" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "conjunt de dades" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "conjunts de dades" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organització" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organitzacions" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "grup" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "grups" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "element relacionat" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "elements relacionats" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3008,7 +2909,6 @@ msgid "Custom" msgstr "Personalitzat" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "El formulari conté camps incorrectes:" @@ -3021,7 +2921,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL de la imatge" @@ -3066,7 +2965,7 @@ msgstr "Esborrany" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3100,6 +2999,20 @@ msgstr "Cercar organitzacions..." msgid "There are currently no organizations for this site" msgstr "Ara mateix no hi ha organitzacions en aquest lloc" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nom d'usuari" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Adreça de correu electrònic" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Actualitzar membre" @@ -3234,7 +3147,6 @@ msgid "Preview" msgstr "Previsualització" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Actualitza" @@ -3293,7 +3205,7 @@ msgstr "L'explorador de dades pot ser lent i poc fiable si la extensió de la Da msgid "Add" msgstr "Afegir" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3325,28 +3237,32 @@ msgstr "Error en la pujada:" msgid "Error:" msgstr "Error:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "Rastre del error:" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Estat" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Última actualització" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Mai" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Registre de pujada" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Detalls" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Fi del registre" @@ -3450,7 +3366,7 @@ msgid "unknown" msgstr "desconegut" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Creat" @@ -3486,6 +3402,10 @@ msgid "" "add some?

" msgstr "

Aquest conjunt de dades no té dades, perquè no afegir-ne?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Documentació de la API" @@ -3542,7 +3462,7 @@ msgid "Version" msgstr "Versió" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Estat" @@ -3557,7 +3477,6 @@ msgstr "API de dades" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Títol" @@ -3577,30 +3496,30 @@ msgstr "ex. Algunes notes útils sobre les dades" msgid "eg. economy, mental health, government" msgstr "ex. economia, salut mental, govern" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Les definicions de llicències i la informació addicional la podeu trobar a opendefinition.org " -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organització" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Cap organització" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Visibilitat" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Públic" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Actiu" @@ -3727,7 +3646,7 @@ msgstr "Explora" msgid "More information" msgstr "Més informació" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Incrustar" @@ -3813,139 +3732,6 @@ msgstr "Què és una vista?" msgid "A view is a representation of the data held against a resource" msgstr "Una vista és una representació de les dades d'un recurs" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Formulari d'elements relacionats" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Què són els elements relacionats?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Mitjans Relacioats és qualsevol aplicació, article, visualització, o idea relacionada amb aquest conjunt de dades.

Per exemple, pot ser una visualització personalitzada, pictograma o diagrama de barresm una aplicació usant totes o una part de les dades, o fins i tot una notícia que es refereix a aquest conjunt de dades.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Segur que voleu eliminar aquest element relacionat - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Aplicacions i Idees" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

S'està mostrant %(first)s - %(last)s dels %(item_count)s elements relacionats trobats

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s elements relacionats trobats

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "No s'ha enviat cap app encara." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Què són les aplicacions?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Aquestes aplicacions s'han creat amb els conjunts de dades i les idees per a coses que podrien ser fetes amb elles." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filtrar resultats" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtrar per tipus" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Tots" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Ordenar per" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Per defecte" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Mostra només elements destacats" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Aplicar" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Modifica l'element relacionat" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Modifica relacionats" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Modifica l'element relacionat" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Crea un element relacionat" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Crea relacionats" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Crea element relacionat" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "El meu element relacionat" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Una mica d'informació sobre l'element..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Tipus" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Segur que voleu esborrar aquest element relacionat?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Vés a {related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "Diferències" @@ -4033,7 +3819,6 @@ msgid "There are no {facet_type} that match this search" msgstr "No hi ha {facet_type} per a aquesta consulta" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Inici" @@ -4042,7 +3827,7 @@ msgid "Language" msgstr "Idioma" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4074,21 +3859,25 @@ msgstr "Encara no hi ha apps, idees, notícies o imatges que s'hagin relacionat msgid "Add Item" msgstr "Crea un element" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Enviar" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Ordena per" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtrar resultats" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Prova una altra cerca.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4163,7 +3952,7 @@ msgid "Subscribe" msgstr "Subscriure" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4182,10 +3971,6 @@ msgstr "Edicions" msgid "Search Tags" msgstr "Etiquetes de la cerca" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Panell de control" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Font de notícies" @@ -4249,36 +4034,27 @@ msgstr "El teu perfil permet a d'altres usuaris de CKAN que sàpigan qui ets i q msgid "Change details" msgstr "Canviar detalls" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nom d'usuari" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Nom complet" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "ex. Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "eg. joan@exemple.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Una mica d'informació sobre tu" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Subscriu-me als correus de notificació" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Canviar contrasenya" @@ -4511,15 +4287,15 @@ msgstr "Encara no pujat" msgid "DataStore resource not found" msgstr "Recurs de la DataStore no trobat" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "Les dades són invàlides (per exemple: un valor numèric fora del seu rang o que ha sigut afegit en un camp de text)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "No s'ha trobat el recurs \"{0}\"." @@ -4527,6 +4303,14 @@ msgstr "No s'ha trobat el recurs \"{0}\"." msgid "User {0} not authorized to update resource {1}" msgstr "L'usuari {0} no té prou permisos per a modificar el recurs {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conjunts de dades per pàgina" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configuració de prova" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "Camp personalitzat ascendent" @@ -4553,6 +4337,10 @@ msgstr "Codi de país" msgid "custom resource text" msgstr "Text personalitzat" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Aquest text no està traduït" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4570,65 +4358,25 @@ msgstr "URL de la imatge" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "p.ex. http://example.com/image.jpg (si es deixa en blanc s'usa la URL del recurs)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "Explorador de dades" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "Taula" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "Gràfic" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "Mapa" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Aquesta versió compilñada de SlickGrid s'ha obtingut amb el compilador Google Closure,\nusant la comanda següent:\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nCalen dos arxius més per a que la vista de SlickGrid funcioni correctament:\n\n * jquery-ui-1.8.16.custom.min.js \n * jquery.event.drag-2.0.min.js\n\nEstan incloses al codi font Recline, però no s'han inclòs a l'arxiu generat\nper tal de gestionar fàcilment qualsevol problema de compatibilitat.\n\nSi us plau fés un cop d'ull a la llicència de SlickGrid que hi ha a MIT-LICENSE.txt.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "error carregant la vista" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4687,7 +4435,6 @@ msgid "Cluster markers" msgstr "Agregar marcadors" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Nombre total de conjunts de dades" @@ -4715,33 +4462,27 @@ msgstr "Nous conjunts de dades" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Conjunts de dades més ben valorats" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Valoració mitjana" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Nombre de valoracions" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Sense valoracions" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Conjunts de dades més editats" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Nombre d'edicions" @@ -4751,12 +4492,10 @@ msgstr "Conjunts de dades sense editar" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Grups més grans" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Nombre de conjunts de dades" @@ -4766,7 +4505,6 @@ msgstr "No hi ha grups" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Etiquetes més freqüents" @@ -4781,8 +4519,8 @@ msgstr "Nombre de conjunts de dades" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Usuaris propietaris de la majoria de conjunts de dades" +msgid "Users Creating Most Datasets" +msgstr "Usuaris que han creat més conjunts de dades" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4792,42 +4530,16 @@ msgstr "Menu d'estadístiques" msgid "Total Number of Datasets" msgstr "Nombre total de conjunts de dades" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Estadístiques" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Revisions en conjunts de dades per setmana" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Usuaris amb més conjunts de dades" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Pàgina actualitzada per últim cop:" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Text" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Classificació - Estadístiques" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Classificació per al conjunt de dades" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Escolliu un atribut dels conjunt de dades per veure quines categories en aquest àmbit tenen més conjunts de dades. P.ex. tags, groups, license, res_format, country." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Escolliu àmbit" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "S'ha produït un error: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "Lloc web" diff --git a/ckan/i18n/check_po_files.py b/ckan/i18n/check_po_files.py index 0a8eb5348c8..2b8c12a0d42 100755 --- a/ckan/i18n/check_po_files.py +++ b/ckan/i18n/check_po_files.py @@ -10,9 +10,11 @@ pip install polib ''' +import polib import re import paste.script.command + def simple_conv_specs(s): '''Return the simple Python string conversion specifiers in the string s. @@ -24,27 +26,6 @@ def simple_conv_specs(s): simple_conv_specs_re = re.compile('\%\w') return simple_conv_specs_re.findall(s) -def test_simple_conv_specs(): - assert simple_conv_specs("Authorization function not found: %s") == ( - ['%s']) - assert simple_conv_specs("Problem purging revision %s: %s") == ( - ['%s', '%s']) - assert simple_conv_specs( - "Cannot create new entity of this type: %s %s") == ['%s', '%s'] - assert simple_conv_specs("Could not read parameters: %r") == ['%r'] - assert simple_conv_specs("User %r not authorized to edit %r") == ( - ['%r', '%r']) - assert simple_conv_specs( - "Please update your profile and add your email " - "address and your full name. " - "%s uses your email address if you need to reset your password.") == ( - ['%s', '%s']) - assert simple_conv_specs( - "You can use %sMarkdown formatting%s here.") == ['%s', '%s'] - assert simple_conv_specs( - "Name must be a maximum of %i characters long") == ['%i'] - assert simple_conv_specs("Blah blah %s blah %(key)s blah %i") == ( - ['%s', '%i']) def mapping_keys(s): '''Return a sorted list of the mapping keys in the string s. @@ -57,20 +38,6 @@ def mapping_keys(s): mapping_keys_re = re.compile('\%\([^\)]*\)\w') return sorted(mapping_keys_re.findall(s)) -def test_mapping_keys(): - assert mapping_keys( - "You have requested your password on %(site_title)s to be reset.\n" - "\n" - "Please click the following link to confirm this request:\n" - "\n" - " %(reset_link)s\n") == ['%(reset_link)s', '%(site_title)s'] - assert mapping_keys( - "The input field %(name)s was not expected.") == ['%(name)s'] - assert mapping_keys( - "[1:You searched for \"%(query)s\". ]%(number_of_results)s " - "datasets found.") == ['%(number_of_results)s', '%(query)s'] - assert mapping_keys("Blah blah %s blah %(key)s blah %i") == ( - ['%(key)s']), mapping_keys("Blah blah %s blah %(key)s blah %i") def replacement_fields(s): '''Return a sorted list of the Python replacement fields in the string s. @@ -83,11 +50,6 @@ def replacement_fields(s): repl_fields_re = re.compile('\{[^\}]*\}') return sorted(repl_fields_re.findall(s)) -def test_replacement_fields(): - assert replacement_fields( - "{actor} added the tag {object} to the dataset {target}") == ( - ['{actor}', '{object}', '{target}']) - assert replacement_fields("{actor} updated their profile") == ['{actor}'] class CheckPoFiles(paste.script.command.Command): @@ -97,19 +59,39 @@ class CheckPoFiles(paste.script.command.Command): parser = paste.script.command.Command.standard_parser(verbose=True) def command(self): - import polib - test_simple_conv_specs() - test_mapping_keys() - test_replacement_fields() for path in self.args: print u'Checking file {}'.format(path) - po = polib.pofile(path) - for entry in po.translated_entries(): - if not entry.msgstr: - continue - for function in (simple_conv_specs, mapping_keys, - replacement_fields): - if not function(entry.msgid) == function(entry.msgstr): - print " Format specifiers don't match:" - print u' {0} -> {1}'.format(entry.msgid, entry.msgstr) + errors = check_po_file(path) + if errors: + for msgid, msgstr in errors: + print 'Format specifiers don\'t match:' + print u' {0} -> {1}'.format( + msgid, msgstr.encode('ascii', 'replace')) + + +def check_po_file(path): + errors = [] + + def check_translation(validator, msgid, msgstr): + if not validator(msgid) == validator(msgstr): + errors.append((msgid, msgstr)) + + po = polib.pofile(path) + for entry in po.translated_entries(): + if entry.msgid_plural and entry.msgstr_plural: + for function in (simple_conv_specs, mapping_keys, + replacement_fields): + for key, msgstr in entry.msgstr_plural.iteritems(): + if key == '0': + check_translation(function, entry.msgid, + entry.msgstr_plural[key]) + else: + check_translation(function, entry.msgid_plural, + entry.msgstr_plural[key]) + elif entry.msgstr: + for function in (simple_conv_specs, mapping_keys, + replacement_fields): + check_translation(function, entry.msgid, entry.msgstr) + + return errors diff --git a/ckan/i18n/ckan.pot b/ckan/i18n/ckan.pot index 93cd8991856..e8c504d15ed 100644 --- a/ckan/i18n/ckan.pot +++ b/ckan/i18n/ckan.pot @@ -6,252 +6,252 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ckan 2.4a\n" +"Project-Id-Version: ckan 2.5.0b\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:29+0000\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -261,416 +261,325 @@ msgstr "" msgid "Organizations" msgstr "" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 ckan/templates/revision/diff.html:16 +#: ckan/templates/package/read_base.html:20 ckan/templates/revision/diff.html:16 #: ckan/templates/revision/read.html:84 msgid "Groups" msgstr "" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 ckan/templates/tag/index.html:3 #: ckan/templates/tag/index.html:6 ckan/templates/tag/index.html:12 msgid "Tags" msgstr "" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "" -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address " -"and your full name. {site} uses your email address if you need to reset your " -"password." -msgstr "" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "" -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported (template" " file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 +#, python-format +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "" @@ -696,10 +605,10 @@ msgstr "" msgid "Tag not found" msgstr "" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "" @@ -719,13 +628,13 @@ msgstr "" msgid "No user specified" msgstr "" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "" @@ -749,75 +658,87 @@ msgstr "" msgid "Unauthorized to edit a user." msgstr "" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "" @@ -937,7 +858,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -945,7 +866,7 @@ msgid "View" msgstr "" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" msgstr[1] "" @@ -998,135 +919,135 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" msgstr[1] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1157,8 +1078,8 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you " -"with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you" +" with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1183,7 +1104,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "" @@ -1196,7 +1117,7 @@ msgstr "" msgid "Please enter an integer value" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 #: ckan/templates/package/snippets/resources.html:20 @@ -1205,11 +1126,11 @@ msgstr "" msgid "Resources" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "" @@ -1219,24 +1140,21 @@ msgstr "" msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "" @@ -1248,376 +1166,367 @@ msgstr "" msgid "A organization must be supplied" msgstr "" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "Must be purely lowercase alphanumeric (ascii) characters and these symbols: -_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "" @@ -1648,7 +1557,7 @@ msgstr "" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "" @@ -1658,94 +1567,98 @@ msgstr "" msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1766,7 +1679,7 @@ msgstr "" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1844,63 +1757,63 @@ msgstr "" msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "" @@ -2007,8 +1920,6 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "" @@ -2032,12 +1943,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 ckan/templates/snippets/search_form.html:65 +#: ckan/templates/macros/form.html:235 ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "" @@ -2110,7 +2022,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "" @@ -2124,7 +2035,6 @@ msgstr "" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "" @@ -2163,34 +2073,42 @@ msgstr "" msgid "Sysadmin settings" msgstr "" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" msgstr[0] "" msgstr[1] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2198,7 +2116,6 @@ msgstr "" #: ckan/templates/package/base.html:17 ckan/templates/package/base.html:21 #: ckan/templates/package/search.html:4 ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2207,14 +2124,13 @@ msgstr "" msgid "Datasets" msgstr "" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 ckan/templates/tag/index.html:35 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "" @@ -2250,23 +2166,23 @@ msgstr "" msgid "Trash" msgstr "" -#: ckan/templates/admin/config.html:11 ckan/templates/admin/confirm_reset.html:7 +#: ckan/templates/admin/config.html:16 ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2335,7 +2251,6 @@ msgid "The Data API can be accessed via the following actions of the CKAN action msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "" @@ -2486,7 +2401,7 @@ msgstr "" #: ckan/templates/organization/activity_stream.html:6 #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 ckan/templates/user/read_base.html:20 msgid "Activity Stream" @@ -2518,8 +2433,6 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "" @@ -2536,7 +2449,7 @@ msgstr "" #: ckan/templates/group/edit_base.html:11 ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 #: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 msgid "Manage" @@ -2672,13 +2585,11 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "" @@ -2763,7 +2674,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "" @@ -2824,7 +2734,7 @@ msgstr "" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2924,38 +2834,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2973,7 +2875,6 @@ msgid "Custom" msgstr "" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "" @@ -2986,7 +2887,6 @@ msgid "http://example.com/my-image.jpg" msgstr "" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "" @@ -3030,7 +2930,7 @@ msgstr "" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 #: ckan/templates/user/read_base.html:96 @@ -3064,6 +2964,19 @@ msgstr "" msgid "There are currently no organizations for this site" msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3191,7 +3104,7 @@ msgstr "" msgid "Preview" msgstr "" -#: ckan/templates/package/edit_view.html:21 ckan/templates/related/edit_form.html:5 +#: ckan/templates/package/edit_view.html:21 msgid "Update" msgstr "" @@ -3248,7 +3161,7 @@ msgstr "" msgid "Add" msgstr "" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3280,28 +3193,32 @@ msgstr "" msgid "Error:" msgstr "" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3405,7 +3322,7 @@ msgid "unknown" msgstr "" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "" @@ -3441,6 +3358,10 @@ msgid "" " some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "" @@ -3497,7 +3418,7 @@ msgid "Version" msgstr "" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "" @@ -3512,7 +3433,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "" @@ -3532,30 +3452,30 @@ msgstr "" msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3682,7 +3602,7 @@ msgstr "" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "" @@ -3768,138 +3688,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this " -"dataset.

For example, it could be a custom visualisation, pictograph " -"or bar chart, an app using all or part of the data or even a news story that " -"references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -3987,7 +3775,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "" @@ -3996,7 +3783,7 @@ msgid "Language" msgstr "" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4026,21 +3813,25 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4115,7 +3906,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 ckan/templates/user/read_base.html:82 msgid "Email" msgstr "" @@ -4133,10 +3924,6 @@ msgstr "" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4198,35 +3985,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4458,15 +4237,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4474,6 +4253,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4500,6 +4287,10 @@ msgstr "" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4517,65 +4308,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js " -"--js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4635,7 +4385,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "" @@ -4663,33 +4412,27 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "" @@ -4699,12 +4442,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "" @@ -4714,7 +4455,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "" @@ -4729,7 +4469,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 @@ -4740,42 +4480,16 @@ msgstr "" msgid "Total Number of Datasets" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo index c01ef1fc73b..7ce1afaeefe 100644 Binary files a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo and b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po index eff92ceb049..10ff2270c0c 100644 --- a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po +++ b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po @@ -4,260 +4,259 @@ # # Translators: # Adrià Mercader , 2013 -# klimek , 2011 +# klimek , 2011,2015 # klimek , 2015 -# kuceraj , 2013-2014 # uep, 2011 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-02-23 22:33+0000\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-04 11:38+0000\n" "Last-Translator: klimek \n" -"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/ckan/language/cs_CZ/)\n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/okfn/ckan/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Autorizační funkce nebyla nalezena: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Administrátor" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Redaktor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Člen" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Pro provádění správy musíte být systémový administrátor" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Název portálu" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Styl" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Popisek portálu" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Malé logo portálu" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" -msgstr "Co je CKAN?" +msgstr "O nás" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Text stránky „O portálu“" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Úvodní text" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Text na domovské stránce" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Vlastní nebo upravené CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Upravené CSS vkládané do záhlaví stránky" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Hlavní stránka" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Balíček %s nelze vymazat, dokud propojená revize %s obsahuje nesmazané balíčky %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problém při odstraňování revize %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Vymazat celé" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Tato akce není implementována." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Nemáte oprávnění vidět tuto stránku" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Přístup zamítnut" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Nenalezeno" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Chybný požadavek" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Název akce není znám: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Chyba JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Neplatný požadavek na data: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Nelze vypsat prvky tohoto typu: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Nelze číst prvky tohoto typu: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Nelze vytvořit nový prvek tohoto typu: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Do vyhledávacího indexu nelze přidat balíček" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Nelze aktualizovat prvek tohoto typu: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Vyhledávací index nelze aktualizovat" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Nelze smazat prvek tohoto typu: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" -msgstr "Nevybral jste žádnou verzi" +msgstr "Nebyla vybrána žádná verze" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" -msgstr "Neexistuje verze s id: %s" +msgstr "Revize s id %s neexistuje" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Chybějící parametr vyhledávání ('since_id=UUID' nebo 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Nelze číst parametry: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Chybný parametr vyhledávání: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Neznamý registr: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Špatně naformátovaná hodnota pomocí qjson: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Parametry požadavku musí mít formu kódování slovníku JSON." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Skupina nebyla nalezena" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "Organizace nebyla nalezena" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" -msgstr "Neplatný typ skupiny" +msgstr "Špatný typ skupiny" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Nemáte oprávnění číst skupinu %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -268,23 +267,23 @@ msgstr "Nemáte oprávnění číst skupinu %s" msgid "Organizations" msgstr "Organizace" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Skupiny" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -292,397 +291,306 @@ msgstr "Skupiny" msgid "Tags" msgstr "Tagy" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formáty" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licence" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Nemáte oprávnění k provedení hromádné aktualizace" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Nemáte oprávnění vytvořit skupinu" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Uživatel %r nemá oprávnění měnit %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" -msgstr "Chyba v integritě" +msgstr "Integritní chyba" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Uživatel %r nemá oprávnění měnit oprávnění pro %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Nemáte oprávnění odstranit skupinu %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organizace byla odstraněna." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Skupina byla odstraněna." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "Skupina %s byla smazána." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Nemáte oprávnění přidat člena do skupiny %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Nemáte oprávnění odstranit členy skupiny %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Člen skupiny byl odstraněn" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Pro porovnání musíte vybrat dvě verze" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Uživatel %r nemá oprávnění měnit %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Historie verzí skupiny CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Nedávné změny skupiny CKAN: " -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Zpráva logu: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Nemáte oprávnění nahlížet do skupiny {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Nyní sledujete {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Přestal(-a) jste sledovat {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Nemáte oprávnění zobrazit následovníky %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Tato stránka je v právě off-line. Databáze není inicializována." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Prosím, upravte si svůj profil a doplňte svou emailovou adresu a své celé jméno. {site}používá Vaši emailovou adresu v případě, že potřebujete obnovit heslo." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Prosím, upravte si svůj profil a doplňte svou emailovou adresu. " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s používá Vaši emailovou adresu v případě, že potřebujete obnovit heslo." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Prosím, upravte si svůj profil a doplňte své celé jméno." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Parametr s názvem \"{parameter_name}\" není celé číslo" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" -msgstr "Dataset nenalezen" +msgstr "Datová sada nenalezena" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Nemáte oprávnění číst balíček %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Neplatný formát verze: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Zobrazení datasetů typu {package_type} ve formátu {format} není podporováno (soubor šablony {file} nebyl nalezen)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" -msgstr "Historie revizí CKAN datasetů" +msgstr "Historie revizí datových sad CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " -msgstr "Nedávné změny v CKAN datasetu: " +msgstr "Nedávné změny v datové sadě CKAN: " -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Nemáte oprávnění vytvořit balíček" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Nemáte oprávnění upravovat tento zdroj" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" -msgstr "Zdroj nebyl nalezen" +msgstr "Datový zdroj nebyl nalezen" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" -msgstr "Nemáte oprávnění upravovat dataset" +msgstr "Nemáte oprávnění upravovat datovou sadu" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." -msgstr "Dataset {id} nebyl nalezen" +msgstr "Datová sada {id} nebyla nalezena" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Musíte přidat alespoň jeden datový zdroj" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Chyba" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" -msgstr "Nemáte oprávnění vytvořit zdroj" +msgstr "Nemáte oprávnění vytvořit datový zdroj" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "Nemáte oprávnění vytvořit zdroj pro tento balíček" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Do vyhledávacího indexu nelze přidat balíček." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Vyhledávací index nelze aktualizovat." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Datová sada byla smazána." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Nemáte oprávnění smazat balíček %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Dataset byl smazán." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." -msgstr "Zdroj byl odstraněn." +msgstr "Datový zdroj byl odstraněn." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" -msgstr "Nemáte oprávnění odstranit zdroj %s" +msgstr "Nemáte oprávnění odstranit datový zdroj %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" -msgstr "Nemáte oprávnění k prohlížení datasetu %s" +msgstr "Nemáte oprávnění ke čtení datové sady %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "Zobrazení zdroje nebylo nalezeno" +msgstr "Zobrazení datového zdroje nebylo nalezeno" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" -msgstr "Nemáte oprávnění číst nebo přistupovat ke zdroji %s" +msgstr "Nemáte oprávnění číst nebo přistupovat k datovému zdroji %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" -msgstr "Data ze zdroje nebyla nalezena" +msgstr "Data z datového zdroje nebyla nalezena" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" -msgstr "K dispozici nejsou žádné stažitelné soubory" +msgstr "Žádné soubory ke stažení nejsou k dispozici" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "Nemáte povolení upravovat zdroj" +msgstr "Nemáte povolení upravovat datový zdroj" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "Zobrazení nebylo nalezeno" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "Nemáte povolení pro Zobrazení %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "Typ zobrazení nebyl nalezen" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "Chybná data zobrazení zdroje" +msgstr "Chybná data zobrazení datového zdroje" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "Nemáte povolení číst zobrazení zdroje %s" +msgstr "Nemáte povolení číst zobrazení datového zdroje %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "Zobrazení zdroje nebylo dodáno" +msgstr "Zobrazení datového zdroje nebylo dodáno" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Žádný náhled nebyl definován." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Nejvíce zobrazované" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Nejvíce zobrazené" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Naposledy zobrazené" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Nejnovější" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Nejstarší" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Požadovaná související položka nebyla nalezena" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Související položka nebyla nalezena" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "K této akci nemáte oprávnění" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Balíček nenalezen" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Související položka byla úspěšně vytvořena" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Související položka byla úspěšně upravena" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Související položka byla odstraněna." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Nemáte oprávnění odstranit související položku %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Aplikace" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Nápad" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Novinový článek" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Odborný článek" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Příspěvek" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Vizualizace" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" -msgstr "Historie verzí úložiště CKAN" +msgstr "Historie revizí úložiště CKAN" #: ckan/controllers/revision.py:44 msgid "Recent changes to the CKAN repository." @@ -691,7 +599,7 @@ msgstr "Poslední změny v úložišti CKAN." #: ckan/controllers/revision.py:108 #, python-format msgid "Datasets affected: %s.\n" -msgstr "Ovlivněné datasety: %s.\n" +msgstr "Ovlivněné datové sady: %s.\n" #: ckan/controllers/revision.py:188 msgid "Revision updated" @@ -699,16 +607,16 @@ msgstr "Revize aktualizována" #: ckan/controllers/tag.py:56 msgid "Other" -msgstr "Další" +msgstr "Jiné" #: ckan/controllers/tag.py:70 msgid "Tag not found" msgstr "Tag nebyl nalezen" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Uživatel nebyl nalezen" @@ -728,13 +636,13 @@ msgstr "Nemáte oprávnění smazat uživatele s identifikátorem \"{user_id}\". msgid "No user specified" msgstr "Nebyl vybrán žádný uživatel" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Nemáte oprávnění upravovat uživatele %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil upraven" @@ -758,77 +666,89 @@ msgstr "Uživatel \"%s\" byl úspěšně zaregistrován, nicméně od minula jst msgid "Unauthorized to edit a user." msgstr "Nemáte oprávnění upravovat uživatele." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Uživatel %s není oprávněn upravovat %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Heslo bylo zadáno špatně" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Staré heslo" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "nesprávné heslo" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Přihlášení se nezdařilo. Zadali jste špatné uživatelské jméno nebo heslo." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Nemáte oprávnění požadovat obnovu hesla." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" odpovídá několika uživatelům" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Žádné podobný uživatel: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Zkontrolujte prosím, zda nemáte v doručené poště kód pro obnovení." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Nepodařilo se odeslat odkaz pro obnovení: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Nemáte oprávnění obnovit heslo." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Neplatný obnovovaní klíč. Zkuste to prosím znovu." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Vaše heslo bylo obnoveno." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Vaše heslo musí mít alespoň 4 znaky." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Zadaná hesla se neshodují." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Musíte zadat heslo" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Sledovaná položka nebyla nalezena" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "Nepodařilo se najít {0}" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Nemáte oprávnění k prohlížení {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" -msgstr "Všechno" +msgstr "Vše" #: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 msgid "Missing Value" @@ -852,24 +772,24 @@ msgstr "{actor} upravil(-a) organizaci {organization}" #: ckan/lib/activity_streams.py:73 msgid "{actor} updated the dataset {dataset}" -msgstr "{actor} upravil(-a) dataset {dataset}" +msgstr "{actor} upravil(-a) datovou sadu {dataset}" #: ckan/lib/activity_streams.py:76 msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "{actor} změnil(-a) rozšiřující atribut {extra} datasetu {dataset}" +msgstr "{actor} změnil(-a) rozšiřující atribut {extra} datové sady {dataset}" #: ckan/lib/activity_streams.py:79 msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "{actor} upravil(-a) zdroj {resource} datasetu {dataset}" +msgstr "{actor} upravil(-a) zdroj {resource} datové sady {dataset}" #: ckan/lib/activity_streams.py:82 msgid "{actor} updated their profile" -msgstr "{actor} aktualizoval(a) profil" +msgstr "{actor} aktualizoval(-a) profil" #: ckan/lib/activity_streams.py:86 msgid "" "{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "{actor} upravil(-a) související položku {related_item} typu {related_type}, která náleží k datasetu {dataset}" +msgstr "{actor} upravil(-a) související položku {related_item} typu {related_type}, která náleží k datové sadě {dataset}" #: ckan/lib/activity_streams.py:89 msgid "{actor} updated the {related_type} {related_item}" @@ -885,15 +805,15 @@ msgstr "{actor} odstranil(-a) organizaci {organization}" #: ckan/lib/activity_streams.py:98 msgid "{actor} deleted the dataset {dataset}" -msgstr "{actor} smazal(-a) dataset {dataset}" +msgstr "{actor} smazal(-a) datovou sadu {dataset}" #: ckan/lib/activity_streams.py:101 msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "{actor} odstranil(-a) rozšiřující atribut {extra} z datasetu {dataset}" +msgstr "{actor} odstranil(-a) rozšiřující atribut {extra} z datové sady {dataset}" #: ckan/lib/activity_streams.py:104 msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "{actor} odstranil(-a) zdroj {resource} z datasetu {dataset}" +msgstr "{actor} odstranil(-a) zdroj {resource} z datové sady {dataset}" #: ckan/lib/activity_streams.py:108 msgid "{actor} created the group {group}" @@ -905,15 +825,15 @@ msgstr "{actor} vytvořil(-a) organizaci {organization}" #: ckan/lib/activity_streams.py:114 msgid "{actor} created the dataset {dataset}" -msgstr "{actor} vytvořil(-a) dataset {dataset}" +msgstr "{actor} vytvořil(-a) datovou sadu {dataset}" #: ckan/lib/activity_streams.py:117 msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "{actor} přidal(-a) rozšiřující atribut {extra} k datasetu {dataset}" +msgstr "{actor} přidal(-a) rozšiřující atribut {extra} k datové sadě {dataset}" #: ckan/lib/activity_streams.py:120 msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "{actor} přidal(-a) zdroj {resource} k datasetu {dataset}" +msgstr "{actor} přidal(-a) zdroj {resource} k datové sadě {dataset}" #: ckan/lib/activity_streams.py:123 msgid "{actor} signed up" @@ -921,7 +841,7 @@ msgstr "{actor} se přihlásil(a)" #: ckan/lib/activity_streams.py:126 msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "{actor} odstranil(-a) tag {tag} z datasetu {dataset}" +msgstr "{actor} odstranil(-a) tag {tag} z datové sady {dataset}" #: ckan/lib/activity_streams.py:129 msgid "{actor} deleted the related item {related_item}" @@ -942,13 +862,13 @@ msgstr "{actor} nyní sleduje {group}" #: ckan/lib/activity_streams.py:142 msgid "" "{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "{actor} přidal(-a) související položku {related_item} typu {related_type} k datasetu {dataset}" +msgstr "{actor} přidal(-a) související položku {related_item} typu {related_type} k datové sadě {dataset}" #: ckan/lib/activity_streams.py:145 msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} přidal(-a) související položku {related_item} typu {related_type}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -956,11 +876,11 @@ msgid "View" msgstr "Zobrazení" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "1 nová aktivita na {site_title}" -msgstr[1] "{n} nové aktivity na {site_title}" -msgstr[2] "{n} nových aktivit na {site_title}" +msgstr[0] "{n} nová aktivita z {site_title}" +msgstr[1] "{n} nových aktivit z {site_title}" +msgstr[2] "{n} nových aktivit z {site_title}" #: ckan/lib/formatters.py:17 msgid "January" @@ -1010,141 +930,141 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Právě teď" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "před {mins} minutou" msgstr[1] "před {mins} minutami" msgstr[2] "před {mins} minutami" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "před {hours} hodinou" msgstr[1] "před {hours} hodinami" msgstr[2] "před {hours} hodinami" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "před {days} dnem" msgstr[1] "před {days} dny" msgstr[2] "před {days} dny" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "před {months} měsícem" msgstr[1] "před {months} měsíci" msgstr[2] "před {months} měsíci" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "před více než {years} rokem" msgstr[1] "před více než {years} roky" msgstr[2] "před více než {years} roky" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytů" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Prosím, aktualizujte svého avatara na webu gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Neznámo" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" -msgstr "Nepojmenovaný zdroj" +msgstr "Nepojmenovaný datový zdroj" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." -msgstr "Vytvořit nový dataset." +msgstr "Vytvořit novou datovou sadu." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." -msgstr "Upravené zdroje." +msgstr "Upravené datové zdroje." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Upravená nastavení." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} shlédnutí" msgstr[1] "{number} shlédnutí" msgstr[2] "{number} shlédnutí" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} nedávné shlédnutí" @@ -1176,12 +1096,12 @@ msgstr "Požádali jste o znovunastavení vašeho hesla na stránce {site_title} #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "Byli jste pozváni na {site_title}. Uživatelské jméno {user_name} pro vás již bylo vytvořeno. Můžete si ho změnit později.\n\nPro přijetí této pozvánky si nastavte heslo na:\n\n{reset_link}\n" +msgstr "Byli jste pozváni na {site_title}. Uživatel pro vás již byl vytvořen, uživatelské jméno je {user_name}. Můžete si ho později změnit.\n\nPro přijetí pozvánky si změňte heslo na:\n\n{reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1201,7 +1121,7 @@ msgstr "Poslat pozvánku ke vstupu na {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Chybějící hodnota" @@ -1214,7 +1134,7 @@ msgstr "Neočekávaný název vstupního pole %(name)s" msgid "Please enter an integer value" msgstr "Prosím, zadejte celočíselnou hodnotu" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1224,11 +1144,11 @@ msgstr "Prosím, zadejte celočíselnou hodnotu" msgid "Resources" msgstr "Zdroje" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Neplatný zdroj balíčku" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Vlastní položky" @@ -1238,25 +1158,22 @@ msgstr "Vlastní položky" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Slovník tagů \"%s\" neexistuje" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Uživatel" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" -msgstr "Dataset" +msgstr "Datová sada" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Skupina" @@ -1268,378 +1185,369 @@ msgstr "Vstup není platný JSON" msgid "A organization must be supplied" msgstr "Organizace musí být zadána" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Nemůžete odebrat dataset z existující organizace" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organizace neexistuje" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" -msgstr "Nemůžete přidat dataset do této organizace" +msgstr "Nemůžete přidat datovou sadu do této organizace" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Neplatné číslo" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Hodnota musí být přirozené číslo" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Hodnota musí být kladné celé číslo" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Nesprávný formát data" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "V log_message nejsou povoleny odkazy." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "ID datové sady již existuje" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" -msgstr "Zdroj" +msgstr "Datový zdroj" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Související" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Skupina s takovýmto názvem nebo ID neexistuje." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Typ události" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" -msgstr "Jméno musí být textový řetězec" +msgstr "Jména musí být textové řetězece" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" -msgstr "Takovéto jméno nemůže být použito" +msgstr "Takové jméno nemůže být použito" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "Musí být alespoň %s znaků" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Jméno může mít nejvýše %i znaků" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "Musí být čistě alfanumerické (ascii) malé znaky a tyto symboly: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Toto URL je již používáno." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Jméno \"%s\" je kratší než minimální počet znaků stanovený na %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Jméno \"%s\" je delší než maximální počet znaků stanovený na %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Označení verze může mít nejvýše %i znaků" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Duplicitní klíč \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Název skupiny již v databázi existuje" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Tag \"%s\" je kratší než minimální počet %s znaků" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Délka tag \"%s\" je větší než povolené maximum %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Tag \"%s\" může obsahovat pouze malá písmena bez diakritiky, číslice a znaky - (pomlčka) a _ (podtržítko)" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Tag \"%s\" nesmí obsahovat velká písmena" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" -msgstr "Uživatelské jméno musí být textový řetězec" +msgstr "Uživatelská jména musí být textové řetězece" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Toto přihlašovací jméno není k dispozici." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Zadejte prosím obě hesla" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Heslo musí být textový řetězec" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Heslo musí mít alespoň 4 znaky" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Zadaná hesla se neshodují" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Úprava nebyla povolena, protože vypadá jako spam. Vyhněte se prosím v popisu odkazům." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Název musí být dlouhý alespoň %s znaků" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Jméno slovníku je již používáno" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Nelze změnit hodnotu pojmu z %s na %s. Tento pojem je pouze pro čtení." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Slovník tagů nebyl nalezen." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Tag %s nepatří do slovníku %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Žádný název tagu" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Tag %s ve slovníku %s již existuje" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Prosím, zadejte platný URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "role neexistuje." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." -msgstr "Dataset, který nenáleží do žádné organizace, nemůže být soukromý." +msgstr "Datová sada, která nenáleží do žádné organizace, nemůže být soukromá." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Toto není seznam" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Toto není textový řetězec" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Přidáním tohoto nadřazeného objektu vytvoříte v rámci hierarchie cyklickou vazbu" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "\"filter_fields\" a \"filter_values\" by měly mít stejnou délku" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "\"filter_fields\" je vyžadováno když je vyplněno \"filter_values\"" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "\"filter_values\" je vyžadováno když je \"filter_fields\" vyplněno" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "Pole schematu se stejným jménem již existuje" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Vytvořit objekt %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Vytvořit vztah balíčků: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Vytvořit příslušný objekt %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Vytvářím organizaci jako skupinu" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Musíte zadat název nebo id balíčku (parametr \"balíček\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Musíte vyplnit hodnocení (parametr \"hodnocení\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Hodnocení musí být celé číslo." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Hodnocení musí být číslo mezi %i a %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Abyste mohl(-a) sledovat uživatele, musíte se přihlásit" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Nemůžete sledovat sami sebe" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "{0} již sledujete" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." -msgstr "Abyste mohl(-a) sledovat dataset, musíte se přihlásit." +msgstr "Abyste mohl(-a) sledovat datovou sadu, musíte se přihlásit." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Uživatel s uživatelským jménem {username} neexistuje." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Abyste mohl(-a) sledovat skupinu, musíte se přihlásit." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Smazat balíček: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Smazat %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Smazat člena: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "data neobsahují id" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Nelze najít slovník \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Nelze najít tag \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Abyste mohl(-a) cokoli přestat sledovat, musí se přihlásit." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Nesledujete {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Zdroj nebyl nalezen." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Neuvádět, pokud používáte parametr „vyhledávání“" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Je třeba uvést dvojici(-e) :" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Pole \"{field}\" nebylo rozpoznáno během vyhledávání zdrojů." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "neznámý uživatel:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Položka nebyla nalezena." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Balíček nebyl nalezen." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Aktualizovat objekt %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Aktualizovat vztah balíčků: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus nenalezen." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organizace nenalezena." @@ -1656,7 +1564,7 @@ msgstr "Uživatel %s nemá oprávnění upravovat tyto skupiny" #: ckan/logic/auth/create.py:36 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "Uživatel %s nemá oprávnění přidat dataset k této organizaci" +msgstr "Uživatel %s nemá oprávnění přidat datovou sadu k této organizaci" #: ckan/logic/auth/create.py:58 msgid "You must be a sysadmin to create a featured related item" @@ -1670,7 +1578,7 @@ msgstr "Musíte se přihlásit, pokud chcete přidat související položku" msgid "No dataset id provided, cannot check auth." msgstr "Nebylo zadáno žádné ID datové sady. Nelze autorizovat." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Pro tento zdroj nebyl nalezen žádný balíček, nelze zkontrolovat oprávnění." @@ -1680,94 +1588,98 @@ msgstr "Pro tento zdroj nebyl nalezen žádný balíček, nelze zkontrolovat opr msgid "User %s not authorized to create resources on dataset %s" msgstr "Uživatel %s není oprávněn k tvorbě zdrojů datové sady %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Uživatel %s nemá oprávnění upravovat tyto balíčky" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Uživatel %s nemá oprávnění vytvářet skupiny" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Uživatel %s nemá oprávnění vytvářet organizace" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "Uživatel {user} není oprávněn vytvářet uživatelské účty prostřednictvím API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Nemáte oprávnění vytvářet uživatelské účty" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Skupina nebyla nalezena." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "K vytvoření balíčku je potřebný platný API klíč" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "K vytvoření skupiny je potřebný platný API klíč" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Uživatel %s nemá oprávnění přidávat členy" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Uživatel %s nemá oprávnění upravovat skupinu %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" -msgstr "Uživatel %s nemá oprávnění odstranit zdroj %s" +msgstr "Uživatel %s nemá oprávnění odstranit datový zdroj %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "Nebylo nalezeno zobrazení zdroje. Nelze autorizovat." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Pouze vlastník může smazat související položku" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Uživatel %s nemá oprávnění smazat vztah %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Uživatel %s nemá oprávnění odstraňovat skupiny" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Uživatel %s nemá oprávnění smazat skupinu %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Uživatel %s nemá oprávnění odstraňovat organizace" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Uživatel %s nemá oprávnění odstranit organizaci %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Uživatel %s není oprávněn smazat task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "K této akci nemáte oprávnění" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1781,14 +1693,14 @@ msgstr "Uživatel %s nemá oprávnění číst balíček %s" #: ckan/logic/auth/get.py:141 #, python-format msgid "User %s not authorized to read resource %s" -msgstr "Uživatel %s není oprávněn přistupovat ke zdroji %s" +msgstr "Uživatel %s není oprávněn přistupovat k datovému zdroji %s" #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" msgstr "Uživatel %s není oprávněn ke čtení skupiny %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Abyste si mohli prohlédnout svůj přehled, musíte se přihlásit." @@ -1866,63 +1778,63 @@ msgstr "K úpravě balíčku je potřebný platný API klíč" msgid "Valid API key needed to edit a group" msgstr "K úpravě skupiny je potřebný platný API klíč" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "Nebyla specifikována licence" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Uveďte autora" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Uveďte autora-Zachovejte licenci" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Ostatní (Otevřená licence)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Ostatní (Public Domain - volné dílo)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Ostatní (Licence s přiznáním autorství)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Neužívejte dílo komerčně (jakákoli takováto CC licence)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Ostatní (Licence pro nekomerční využití)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Ostatní (Uzavřená licence)" @@ -1979,11 +1891,11 @@ msgstr "je příbuzné s %s" #: ckanext/reclineview/theme/templates/recline_view.html:12 #: ckanext/textview/theme/templates/text_view.html:9 msgid "Loading..." -msgstr "Nahrávám ..." +msgstr "Nahrávám..." #: ckan/public/base/javascript/modules/api-info.js:20 msgid "There is no API data to load for this resource" -msgstr "Tento zdroj neobsahuje žádná data, která lze poskytnou přes API" +msgstr "Tento datový zdroj neobsahuje žádná data, která lze poskytnou přes API" #: ckan/public/base/javascript/modules/api-info.js:21 msgid "Failed to load data API information" @@ -2029,8 +1941,6 @@ msgstr "Potvrdit" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Zrušit" @@ -2055,18 +1965,19 @@ msgstr "Odkaz" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Odstranit" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Obrázek" #: ckan/public/base/javascript/modules/image-upload.js:19 msgid "Upload a file on your computer" -msgstr "Nahrát soubor na Váš počítač" +msgstr "Nahrát soubor z počítače" #: ckan/public/base/javascript/modules/image-upload.js:20 msgid "Link to a URL on the internet (you can also link to an API)" @@ -2104,7 +2015,7 @@ msgstr "Nastala chyba" #: ckan/public/base/javascript/modules/resource-upload-field.js:27 msgid "Resource uploaded" -msgstr "Zdroj nahrán" +msgstr "Datový zdroj nahrán" #: ckan/public/base/javascript/modules/resource-upload-field.js:28 msgid "Unable to upload file" @@ -2126,14 +2037,13 @@ msgstr "Právě nahráváte soubor. Jste si opravdu jistí, že chcete tuto str #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "Přeuspořádat zobrazení zdroje" +msgstr "Změnit pořadí zobrazení datového zdroje" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2147,7 +2057,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Upravit" @@ -2184,13 +2093,13 @@ msgstr "Využíván Site Title: This is the title of this CKAN instance It " @@ -2365,7 +2279,6 @@ msgid "" msgstr "Datové API můžete využít pomocí následujících akcí CKAN API pro provádění operací." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Vytvořit" @@ -2517,7 +2430,7 @@ msgstr "Výběr" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2550,8 +2463,6 @@ msgstr "Formulář skupiny" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Potvrďte odstranění" @@ -2569,7 +2480,7 @@ msgstr "Jste si jistí, že chcete odstranit člena - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2714,14 +2625,12 @@ msgstr "Jste si jist, že chcete smazat tohoto člena?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Smazat" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Uložit" @@ -2783,7 +2692,7 @@ msgstr "Vyhledat datasety..." #: ckan/templates/group/snippets/feeds.html:3 msgid "Datasets in group: {group}" -msgstr "Datasety ve skupině: {group}" +msgstr "Datové sady ve skupině: {group}" #: ckan/templates/group/snippets/feeds.html:4 #: ckan/templates/organization/snippets/feeds.html:4 @@ -2809,7 +2718,6 @@ msgstr "moje skupina" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Popis" @@ -2833,14 +2741,14 @@ msgid "{num} Dataset" msgid_plural "{num} Datasets" msgstr[0] "{num} dataset" msgstr[1] "{num} datasety" -msgstr[2] "{num} datasetů" +msgstr[2] "{num} datových sad" #: ckan/templates/group/snippets/group_item.html:34 #: ckan/templates/organization/snippets/organization_item.html:33 #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 msgid "0 Datasets" -msgstr "0 datasetů" +msgstr "0 datových sad" #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 @@ -2861,7 +2769,7 @@ msgid "" "could be to catalogue datasets for a particular project or team, or on a " "particular theme, or as a very simple way to help people find and search " "your own published datasets. " -msgstr "V CKAN můžete skupiny použít k vytváření a správě kolekcí datasetů. Může to být např. katalog datasetů určitého projektu nebo týmu, případně to mohou být datasety určitého tématu. Skupiny také můžete použít jako pomůcku pro uživatele, aby mohli snáze najít Vámi publikované datasety." +msgstr "V CKAN můžete skupiny použít k vytváření a správě kolekcí datových sad. Může to být např. katalog datových sad určitého projektu nebo týmu, případně to mohou být datové sady určitého tématu. Skupiny také můžete použít jako pomůcku pro uživatele, aby mohli snáze najít Vámi publikované datové sady." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -2871,7 +2779,7 @@ msgstr "Porovnat" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2889,7 +2797,7 @@ msgstr "načíst další" #: ckan/templates/revision/read.html:39 #: ckan/templates/revision/snippets/revisions_list.html:4 msgid "Revision" -msgstr "Verze" +msgstr "Revize" #: ckan/templates/group/snippets/revisions_table.html:8 #: ckan/templates/package/snippets/revisions_table.html:8 @@ -2943,13 +2851,13 @@ msgstr "

CKAN je přední světová open source platforma pro datové portály #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" -msgstr "Vítá Vás CKAN" +msgstr "Vítejte v CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" "This is a nice introductory paragraph about CKAN or the site in general. We " "don't have any copy to go here yet but soon we will " -msgstr "Toto je pěkných pár řádků na úvod o CKANu obecně. Nemáme sem zatím příliš co dát, ale to se brzy změní" +msgstr "Toto je úvodní odstavec o CKANu nebo obecně o portálu. Nemáme sem zatím co dát, ale to se brzy změní" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -2971,38 +2879,30 @@ msgstr "Populární tagy" msgid "{0} statistics" msgstr "{0} - statistiky" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" -msgstr "dataset" +msgstr "datová sada" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" -msgstr "datasetů" +msgstr "datových sad" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organizace" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organizace" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "skupina" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "skupiny" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "související položka" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "související položky" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3020,7 +2920,6 @@ msgid "Custom" msgstr "Upravené" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Formulář obsahuje chybné položky:" @@ -3033,7 +2932,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL obrázku" @@ -3048,11 +2946,11 @@ msgstr "Formulář organizace" #: ckan/templates/organization/bulk_process.html:3 #: ckan/templates/organization/bulk_process.html:11 msgid "Edit datasets" -msgstr "Upravit datasety" +msgstr "Upravit datové sady" #: ckan/templates/organization/bulk_process.html:6 msgid "Add dataset" -msgstr "Přidat dataset" +msgstr "Přidat datovou sadu" #: ckan/templates/organization/bulk_process.html:16 msgid " found for \"{query}\"" @@ -3078,7 +2976,7 @@ msgstr "Předběžný návrh" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3087,7 +2985,7 @@ msgstr "Soukromá" #: ckan/templates/organization/bulk_process.html:88 msgid "This organization has no datasets associated to it" -msgstr "Tato organizace u sebe nemá přiřazeny žádné datasety" +msgstr "Tato organizace u sebe nemá přiřazeny žádné datové sady" #: ckan/templates/organization/confirm_delete.html:11 msgid "Are you sure you want to delete organization - {name}?" @@ -3112,6 +3010,20 @@ msgstr "Vyhledat organizace..." msgid "There are currently no organizations for this site" msgstr "Na tomto portálu aktuálně nejsou žádné organizace" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Uživatelské jméno" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Emailová adresa" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Upravit údaje o členovi" @@ -3123,7 +3035,7 @@ msgid "" "edit datasets, but not manage organization members.

" "

Member: Can view the organization's private datasets, " "but not add new datasets.

" -msgstr "

Administrátor: Může přidávat, upravovat a mazat datasety a může také spravovat členy organizace.

Editor: Může přidávat, upravovat a mazat datasety, ale nemůže spravovat členy organizace.

Člen: Může si zobrazit soukromé datasety organizace, ale nemůže přidávat datasety.

" +msgstr "

Administrátor: Může přidávat, upravovat a mazat datové sady a může také spravovat členy organizace.

Editor: Může přidávat, upravovat a mazat datové sady, ale nemůže spravovat členy organizace.

Člen: Může si zobrazit soukromé datové sady organizace, ale nemůže datové sady přidávat.

" #: ckan/templates/organization/new.html:3 #: ckan/templates/organization/new.html:5 @@ -3144,7 +3056,7 @@ msgstr "Vytvořit organizaci" #: ckan/templates/package/search.html:16 #: ckan/templates/user/dashboard_datasets.html:7 msgid "Add Dataset" -msgstr "Vytvořit Dataset" +msgstr "Vytvořit Datovou sadu" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" @@ -3170,7 +3082,7 @@ msgid "" " CKAN Organizations are used to create, manage and publish collections of " "datasets. Users can have different roles within an Organization, depending " "on their level of authorisation to create, edit and publish. " -msgstr "V CKAN jsou organizace používány k vytváření, správě a publikaci kolekcí datasetů. Uživatelé mohou mít v rámci organizace různé role v závislosti na úrovni oprávnění k vytváření, úpravám a publikaci datasetů." +msgstr "V CKAN jsou organizace používány k vytváření, správě a publikaci kolekcí datových sad. Uživatelé mohou mít v rámci organizace různé role v závislosti na úrovni oprávnění k vytváření, úpravám a publikaci datových sad." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3188,7 +3100,7 @@ msgstr "Stručné informace o mé organizaci" msgid "" "Are you sure you want to delete this Organization? This will delete all the " "public and private datasets belonging to this organization." -msgstr "Opravdu chcete smazat tuto organizaci? Smažete tak veškeré soukromé a veřejné datasety, které k ní náleží." +msgstr "Opravdu chcete smazat tuto organizaci? Smažete tak veškeré soukromé a veřejné datové sady, které k ní náleží." #: ckan/templates/organization/snippets/organization_form.html:64 msgid "Save Organization" @@ -3202,11 +3114,11 @@ msgstr "Zobrazit {organization_name}" #: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 #: ckan/templates/package/snippets/new_package_breadcrumb.html:2 msgid "Create Dataset" -msgstr "Vytvořit dataset" +msgstr "Vytvořit datovou sadu" #: ckan/templates/package/base_form_page.html:22 msgid "What are datasets?" -msgstr "Co jsou to datasety?" +msgstr "Co jsou to datové sady?" #: ckan/templates/package/base_form_page.html:25 msgid "" @@ -3217,15 +3129,15 @@ msgstr "V CKAN je datasetem soubor datových zdrojů (jako jsou např. soubory) #: ckan/templates/package/confirm_delete.html:11 msgid "Are you sure you want to delete dataset - {name}?" -msgstr "Jste si jistí, že chcete smazat dataset - {name}?" +msgstr "Jste si jistí, že chcete smazat datovou sadu - {name}?" #: ckan/templates/package/confirm_delete_resource.html:11 msgid "Are you sure you want to delete resource - {name}?" -msgstr "Jste si jistí, že chcete odstranit zdroj - {name}?" +msgstr "Jste si jistí, že chcete odstranit datový zdroj - {name}?" #: ckan/templates/package/edit_base.html:16 msgid "View dataset" -msgstr "Zobrazit dataset" +msgstr "Zobrazit datovou sadu" #: ckan/templates/package/edit_base.html:20 msgid "Edit metadata" @@ -3246,13 +3158,12 @@ msgid "Preview" msgstr "Náhled" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Aktualizovat" #: ckan/templates/package/group_list.html:14 msgid "Associate this group with this dataset" -msgstr "Přidat aktuální dataset k této skupině" +msgstr "Přidat aktuální datovou sadu k této skupině" #: ckan/templates/package/group_list.html:14 msgid "Add to group" @@ -3260,29 +3171,29 @@ msgstr "Přidat do skupiny" #: ckan/templates/package/group_list.html:23 msgid "There are no groups associated with this dataset" -msgstr "Tento dataset nenáleží do žádné skupiny" +msgstr "Tato datová sada nenáleží do žádné skupiny" #: ckan/templates/package/new_package_form.html:15 msgid "Update Dataset" -msgstr "Upravit dataset" +msgstr "Upravit datovou sadu" #: ckan/templates/package/new_resource.html:5 msgid "Add data to the dataset" -msgstr "Přidat data k datasetu" +msgstr "Přidat data k datové sadě" #: ckan/templates/package/new_resource.html:11 #: ckan/templates/package/new_resource_not_draft.html:8 msgid "Add New Resource" -msgstr "Přidat nový zdroj" +msgstr "Přidat nový datový zdroj" #: ckan/templates/package/new_resource_not_draft.html:3 #: ckan/templates/package/new_resource_not_draft.html:4 msgid "Add resource" -msgstr "Přidat zdroj" +msgstr "Přidat datový zdroj" #: ckan/templates/package/new_resource_not_draft.html:16 msgid "New resource" -msgstr "Nový zdroj" +msgstr "Nový datový zdroj" #: ckan/templates/package/new_view.html:3 #: ckan/templates/package/new_view.html:4 @@ -3305,7 +3216,7 @@ msgstr "Zobrazení prohlížeče dat může být pomalé a nespolehlivé, pokud msgid "Add" msgstr "Přidat" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3337,43 +3248,47 @@ msgstr "Chyba při náhrávání:" msgid "Error:" msgstr "Chyba:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "Výpis chyby:" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Stav" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Naposledy aktualizováno" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Nikdy" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Záznam nahrávání" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Podrobnosti" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Konec záznamu" #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" -msgstr "Všechny zdroje" +msgstr "Všechny datové zdroje" #: ckan/templates/package/resource_edit_base.html:19 msgid "View resource" -msgstr "Zobrazit zdroj" +msgstr "Zobrazit datový zdroj" #: ckan/templates/package/resource_edit_base.html:24 #: ckan/templates/package/resource_edit_base.html:32 msgid "Edit resource" -msgstr "Upravit zdroj" +msgstr "Upravit datový zdroj" #: ckan/templates/package/resource_edit_base.html:26 msgid "DataStore" @@ -3390,7 +3305,7 @@ msgstr "Přístupový bod API" #: ckan/templates/package/resource_read.html:41 #: ckan/templates/package/snippets/resource_item.html:48 msgid "Go to resource" -msgstr "Přejít na zdroj" +msgstr "Přejít na datový zdroj" #: ckan/templates/package/resource_read.html:43 #: ckan/templates/package/snippets/resource_item.html:45 @@ -3404,7 +3319,7 @@ msgstr "URL:" #: ckan/templates/package/resource_read.html:69 msgid "From the dataset abstract" -msgstr "Z abstraktu uvedeného u datasetu" +msgstr "Z abstraktu uvedeného u datové sady" #: ckan/templates/package/resource_read.html:71 #, python-format @@ -3425,7 +3340,7 @@ msgstr "Zde je pár důvodů proč nemusíte vidět očekávaná zobrazení:" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "Nebylo vytvořeno žádné zobrazení které by se hodilo pro tento zdroj" +msgstr "Nebylo vytvořeno žádné zobrazení které by se hodilo pro tento datový zdroj" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" @@ -3462,7 +3377,7 @@ msgid "unknown" msgstr "neznámý" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Vytvořeno" @@ -3484,11 +3399,11 @@ msgstr "Nové zobrazení" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "Tento zdroj nemá žádná zobrazení" +msgstr "Tento datový zdroj nemá žádná zobrazení" #: ckan/templates/package/resources.html:8 msgid "Add new resource" -msgstr "Přidat nový zdroj" +msgstr "Přidat nový datový zdroj" #: ckan/templates/package/resources.html:19 #: ckan/templates/package/snippets/resources_list.html:25 @@ -3498,6 +3413,10 @@ msgid "" "add some?

" msgstr "

Tento dataset neobsahuje žádná data, tak proč nějaká nepřidat?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Dokumentace API" @@ -3554,7 +3473,7 @@ msgid "Version" msgstr "Verze" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Stav" @@ -3569,7 +3488,6 @@ msgstr "Datové API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Titulek" @@ -3589,30 +3507,30 @@ msgstr "např. nějaké užitečné poznámky ohledně dat" msgid "eg. economy, mental health, government" msgstr "např. ekonomie, duševní zdraví, vláda" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Znění jednotlivých licencí a další informace lze nalézt na webu opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" -msgstr "Důvod" +msgstr "Organizace" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Žádná organizace" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Viditelnost" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Veřejná" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Aktivní" @@ -3663,7 +3581,7 @@ msgstr "Email správce" #: ckan/templates/package/snippets/resource_edit_form.html:12 msgid "Update Resource" -msgstr "Aktualizovat zdroj" +msgstr "Aktualizovat datový zdroj" #: ckan/templates/package/snippets/resource_form.html:24 msgid "File" @@ -3709,7 +3627,7 @@ msgstr "např. application/json" #: ckan/templates/package/snippets/resource_form.html:65 msgid "Are you sure you want to delete this resource?" -msgstr "Jste si jistí, že chcete odstranit tento zdroj?" +msgstr "Jste si jistí, že chcete odstranit tento datový zdroj?" #: ckan/templates/package/snippets/resource_form.html:72 msgid "Previous" @@ -3725,7 +3643,7 @@ msgstr "Dokončit" #: ckan/templates/package/snippets/resource_help.html:2 msgid "What's a resource?" -msgstr "Co jsou to zdroje?" +msgstr "Co jsou to datové zdroje?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." @@ -3739,7 +3657,7 @@ msgstr "Prozkoumat" msgid "More information" msgstr "Více informací" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Zakomponovat" @@ -3784,12 +3702,12 @@ msgstr "Tato datová sada neobsahuje data" #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format msgid "Read dataset as of %s" -msgstr "Načíst datasety z %s" +msgstr "Číst datovou sadu jak byla %s" #: ckan/templates/package/snippets/stages.html:23 #: ckan/templates/package/snippets/stages.html:25 msgid "Create dataset" -msgstr "Vytvořit dataset" +msgstr "Vytvořit datovou sadu" #: ckan/templates/package/snippets/stages.html:30 #: ckan/templates/package/snippets/stages.html:34 @@ -3823,140 +3741,7 @@ msgstr "Co je zobrazení?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "Zobrazení je reprezentace dat ze zdroje" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Formulář související položky" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Co jsou to související položky?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Souvisejícím médiem může být jakákoli aplikace, článek, vizualizace nebo nápad, který se vztahuje k datasetu.

Může to na příklad být zajímavá vizualizace, obrázek nebo graf, aplikace využívající všechna nebo alespoň část dat, nebo dokonce i článek v novinách, který se k datasetu vztahuje.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Jste si opravdu jistí, že chcete smazat související položku - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Aplikace a nápady" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Zobrazuji položky %(first)s - %(last)s z celkového počtu %(item_count)s souvisejících položek

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

počet nalezených souvisejících položek: %(item_count)s

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Žádné aplikace nebyly doposud přidány." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Co jsou to aplikace?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Jedná se o aplikace vybudované nad datasety nebo o nápady, co by se s daty dalo dělat." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filtrovat výsledky" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtrovat podle typu" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Vše" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Třídit dle" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Výchozí" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Zobrazit pouze vybrané položky" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Použít" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Upravit související položku" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Upravit související" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Upravit související položku" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Vytvořit související položku" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Vytvořit související" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Vytvořit související položku" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Mé související položky" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Stručné informace o položce..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Typ" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Jste si jistí, že chcete smazat tuto související položku?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Přejít na {related_item_type}" +msgstr "Zobrazení je reprezentace dat v datovém zdroji" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -3982,7 +3767,7 @@ msgstr "Historie verzí" #: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 msgid "Revisions" -msgstr "Verze" +msgstr "Revize" #: ckan/templates/revision/read.html:30 msgid "Undelete" @@ -3998,7 +3783,7 @@ msgstr "Tagy datasetů" #: ckan/templates/revision/snippets/revisions_list.html:7 msgid "Entity" -msgstr "Prvek" +msgstr "Entita" #: ckan/templates/snippets/activity_item.html:3 msgid "New activity item" @@ -4006,7 +3791,7 @@ msgstr "Nová událost" #: ckan/templates/snippets/datapreview_embed_dialog.html:4 msgid "Embed Data Viewer" -msgstr "Zakomponovat prohlížeč dat" +msgstr "Vložit prohlížeč dat" #: ckan/templates/snippets/datapreview_embed_dialog.html:8 msgid "Embed this view by copying this into your webpage:" @@ -4045,7 +3830,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Tomuto vyhledávání neodpovídají žádné {facet_type}" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Domů" @@ -4054,7 +3838,7 @@ msgid "Language" msgstr "Jazyk" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4066,7 +3850,7 @@ msgstr "Licence neuvedena" #: ckan/templates/snippets/license.html:28 msgid "This dataset satisfies the Open Definition." -msgstr "Tento dataset vyhovuje Open Definition." +msgstr "Tato datová sada vyhovuje Open Definition." #: ckan/templates/snippets/organization.html:48 msgid "There is no description for this organization" @@ -4086,21 +3870,25 @@ msgstr "Žádné aplikace, nápady, články nebo obrázky nebyly k tomuto datas msgid "Add Item" msgstr "Přidat položku" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Odeslat" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Seřadit dle" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtrovat výsledky" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Prosím, zkuste jiný dotaz.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4122,18 +3910,18 @@ msgid "{number} dataset found" msgid_plural "{number} datasets found" msgstr[0] "{number} dataset nalezen" msgstr[1] "{number} datasety nalezeny" -msgstr[2] "{number} datasetů nalezeno" +msgstr[2] "{number} datových sad nalezeno" #: ckan/templates/snippets/search_result_text.html:18 msgid "No datasets found" -msgstr "Nebyly nalezeny žádné datasety" +msgstr "Nebyly nalezeny žádné datové sady" #: ckan/templates/snippets/search_result_text.html:21 msgid "{number} group found for \"{query}\"" msgid_plural "{number} groups found for \"{query}\"" msgstr[0] "{number} nalezena na dotaz \"{query}\"" msgstr[1] "{number} nalezeny na dotaz \"{query}\"" -msgstr[2] "{number} nalezeno na dotaz \"{query}\"" +msgstr[2] "{number} skupin nalezeno na dotaz \"{query}\"" #: ckan/templates/snippets/search_result_text.html:22 msgid "No groups found for \"{query}\"" @@ -4181,7 +3969,7 @@ msgid "Subscribe" msgstr "Přihlásit se k odběru" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4200,10 +3988,6 @@ msgstr "Úpravy" msgid "Search Tags" msgstr "Vyhledat tagy" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Přehled" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Kanál novinek" @@ -4211,7 +3995,7 @@ msgstr "Kanál novinek" #: ckan/templates/user/dashboard.html:20 #: ckan/templates/user/dashboard_datasets.html:12 msgid "My Datasets" -msgstr "Moje datasety" +msgstr "Moje datové sady" #: ckan/templates/user/dashboard.html:21 #: ckan/templates/user/dashboard_organizations.html:12 @@ -4267,36 +4051,27 @@ msgstr "Pomocí Vašeho CKAN profilu můžete říci ostatním uživatelům něc msgid "Change details" msgstr "Změnit údaje" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Uživatelské jméno" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Celé jméno" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" -msgstr "např. Joe Bloggs" +msgstr "např. Jan Novák" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" -msgstr "např. joe@example.com" +msgstr "např. jan@příklad.cz" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Něco málo informací o Vás" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Přihlásit se k odběru emailových oznámení" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Změnit heslo" @@ -4345,7 +4120,7 @@ msgstr "Potřebujete uživatelský účet?" #: ckan/templates/user/login.html:27 msgid "Then sign right up, it only takes a minute." -msgstr "Tak se zaregistrujte, zabere to jen pár minut." +msgstr "Tak se zaregistrujte, zabere to jen minutku." #: ckan/templates/user/login.html:30 msgid "Create an Account" @@ -4410,7 +4185,7 @@ msgstr "Proč bych se měl přihlásit?" #: ckan/templates/user/new.html:28 msgid "Create datasets, groups and other exciting things" -msgstr "Abyste mohli vytvářet datasety, skupiny a spoustu dalších zajímavých věcí" +msgstr "Abyste mohli vytvářet datové sady, skupiny a spoustu dalších zajímavých věcí" #: ckan/templates/user/new_user_form.html:5 msgid "username" @@ -4448,7 +4223,7 @@ msgstr "Jednoduše zadejte nové heslo a Váš účet bude podle toho aktualizov #: ckan/templates/user/read.html:21 msgid "User hasn't created any datasets." -msgstr "Uživatel zatím nevytvořil žádný dataset." +msgstr "Uživatel zatím nevytvořil žádnou datovou sadu." #: ckan/templates/user/read_base.html:39 msgid "You have not provided a biography." @@ -4503,7 +4278,7 @@ msgstr "Zatím nic nesledujete" #: ckan/templates/user/snippets/followers.html:9 msgid "No followers" -msgstr "Žádní následovníci" +msgstr "Žádní sledující" #: ckan/templates/user/snippets/user_search.html:5 msgid "Search Users" @@ -4529,15 +4304,15 @@ msgstr "Dosud nenahráno" msgid "DataStore resource not found" msgstr "Požadovaný zdroj z DataStore nebyl nalezen" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "Data byla nevalidní (příklad: číselná hodnota je mimo rozsah nebo byla vložena do textového pole)" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Zdroj \"{0}\" nenalezen." @@ -4545,6 +4320,14 @@ msgstr "Zdroj \"{0}\" nenalezen." msgid "User {0} not authorized to update resource {1}" msgstr "Uživatel {0} nemá oprávnění upravovat zdroj {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Počet datových sad na stránce" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testovací konfigurace" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "Vzestupně dle vlastního pole" @@ -4571,6 +4354,10 @@ msgstr "Kód země" msgid "custom resource text" msgstr "vlastní text zdroje" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Toto je nepřeložený řetězec" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4588,65 +4375,25 @@ msgstr "Url obrázku" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "např. http://example.com/image.jpg (používá url zdroje pokud je prázdné)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "Prohlížeč dat" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "Tabulka" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "Graf" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "Mapa" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Tato zkompilovaná verze SlickGrid byla získána pomocí Google Closure Compiler s využitím následujícího příkazu:\n\n java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nDalší dva soubory jsou třeba k tomu, aby SlickGrid náhled fungoval správně:\n* jquery-ui-1.8.16.custom.min.js\n* jquery.event.drag-2.0.min.js\n\nTyto soubory jsou součástí zdrojového kódu Recline, ale nebyly zařazeny do buildu za účelem usnadnění řešení problémů s kompatibilitou.\n\nProsím, seznamte se s licencí SlickGrid, která je obsažena v souboru MIT-LICENSE.txt file.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "chyba při načítání zobrazení" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4705,9 +4452,8 @@ msgid "Cluster markers" msgstr "Značky shluku" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" -msgstr "Celkový počet datsetů" +msgstr "Celkový počet datových sad" #: ckanext/stats/templates/ckanext/stats/index.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:40 @@ -4716,67 +4462,59 @@ msgstr "Datum" #: ckanext/stats/templates/ckanext/stats/index.html:18 msgid "Total datasets" -msgstr "Celkový počet datasetů" +msgstr "Datových sad celkem" #: ckanext/stats/templates/ckanext/stats/index.html:33 #: ckanext/stats/templates/ckanext/stats/index.html:179 msgid "Dataset Revisions per Week" -msgstr "Revize datasetů za týden" +msgstr "Revize datových sad za týden" #: ckanext/stats/templates/ckanext/stats/index.html:41 msgid "All dataset revisions" -msgstr "Všechny revize datasetů" +msgstr "Všechny revize datových sad" #: ckanext/stats/templates/ckanext/stats/index.html:42 msgid "New datasets" -msgstr "Nové datasety" +msgstr "Nové datové sady" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" -msgstr "Nejlépe hodnocené datasety" +msgstr "Nejlépe hodnocené datové sady" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Průměrné hodnocení" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Počet hodnocení" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Žádná hodnocení" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" -msgstr "Nejčastěji upravované datasety" +msgstr "Nejčastěji upravované datové sady" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Počet úprav" #: ckanext/stats/templates/ckanext/stats/index.html:103 msgid "No edited datasets" -msgstr "Žádné datsety nebyly upraveny" +msgstr "Žádné datové sady nebyly upraveny" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Největší skupiny" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" -msgstr "Počet datasetů" +msgstr "Počet datových sad" #: ckanext/stats/templates/ckanext/stats/index.html:127 msgid "No groups" @@ -4784,7 +4522,6 @@ msgstr "Žádné skupiny" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Nejpoužívanější tagy" @@ -4795,12 +4532,12 @@ msgstr "Název tagu" #: ckanext/stats/templates/ckanext/stats/index.html:137 #: ckanext/stats/templates/ckanext/stats/index.html:157 msgid "Number of Datasets" -msgstr "Počet datasetů" +msgstr "Počet Datových sad" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Uživatelé, kteří vlastní nejvíce datasetů" +msgid "Users Creating Most Datasets" +msgstr "Uživatelé, kteří tvoří nejvíce datových sad" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4808,44 +4545,18 @@ msgstr "Menu statistiky" #: ckanext/stats/templates/ckanext/stats/index.html:178 msgid "Total Number of Datasets" -msgstr "Celkový počet datasetů" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistiky" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Revize v datasetech podle týdnů" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Uživatelé s největším počtem datasetů" +msgstr "Celkový počet datových sad" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Stránka byla naposledy upravena:" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Text" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Statistiky žebříčku" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Žebříček datasetů" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Zvolte atribut datasetu a zjistěte, jaké kategorie ze zvolené oblasti jsou zastoupeny u nejvíce datasetů. Např.: tagy (tags), skupiny (groups), licence (license), formát zdroje (res_format), země (country)." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Zvolte oblast" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "Nastala chyba: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "Webová stránka" diff --git a/ckan/i18n/da_DK/LC_MESSAGES/ckan.mo b/ckan/i18n/da_DK/LC_MESSAGES/ckan.mo index 0b047e5ba78..38d073eda10 100644 Binary files a/ckan/i18n/da_DK/LC_MESSAGES/ckan.mo and b/ckan/i18n/da_DK/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/da_DK/LC_MESSAGES/ckan.po b/ckan/i18n/da_DK/LC_MESSAGES/ckan.po index 76533edb37a..e4b9fa16789 100644 --- a/ckan/i18n/da_DK/LC_MESSAGES/ckan.po +++ b/ckan/i18n/da_DK/LC_MESSAGES/ckan.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the ckan project. # # Translators: -# Adrià Mercader , 2013 +# Adrià Mercader , 2013,2015 # Henrik Aagaard Sorensen , 2013 # , 2011 # Kim Søvsø , 2013 @@ -14,252 +14,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:21+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/ckan/language/da_DK/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:23+0000\n" +"Last-Translator: dread \n" +"Language-Team: Danish (Denmark) (http://www.transifex.com/okfn/ckan/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Godkendelsesfunktionen blev ikke fundet: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Administrator" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Redaktør" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Medlem" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Du skal være systemadministrator for at administrere" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Sites titel" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Style" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Sitets tag-line" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Sitets tag-logo" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Om" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Om side-tekst" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Introtekst" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Tekst på hjem-side" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Brugerdefineret CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Brugerdefinérbart css indsat i sideheader" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Hjemmeside" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Kan ikke tømme datakilde %s da associeret revision %s omfatter ikke-slettede datakilder %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Fejl ved sletning af revision %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Tømning fuldført" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Handling ikke implementeret." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Ikke autoriseret til at se denne side" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Adgang nægtet" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Ikke fundet" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Fejl i forespørgslen" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Navn på handling er ukendt: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON fejl: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Fejl på de forespurgte data: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Kan ikke liste enhed af denne type: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Kan ikke læse enhed af denne type: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Kan ikke oprette ny enhed af denne type: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Kan ikke føje datakilde til søgeindeks" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Kan ikke opdatere enhed af denne type: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Kan ikke opdatere søgeindeks" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Kan ikke slette denne type enhed: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Ingen revision specificeret" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Der findes ingen revision med id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Mangler søgeord ('since_id=UUID' eller 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Kunne ikke læse parametrene: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Fejl i søgning: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Ukendt register: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Fejl i udformning af qjson-værdi: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Forespurgte parametre skal være i form af et JSON-kodet dictionary." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Gruppe ikke fundet" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Ukorrekt gruppetype" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Ikke autoriseret til at læse gruppen %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -270,23 +270,23 @@ msgstr "Ikke autoriseret til at læse gruppen %s" msgid "Organizations" msgstr "Organisationer" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupper" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -294,394 +294,303 @@ msgstr "Grupper" msgid "Tags" msgstr "Tags" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formater" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licenser" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Ikke autoriseret til at udføre masseopdatering" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Ikke autoriseret til at oprette en gruppe" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Bruger %r ikke autoriseret til at redigere %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Integritetsfejl" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Bruger %r ikke autoriseret til at redigere rettighederne %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Ikke autoriseret til at slette gruppe %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organisationen er blevet slettet." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Gruppen er blevet slettet." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Ikke autoriseret til at føje et medlem til gruppe %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Ikke autoriseret til at slette gruppe %s medlemmer" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Gruppemedlem er blevet slettet." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Vælg to revisioner før sammenligning." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Bruger %r ikke autoriseret til at redigere %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Revisionshistorik for CKAN-gruppen" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Nylige ændringer til CKAN gruppen:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Log-besked:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Ikke autoriseret til at læse gruppe {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Du følger nu {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Du følger ikke længere {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Ikke autoriseret til at se følgere %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Dette site er i øjeblikket offline. Databasen er ikke initialiseret." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Venligst opdatér din profil og tilføj din email adresse og dit fulde navn. {site} bruger din e-mail-adresse, hvis du har brug for at nulstille din adgangskode." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Opdatér venligst din profil og tilføj din e-mail-adresse." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s bruger din e-mail-adresse, hvis du ønsker at nulstille din adgangskode." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Opdater venligst din profil og tilføj dit fulde navn" - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Paramenter \"{parameter_name}\" er ikke et heltal" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Datasæt blev ikke fundet" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Ikke autoriseret til at se datakilden %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Ugyldigt revisionsformat: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Visning af {package_type} dataset i formatet {format} er ikke understøttet (skabelon {file} ikke fundet)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Revisionshistorik for CKAN-datasæt" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Nylige ændringer til CKAN-datasæt:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Ikke autoriseret til at oprette en datakilde" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Ikke autoriseret til at redigere denne ressource" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Ressourcen blev ikke fundet" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Ikke autoriseret til at opdatere dette datasæt" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Datasæt {id} blev ikke fundet." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Du skal tilføje mindst en dataressource" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Fejl" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Ikke autoriseret til at oprette en ressource" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Ikke muligt at føje datakilden til søgeindeks." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Ikke muligt at opdatere søgeindeks." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Datasæt er blevet slettet." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Ikke autoriseret til at slette datakilde %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Datasæt er blevet slettet." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Resource er blevet slettet." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Ikke autoriseret til at slette ressource %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Ikke autoriseret til at læse datasæt %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Ikke autoriseret til at se ressourcen %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Ressourcens data ikke fundet" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Download ikke tilgængelig" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Ingen forhåndsvisning er blevet defineret." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Mest sete" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Mest sete" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Mindst sete" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Nyeste" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Ældst" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Det anmodede relaterede element blev ikke fundet" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Relateret element ikke fundet" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Ikke autoriseret" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Datakilde ikke fundet" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Relateret element er blevet oprettet" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Relateret element er blevet opdateret" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Relateret element er blevet slettet." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Ikke autoriseret til at slette relateret element %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Applikation" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idé" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Nyhedsartkel" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Dokument" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Post" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualisering" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN arkiv-historik" @@ -707,10 +616,10 @@ msgstr "Andet" msgid "Tag not found" msgstr "Tag ikke fundet" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Bruger blev ikke fundet" @@ -730,13 +639,13 @@ msgstr "Ikke autoriseret til at slette bruger med id \"{user_id}\"." msgid "No user specified" msgstr "Ingen bruger specificeret" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Ikke autoriseret til at redigere bruger %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil opdateret" @@ -760,75 +669,87 @@ msgstr "Bruger \"%s\" er nu registreret, men du er fortsat logget ind som \"%s\" msgid "Unauthorized to edit a user." msgstr "Ikke autoriseret til at redigere en bruger." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Bruger %s ikke autoriseret til at redigere %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Login mislykkedes. Forkert brugernavn eller adgangskode." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Ikke autoriseret til at anmode om nulstilling af adgangskode." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" passer med flere brugere" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Brugeren findes ikke: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Tjek venligst din indbakke for en nulstillingskode." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Kunne ikke sende link til nulstilling: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Ikke autoriseret til at nulstille adgangskode." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Ugyldig nulstillingsnøgle. Prøv venligst igen." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Din adgangskode er blevet nulstillet." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Din adgangskode skal bestå af 4 tegn eller mere." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "De adgangskoder du har angivet stemmer ikke overens." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Du skal angive en adgangskode" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Følgende element blev ikke fundet" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} ikke fundet" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Ikke autoriseret til at læse {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Alting" @@ -950,7 +871,7 @@ msgstr "{actor} tilføjede {related_type} {related_item} til datasættet {datase msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} tilføjede {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -958,10 +879,10 @@ msgid "View" msgstr "Vis" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "1 ny aktivitet fra {site_title}" -msgstr[1] "{n} nye aktiviteter fra {site_title}" +msgstr[0] "" +msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1011,138 +932,138 @@ msgstr "November" msgid "December" msgstr "December" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Netop nu" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} minut siden" msgstr[1] "{mins} minutter siden" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} time siden" msgstr[1] "{hours} timer siden" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} dag siden" msgstr[1] "{days} dage siden" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} månede siden" msgstr[1] "{months} måneder siden" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "over {years} år siden" msgstr[1] "over {years} år siden" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{day} {month} {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day} {month} {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} Kb" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} Mb" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} Gb" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} Tb" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Opdatér din avatar på gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Ukendt" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Unavngivet ressource" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Oprettede nyt datasæt." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Redigerede ressourcer." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Redigerede indstillinger." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} visning" msgstr[1] "{number} visninger" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" -msgstr[0] "1 nylig visning" +msgstr[0] "{number} nylig visning" msgstr[1] "{number} nylige visninger" #: ckan/lib/mailer.py:25 @@ -1170,7 +1091,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1195,7 +1116,7 @@ msgstr "Invitation til {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Manglende værdi" @@ -1208,7 +1129,7 @@ msgstr "Feltet %(name)s var ikke ventet." msgid "Please enter an integer value" msgstr "Indsæt venligst et heltal" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1218,11 +1139,11 @@ msgstr "Indsæt venligst et heltal" msgid "Resources" msgstr "Ressourcer" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Ugyldig(e) ressource(r) for datakilde" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Ekstra" @@ -1232,25 +1153,22 @@ msgstr "Ekstra" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Tag type \"%s\" eksisterer ikke" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Bruger" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Datasæt" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Gruppe" @@ -1262,378 +1180,369 @@ msgstr "Kunne ikke fortolkes som valid JSON" msgid "A organization must be supplied" msgstr "Der skal angives en organisation" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Du kan ikke fjerne et datasæt fra en eksisterende organisation" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organisationen eksisterer ikke" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Du kan ikke føje et datasæt til denne organisation" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Invalidt heltal" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Skal være et naturligt tal" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Skal være et positivt heltal" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Fejl i datoformat" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Links i log_message ikke tilladt." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Ressource" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Relateret" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Det gruppenavn eller id eksisterer ikke." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Aktivitetstype" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Navne skal være strenge" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Det navn kan ikke anvendes" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Navnet må indeholde maksimalt %i tegn" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Denne URL er allerede i brug." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Navnet \"%s\" indeholder mindre end %s tegn" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Navnet \"%s\" indeholder flere end %s tegn" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Versionen må indeholde maksimalt %i tegn" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Duplikeret nøgle \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Gruppenavnet findes allerede i databasen" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Længden på tag \"%s\" er kortere end minimum %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Længden på tagget \"%s\" er mere end maksimalt %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Tagget \"%s\" må kun angives med alfanumeriske tegn og symbolerne: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Tagget \"%s\" kan ikke skrives med store bogstaver" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Brugernavne skal være strenge" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Det brugernavn er ikke tilgængeligt." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Indtast venligst begge adgangskoder" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Adgangskoder skal være strenge" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Din adgangskode skal være 4 tegn eller mere" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "De adgangskoder du har indtastet stemmer ikke overens" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Ændring ikke godkendt, da indholdet ser ud til at ligne spam. Undgå venligst links i din beskrivelse." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Navnet skal være mindst %s tegn langt" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Dette navn er allerede i brug." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Kan ikke ændre værdi på nøglen fra %s til %s. Nøglen er read-only" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Tag vokabularium blev ikke fundet." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Tag %s tilhører ikke vokabulariet %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Intet tag-navn" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Tag %s tilhører allerede vokabularium %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Angiv venligst en valid URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "rolle eksisterer ikke." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Datasæt uden organisation kan ikke være privat." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Ikke en liste" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Ikke en streng" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Denne parent ville skabe en løkke i hierarkiet" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Opret objekt %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Opret datakilde-relation: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Tilføj medlemsobjekt %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Forsøger at oprette en organisation som en gruppe" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Du skal angive et navn eller id for datakilden (parameter \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Du skal angive en vurdering (parameter \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Bedømmelsen skal være en heltalsværdi." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Bedømmelsen skal være mellem %i og %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Du skal være logget ind for at følge brugere" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Du kan ikke følge dig selv" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Du følger allerede {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Du skal være logget ind for at følge et datasæt" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Bruger {username} eksisterer ikke." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Du skal være logget ind for at følge en gruppe." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Slet datakilde: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Slet %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Slet medlem: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "Id findes ikke i data" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Kan ikke finde vokabularium \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Kan ikke finde tagget \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Du skal være logget ind for at stoppe med at følge noget." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Du følger ikke {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Ressourcen blev ikke fundet." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Specificér ikke, hvis der benyttes \"query\" parameter" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "skal være : -par" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Felt \"{field}\" ikke genkendt i resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "Ukendt bruger:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Elementet blev ikke fundet." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Datakilden blev ikke fundet." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Opdatér objekt %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Opdatér datakilde-relation: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus blev ikke fundet." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organisationen blev ikke fundet." @@ -1664,7 +1573,7 @@ msgstr "Du skal være logget ind for at tilføje et relateret element" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Ingen datakilde fundet til denne ressource, kan ikke tjekke autorisation." @@ -1674,94 +1583,98 @@ msgstr "Ingen datakilde fundet til denne ressource, kan ikke tjekke autorisation msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Bruger %s ikke autoriseret til at redigere disse datakilder" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Bruger %s ikke autoriseret til at oprette grupper" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Bruger %s ikke autoriseret til at oprette organisationer" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "Bruger {user} ikke autoriseret til at oprette brugere via API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Ikke autoriseret til at oprette brugere" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Gruppen blev ikke fundet." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Gyldig API-nøgle påkrævet for at oprette en datakilde" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Gyldig API-nøgle påkrævet for at oprette en gruppe" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Bruger %s ikke autoriseret til at tilføje medlemmer" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Bruger %s ikke autoriseret til at redigere gruppen %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Bruger %s ikke autoriseret til at slette ressourcen %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Kun ejeren kan slette et relateret element" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Bruger %s ikke autoriseret til at slette relation %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Bruger %s ikke autoriseret til at slette grupper" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Bruger %s ikke autoriseret til at slette gruppen %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Bruger %s ikke autoriseret til at slette organisationer" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Bruger %s ikke autoriseret til at slette organisationen %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Bruger %s ikke autoriseret til at slette task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Ikke autoriseret" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1782,7 +1695,7 @@ msgstr "Bruger %s ikke autoriseret til at læse ressourcen %s" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Du skal være logget ind for at tilgå dit dashboard." @@ -1860,63 +1773,63 @@ msgstr "Gyldig API-nøgle påkrævet for at redigere en datakilde" msgid "Valid API key needed to edit a group" msgstr "Gyldig API-nøgle påkrævet for at redigere en gruppe" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Andet (Open)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Andet (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Andet (Attribution)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Andet (ikke-kommerciel)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Andet (Ikke-åben)" @@ -2023,8 +1936,6 @@ msgstr "Bekræft" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Annullér" @@ -2049,12 +1960,13 @@ msgstr "Link" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Fjern" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Billede" @@ -2127,7 +2039,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2141,7 +2052,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Redigér" @@ -2180,34 +2090,42 @@ msgstr "Powered by Site Title: This is the title of this CKAN instance It " @@ -2358,7 +2273,6 @@ msgid "" msgstr "Data-API'et kan tilgås via følgende actions fra CKAN action API'et." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Opret" @@ -2510,7 +2424,7 @@ msgstr "Vælg" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2543,8 +2457,6 @@ msgstr "Gruppeformular" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Bekræft sletning" @@ -2562,7 +2474,7 @@ msgstr "Er du sikker på, at du vil slette medlemmet - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2707,14 +2619,12 @@ msgstr "Er du sikker på, at du vil slette dette medlem?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Slet" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Gem" @@ -2802,7 +2712,6 @@ msgstr "min-gruppe" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Beskrivelse" @@ -2863,7 +2772,7 @@ msgstr "Sammenlign" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2963,38 +2872,30 @@ msgstr "" msgid "{0} statistics" msgstr "{0} statistik" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "datasæt" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "datasæt" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organisation" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organisationer" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "gruppe" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "grupper" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "relateret emne" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "relaterede emner" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3012,7 +2913,6 @@ msgid "Custom" msgstr "Brugerdefineret" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Skemaet indeholder ugyldige informationer:" @@ -3025,7 +2925,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "Billede-URL" @@ -3070,7 +2969,7 @@ msgstr "Udkast" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3104,6 +3003,20 @@ msgstr "Søg organisationer..." msgid "There are currently no organizations for this site" msgstr "Der er i øjeblikket ingen organisationer for dette site" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Brugernavn" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Opdater medlem" @@ -3238,7 +3151,6 @@ msgid "Preview" msgstr "Preview/eksempel" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Opdatér" @@ -3297,7 +3209,7 @@ msgstr "" msgid "Add" msgstr "Tilføj" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3329,28 +3241,32 @@ msgstr "Fejl i upload:" msgid "Error:" msgstr "Fejl:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Status" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Sidst opdateret" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Aldrig" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Upload Log" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Detaljer" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Slut på log" @@ -3454,7 +3370,7 @@ msgid "unknown" msgstr "ukendt" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Oprettet" @@ -3490,6 +3406,10 @@ msgid "" "add some?

" msgstr "

Dette datasæt indeholder ingen data, hvorfor ikke tilføje noget?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API-dokumenter" @@ -3546,7 +3466,7 @@ msgid "Version" msgstr "Version" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Status" @@ -3561,7 +3481,6 @@ msgstr "Data API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Titel" @@ -3581,30 +3500,30 @@ msgstr "f.eks. noget brugbart information om dette data" msgid "eg. economy, mental health, government" msgstr "e.g. økonomi, miljø, trafik" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Licens-definitioner og yderligere information kan findes på opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Ingen organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Synlighed" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Offentlig" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Aktiv" @@ -3731,7 +3650,7 @@ msgstr "Udforsk" msgid "More information" msgstr "Mere information" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Inkludér (embed)" @@ -3817,139 +3736,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Relateret-formular" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Hvad er relaterede elementer?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Relateret media er enhver app, artikel, visualisering eller idé relateret til dette datasæt.

F.eks. kan det være en visualisering, graf eller en app, der anvender hele eller dele af datasættet eller endda en nyhed, der refererer til dette datasæt.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Er du sikker på, at du vil slette det relaterede element - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Apps & ideer" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Viser emnerne %(first)s - %(last)s af %(item_count)s relaterede elementer fundet

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s relaterede elementer fundet

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Der er endnu ikke blevet tilføjet nogen apps." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Hvad er applikationer?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Dette er applikationer bygget med datasættene såvel som ideer til ting, som kan bygges med dem." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filtrér resultater" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtrér efter type" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Alle" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Sortér efter" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Default" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Vis kun fremhævede elementer" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Anvend" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Redigér relateret element" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Redigér relaterede" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Redigér relateret element" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Opret et relateret element" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Opret relateret" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Opret relateret element" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Mit relaterede element" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Lidt information om elementet..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Type" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Er du sikker på, at du vil slette dette relaterede element?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Gå til {related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "Forskelle" @@ -4037,7 +3823,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Der er ingen {facet_type} der matcher denne søgning" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Hjem" @@ -4046,7 +3831,7 @@ msgid "Language" msgstr "Sprog" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4078,21 +3863,25 @@ msgstr "Ingen apps, ideer, nyheder eller billeder er blevet relateret til dette msgid "Add Item" msgstr "Tilføj element" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Indsend" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Sortér efter" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtrér resultater" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Prøv venligst en anden søgning.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4167,7 +3956,7 @@ msgid "Subscribe" msgstr "Tilmeld" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4186,10 +3975,6 @@ msgstr "Redigeringer" msgid "Search Tags" msgstr "Søg tags" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Dashboard" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Nyhedsstrøm" @@ -4253,36 +4038,27 @@ msgstr "Din profil viser andre CKAN-brugere hvem du er og hvad du laver." msgid "Change details" msgstr "Ændringsdetaljer" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Brugernavn" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Fulde navn" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "f.eks. Peter Petersen" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "f.eks. peter@eksempel.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Lidt information om dig selv" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Skriv dig op til e-mail-notifikationer" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Skift adgangskode" @@ -4515,15 +4291,15 @@ msgstr "Ikke Uploadet Endnu" msgid "DataStore resource not found" msgstr "DataStore-ressourcen ikke fundet" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Ressource \"{0}\" blev ikke fundet." @@ -4531,6 +4307,14 @@ msgstr "Ressource \"{0}\" blev ikke fundet." msgid "User {0} not authorized to update resource {1}" msgstr "Bruger {0} er ikke autoriseret til at opdatere ressourcen {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4557,6 +4341,10 @@ msgstr "Landekode" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4574,65 +4362,25 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid⏎\n⏎\nPermission is hereby granted, free of charge, to any person obtaining⏎\na copy of this software and associated documentation files (the⏎\n\"Software\"), to deal in the Software without restriction, including⏎\nwithout limitation the rights to use, copy, modify, merge, publish,⏎\ndistribute, sublicense, and/or sell copies of the Software, and to⏎\npermit persons to whom the Software is furnished to do so, subject to⏎\nthe following conditions:⏎\n⏎\nThe above copyright notice and this permission notice shall be⏎\nincluded in all copies or substantial portions of the Software.⏎\n⏎\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,⏎\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF⏎\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND⏎\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE⏎\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION⏎\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION⏎\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "This compiled version of SlickGrid has been obtained with the Google Closure⏎\nCompiler, using the following command:⏎\n⏎\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js⏎\n⏎\nThere are two other files required for the SlickGrid view to work properly:⏎\n⏎\n* jquery-ui-1.8.16.custom.min.js ⏎\n* jquery.event.drag-2.0.min.js⏎\n⏎\nThese are included in the Recline source, but have not been included in the⏎\nbuilt file to make easier to handle compatibility problems.⏎\n⏎\nPlease check SlickGrid license in the included MIT-LICENSE.txt file.⏎\n⏎\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4691,7 +4439,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Antal datasæt i alt" @@ -4719,33 +4466,27 @@ msgstr "Nye datasæt" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Højest bedømte datasæt" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Gennemsnitsbedømmelse" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Antal bedømmelser" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Ingen bedømmelser" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Oftest redigerede datasæt" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Antal ændringer" @@ -4755,12 +4496,10 @@ msgstr "Ingen redigerede datasæt" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Største grupper" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Antal datasæt" @@ -4770,7 +4509,6 @@ msgstr "Ingen grupper" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Top tags" @@ -4785,8 +4523,8 @@ msgstr "Antal datasæt" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Brugere med flest datasæt" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4796,42 +4534,16 @@ msgstr "Statistik-menu" msgid "Total Number of Datasets" msgstr "Antal datasæt i alt" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistik" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Ændringer i datasæt pr. uge" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Brugere med flest datasæt" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Siden blev senest opdateret:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Leaderboard - stats" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Dataset Leaderboard" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Vælg en attribut til datasættet og find ud af hvilke kategorier i dette område har flest datasæt. F.eks. tags, grupper, licens, res_format, land." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Vælg område" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/de/LC_MESSAGES/ckan.mo b/ckan/i18n/de/LC_MESSAGES/ckan.mo index 6c85a973e20..c450867cafb 100644 Binary files a/ckan/i18n/de/LC_MESSAGES/ckan.mo and b/ckan/i18n/de/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/de/LC_MESSAGES/ckan.po b/ckan/i18n/de/LC_MESSAGES/ckan.po index 2872eb19297..fb96a616fc4 100644 --- a/ckan/i18n/de/LC_MESSAGES/ckan.po +++ b/ckan/i18n/de/LC_MESSAGES/ckan.po @@ -8,10 +8,11 @@ # ddie , 2011 # Dominik Moritz , 2013 # FIRST AUTHOR , 2011 +# Florian Mayer , 2015 # jbspeakr , 2013 # mih, 2015 # Ondics, 2013 -# Ondics Githubler, 2013 +# Ondics Githubler, 2013,2015 # Ondics Githubler, 2015 # PhilFOKUS , 2011 # pudo , 2011 @@ -23,252 +24,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-02-17 16:43+0000\n" -"Last-Translator: Ondics Githubler\n" -"Language-Team: German (http://www.transifex.com/projects/p/ckan/language/de/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-10 07:53+0000\n" +"Last-Translator: Florian Mayer \n" +"Language-Team: German (http://www.transifex.com/okfn/ckan/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Berechtigungsfunktion nicht gefunden: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Administrator" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" -msgstr "Bearbeiter" +msgstr "Redakteur" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Mitglied" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Für diese Aufgabe werden Administratorrechte benötigt" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Seitentitel" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Style" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Seitenslogan" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Seiten-Slogan-Logo" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Über uns" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Text der \"Über uns\"-Seite" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Einführungstext" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Text der Startseite" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" -msgstr "Angepasstes CSS" +msgstr "Benutzerdefiniertes CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" -msgstr "Anpassbares CSS, das in den Seitenkopf eingefügt wird" +msgstr "Benutzerdefiniertes CSS für den Seitenkopf" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Startseite" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Paket %s konnte nicht gelöscht werden, weil dazugehörige Revision %s nicht-gelöschte Pakete %s beinhaltet " -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Fehler beim Löschen der Revision %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Löschung abgeschlossen" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Befehl nicht implementiert." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" -msgstr "Sie haben keine Autorisierung seite zu sehen" +msgstr "Keine Berechtigung zum Anzeigen dieser Seite" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Zugriff verweigert" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Nicht gefunden" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Fehlerhafte Anfrage" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Aktionsname ist nicht bekannt: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON Fehler: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Fehlerhafte Daten in der Anforderung: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" -msgstr "Kann keine Entitäten dieses Typs auflisten: %s" +msgstr "Kann Objekte vom Typ %s nicht auflisten" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" -msgstr "Kann keine Entiät dieses Typs lesen: %s" +msgstr "Kann Objekte vom Typ %s nicht lesen" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" -msgstr "Eine neue Entität des Typs %s %s konnte nicht angelegt werden" +msgstr "Kann Objekte vom Typ %s %s nicht erstellen" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Das Paket konnte dem Index nicht hinzugefügt werden" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" -msgstr "Ein Update der Entität des Typs %s ist nicht möglich" +msgstr "Kann Objekte vom Typ %s nicht aktualisieren" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" -msgstr "Der Suchindex konnte nicht aktualisiert werden" +msgstr "Suchindex konnte nicht aktualisiert werden" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" -msgstr "Eine Entität des Typs %s %s konnte nicht entfernt werden" +msgstr "Kann Objekte vom Typ %s %s nicht entfernen" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" -msgstr "Keine Revisions spezifiziert" +msgstr "Revision nicht angegeben" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Es gibt keine Revision mit der ID: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Fehlender Suchbegriff ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Konnte die Parameter nicht auslesen: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Falsche Suchoption: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Unbekannter Benutzer: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "qjson Wert hat falsche Struktur: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." -msgstr "Die Anfrageparameter müssen in der Form eines JASON-kodiertem-Wörterbuch sein." - -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +msgstr "Anfrageparameter müssen ein JSON-Wörterbuch sein." + +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Gruppe nicht gefunden" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "Organisation nicht gefunden" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Ungültiger Gruppentyp" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Keine Berechtigung die Gruppe %s anzuzeigen" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -279,23 +280,23 @@ msgstr "Keine Berechtigung die Gruppe %s anzuzeigen" msgid "Organizations" msgstr "Organisationen" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Gruppen" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -303,394 +304,303 @@ msgstr "Gruppen" msgid "Tags" msgstr "Tags" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formate" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Lizenzen" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Keine Berechtigung für Massenupdates" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" -msgstr "Nicht zum Anlegen einer Gruppe autorisiert" +msgstr "Keine Berechtigung zum Erstellen einer Gruppe" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Benutzer %r hat keine Berechtigung %s zu bearbeiten" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Integritätsfehler" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Benutzer %r hat keine Berechtigung die Autorisierung von %s zu bearbeiten" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Keine Berechtigung die Gruppe %s zu löschen" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organisation wurde gelöscht." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Gruppe wurde gelöscht." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s wurde gelöscht." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" -msgstr "Keine Berichtigung Mitglied zur Gruppe %s hinzuzufügen" +msgstr "Keine Berechtigung Mitglied zur Gruppe %s hinzuzufügen" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Keine Berechtigung Mitglieder der Gruppe %s zu löschen" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Gruppenmitglied wurde gelöscht." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." -msgstr "Wählen Sie zwei Revisionen um den Vergleich durchzuführen." +msgstr "Wählen Sie zwei Revisionen zum vergleichen." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "User %r ist nicht autorisiert %r zu editieren" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN Gruppen-Revisionshistorie" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " -msgstr "Aktuelle Änderungen an der CKAN Gruppe:" +msgstr "Aktuelle Änderungen innerhalb der CKAN Gruppe:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Logeintrag:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Keine Berechtigung die Gruppe {group_id} anzuzeigen" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" -msgstr "Sie folgen nun {0}" +msgstr "Sie beobachten nun {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" -msgstr "Sie folgen nicht mehr {0}" +msgstr "Sie beobachten nicht mehr {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" -msgstr "Keine Berechtigung um die Follower %s anzuzeigen" +msgstr "Keine Berechtigung die Beobachter %s anzuzeigen" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Die Seite ist aktuell inaktiv. Die Datenbank ist nicht initialisiert." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Bitte aktualisiere Dein Profil und trage Deine Emailadresse und Deinen vollständigen Namen ein. {site} nutzt Deine Emailadresse, um Dein Passwort zurücksetzen zu können." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " -msgstr "Bitte aktualisiere Dein Profil und füge Deine Emailadresse hinzu." +msgstr "Bitte aktualisieren Sie Ihr Profil und fügen Sie Ihre Emailadresse hinzu." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "%s verwendet Deine Emailadresse für den Fall, daß Du Dein Paßwort zurücksetzen mußt." - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Bitte aktualisiere Dein Profil und füge deinen vollen Namen hinzu." +msgstr "%s verwendet Ihre Emailadresse für den Fall, daß Sie Ihr Passwort zurücksetzen müssen." -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "Parameter \"{parameter_name}\" ist kein Ganzzahlwert" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +msgstr "Parameter \"{parameter_name}\" ist keine Ganzzahl." + +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Datensatz nicht gefunden" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Keine Berechtigung Paket %s zu lesen" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Ungültiges Revisionsformat: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." -msgstr "Die Vorschau von {package_type}-Datensätzen im Format {format} wird nicht unterstützt (Template-Datei {file} nicht vorhanden)." +msgstr "Die Vorschau von {package_type}-Datensätzen im Format {format} wird nicht unterstützt (Vorlage {file} fehlt)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN Datensatz-Änderungshistorie" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Letzte Änderungen im CKAN Datensatz:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" -msgstr "Nicht zum Anlegen eines Pakets autorisiert" +msgstr "Keine Berechtigung zum Erstellen eines Datensatzes" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" -msgstr "Keine Berechtigung um die Ressource zu bearbeiten" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +msgstr "Keine Berechtigung zur Bearbeitung der Ressource" + +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Ressource nicht gefunden" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" -msgstr "Keine Berechtigung um den Datensatz zu aktualisieren" +msgstr "Keine Berechtigung zur Aktualisierung des Datensatzes" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Der Datensatz {id} konnte nicht gefunden werden." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" -msgstr "Du musst mindestens eine Daten-Ressource hinzufügen" +msgstr "Sie müsssen mindestens eine Daten-Ressource hinzufügen" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Fehler" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" -msgstr "Keine Berechtigung um eine Ressource anzulegen" +msgstr "Keine Berechtigung zur Erstellung einer Ressource" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "Nicht berechtigt, eine Ressource für dieses Package anzulegen" +msgstr "Keine Berechtigung zur Erstellung einer Ressource für diesen Datensatz" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Das Paket konnte dem Index nicht hinzugefügt werden" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Der Suchindex konnte nicht aktualisiert werden" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Keine Berechtigung um das Paket %s zu löschen" - -#: ckan/controllers/package.py:1061 +#: ckan/controllers/package.py:1036 msgid "Dataset has been deleted." msgstr "Datensatz wurde gelöscht." -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Keine Berechtigung zum Löschen des Paketes %s" + +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Ressource wurde gelöscht." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" -msgstr "Keine Berechtigung um die Ressource %s zu löschen" +msgstr "Keine Berechtigung zum Löschen der Ressource %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" -msgstr "Keine Berechtigung um den Datensatz %s anzuzeigen" +msgstr "Keine Berechtigung zur Anzeige des Datensatzes %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "Ressourcen-View nicht gefunden" +msgstr "Ressourcen-Ansicht nicht gefunden" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Keine Leseberechtigung für Ressource %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Ressource nicht gefunden" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Kein Download verfügbar" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "Berechtigung fehlt, um Ressource zu ändern" +msgstr "Keine Berechtigung zur Bearbeitung der Ressource" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "View nicht gefunden" +msgstr "Ansicht nicht gefunden" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "Keine Berechtigung, um View %s anzusehen" +msgstr "Keine Berechtigung zur Anzeige der Ansicht %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "View-Typ nicht gefunden" +msgstr "Ansichtstyp nicht gefunden" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "Ungültige Ressource-View Daten" +msgstr "Ungültige Ressourcen-Ansicht Daten" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "Nicht berechtigt für den Zugriff auf die Ressourcen-View Daten %s" +msgstr "Nicht berechtigt für den Zugriff auf die Ressourcen-Ansicht Daten %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "Ressourcen-View nicht angegeben" +msgstr "Ressourcen-Ansicht nicht angegeben" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Es wurde keine Vorschau definiert." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Meist gesehen" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Meist gesehen" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Am wenigsten gesehen" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Neuestes" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Ältestes" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Der angefragte, verwandte Inhalt wurde nicht gefunden" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Verwandter Inhalt nicht gefunden" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Keine Berechtigung" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Paket nicht gefunden" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Verwandter Inhalt wurde erfolgreich angelegt" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Verwandter Inhalt wurde erfolgreich aktualisiert" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Verwandter Inhalt wurde gelöscht." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Keine Berechtigung um den verwandten Inhalt %s zu löschen" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Anwendung" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idee" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Nachrichtenartikel" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Wissenschaftliche Arbeit" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Beitrag" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualisierung" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN-Register Revisionsgeschichte" @@ -716,10 +626,10 @@ msgstr "Andere" msgid "Tag not found" msgstr "Tag nicht gefunden" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Benutzer nicht gefunden" @@ -729,115 +639,127 @@ msgstr "Keine Berechtigung zur Registrierung als Benutzer." #: ckan/controllers/user.py:166 msgid "Unauthorized to create a user" -msgstr "Keine Berechtigung einen Nutzer anzulegen" +msgstr "Keine Berechtigung zur Erstellung eines neuen Benutzers" #: ckan/controllers/user.py:197 msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Sie sind nicht berechtigt, den Benutzer mit der id \"{user_id}\" zu löschen." +msgstr "Keine Berechtigung zur Löschung des Benutzers mit ID \"{user_id}\"." #: ckan/controllers/user.py:211 ckan/controllers/user.py:270 msgid "No user specified" -msgstr "Kein Nutzer angegeben" +msgstr "Kein Benutzer angegeben" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" -msgstr "Keine Berechtigung den Nutzer %s zu bearbeiten" +msgstr "Keine Berechtigung zur Bearbeitung des Benutzers %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil aktualisiert" #: ckan/controllers/user.py:232 #, python-format msgid "Unauthorized to create user %s" -msgstr "Keine Berechtigung den Nutzer %s anzulegen" +msgstr "Keine Berechtigung zur Erstellung des Benutzers %s" #: ckan/controllers/user.py:238 msgid "Bad Captcha. Please try again." -msgstr "Fehlerhaftes Captcha. Bitte versuch es noch einmal." +msgstr "Fehlerhaftes Captcha. Bitte versuchen Sie es noch einmal." #: ckan/controllers/user.py:255 #, python-format msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" -msgstr "Benutzer \"%s\" ist jetzt registriert, aber Du bist noch als \"%s\" angemeldet." +msgstr "Benutzer \"%s\" ist jetzt registriert, aber Sie sind noch als \"%s\" angemeldet." #: ckan/controllers/user.py:276 msgid "Unauthorized to edit a user." -msgstr "Keine Berechtigung, Benutzer zu ändern." +msgstr "Keine Berechtigung zur Bearbeitung des Benutzers." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Benutzer %s hat keine Berechtigung %s zu bearbeiten" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Das eingegebene Passwort war falsch" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Altes Passwort" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "ungültiges Passwort" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Anmeldung fehlgeschlagen. Falscher Benutzername oder falsches Passwort." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." -msgstr "Keine Berechtigung, Passwort rücksetzen zu lassen." +msgstr "Keine Berechtigung zur Zurücksetzung des Passwortes." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" -msgstr "\"%s\" passt zu mehreren Nutzern" +msgstr "\"%s\" passt zu mehreren Benutzern" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" -msgstr "User existiert nicht: %s" +msgstr "Benutzer %s existiert nicht" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." -msgstr "Bitte durchsuchen Sie ihr Postfach nach einem Reset-Code." +msgstr "Bitte durchsuchen Sie ihr Email-Postfach nach einem Zurücksetzungs-Code." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Konnte Zurücksetzungslink nicht versenden: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Keine Berechtigung, Passwort zurückzusetzen." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Ungülitger Rücksetzungslink. Bitte noch einmal versuchen." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Ihr Passwort wurde zurückgesetzt." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Ihr Passwort muss mehr als vier Zeichen lang sein." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Die eingegebenen Passwörter stimmen nicht überein." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" -msgstr "Du musst ein Passwort angeben" +msgstr "Sie müssen ein Passwort angeben" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" -msgstr "nächster Inhalt nicht gefunden" +msgstr "Nächstes Element nicht gefunden" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} nicht gefunden" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" -msgstr "Keine Berechtigung um {0} {1} zu lesen" +msgstr "Keine Berechtigung {0} {1} zu lesen" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Alles" @@ -851,7 +773,7 @@ msgstr "Umleitung auf externe Seite ist nicht erlaubt" #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "{actor} hat den Tag {tag} zum Datensatz {dataset} hinzugefügt" +msgstr "{actor} hat das Stichwort {tag} zum Datensatz {dataset} hinzugefügt" #: ckan/lib/activity_streams.py:67 msgid "{actor} updated the group {group}" @@ -959,7 +881,7 @@ msgstr "{actor} hat die Daten {related_type} {related_item} zum Datensatz {datas msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} hat {related_type} {related_item} hinzugefügt" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -967,10 +889,10 @@ msgid "View" msgstr "Ansicht" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{n} neue Aktivität von {site_title}" -msgstr[1] "{n} neue Aktivitäten von {site_title}" +msgstr[0] "{n} neue Aktivität auf {site_title}" +msgstr[1] "{n} neue Aktivitäten auf {site_title}" #: ckan/lib/formatters.py:17 msgid "January" @@ -1020,135 +942,135 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Gerade eben" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "Vor {mins} Minute" msgstr[1] "Vor {mins} Minuten" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "Vor {hours} Stunde" msgstr[1] "Vor {hours} Stunden" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "Vor {days} Tag" msgstr[1] "Vor {days} Tagen" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "Vor {months} Monat" msgstr[1] "Vor {months} Monaten" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "vor über {years} Jahr" msgstr[1] "vor über {years} Jahren" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{day}.{month}.{year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{day}. {month}. {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day}. {month} {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} Byte" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k} Tsd." -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m} Mio." -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g} Mrd." -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t} Bio." -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p} Brd." -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e} Trio." -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z} Trd." -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y} Qio." -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Aktualisiere Deinen Avatar auf gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Unbekannt" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Unbenannte Ressource" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Neuer Datensatz erstellt." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Ressourcen bearbeitet." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Einstellungen bearbeitet." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} Aufruf" msgstr[1] "{number} Aufrufe" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} kürzlicher Aufruf" @@ -1179,12 +1101,12 @@ msgstr "Sie haben veranlasst, ihr Passwort auf {site_title} zurück zu setzen. \ #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "Sie wurden eingeladen zu {site_title}. Ein Benutzer wurde für Sie schon angelegt mit dem Benutzernamen {user_name}. Sie können diesen später ändern. \n\nUm diese Einladung anzunehmen, setzen Sie ihr Kennwort bitte hiermit zurück: \n\n{reset_link}\n" +msgstr "Sie wurden eingeladen zu {site_title}. Ein Benutzer wurde für Sie schon angelegt mit dem Benutzernamen {user_name}. Sie können diesen später ändern. \nUm diese Einladung anzunehmen, setzen Sie ihr Kennwort bitte hiermit zurück: {reset_link} \n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1204,7 +1126,7 @@ msgstr "Einladung für {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Fehlender Wert" @@ -1217,7 +1139,7 @@ msgstr "Das Eingabefeld %(name)s war nicht erwartet." msgid "Please enter an integer value" msgstr "Bitte gib eine Ganzzahl ein" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1227,11 +1149,11 @@ msgstr "Bitte gib eine Ganzzahl ein" msgid "Resources" msgstr "Ressourcen" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Paketressource(n) ungültig" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Extras" @@ -1241,25 +1163,22 @@ msgstr "Extras" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Tag-Vokabular \"%s\" existiert nicht" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Benutzer" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Datensatz" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Gruppe" @@ -1271,378 +1190,369 @@ msgstr "Kann nicht als gültiges JSON erkannt werden" msgid "A organization must be supplied" msgstr "Eine Organisation muss angegeben werden" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Sie können keinen Datensatz einer bestehenden Organisation löschen" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organisation nicht vorhanden" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Sie können dieser Organisation keinen Datensatz hinzufügen" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Ungültige Ganzzahl" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Muss eine Ganzzahl sein" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Muss eine positive und ganze Zahl sein" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Datumsformat ungültig." -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Keine Links zulässig in der Log-Mitteilung." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "Datensatz ID gibt es schon" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Ressource" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Verwandt" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Dieser Gruppenname oder diese ID existieren nicht." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Aktivitätstyp" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Namen müssen Strings (Zeichenketten) sein" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Dieser Name kann nicht verwendet werden." -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "Muss mindestens %s Zeichen lang sein" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Name darf maximal %i Zeichen lang sein" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "Darf nur Kleinbuchstaben (ASCII) enthalten und diese Zeichen: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Diese URL ist bereits vergeben." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Name \"%s\" ist kürzer als die Mindestlänge %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Name \"%s\" ist länger als die Maximallänge %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Version darf maximal %i Zeichen lang sein" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Doppelter Schlüssel \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Gruppenname exisitiert bereits in der Datenbank" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Die Länge des Tag \"%s\" ist kürzer als das Minimum von %s" +msgstr "Die Länge des Schlagwortes \"%s\" ist kürzer als das Minimum von %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Tag \"%s\" ist länger als maximal %i Zeichen" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Tag \"%s\" muss aus alphnummerischen Zeichen oder diesen Symbolen bestehen: -_. " -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Schlagwort \"%s\" darf keine Buchstaben in Großschrift enthalten" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Benutzernamen müssen Zeichenketten/Strings sein" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Der Anmeldename ist nicht verfügbar." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Bitte beide Passwörter angebens" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Kennworte müssen Zeichenketten/Strings sein" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Ihr Passwort muss mindestens 4 Zeichen lang sein" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Die angegebenen Passwörter stimmen nicht überein" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Diese Bearbeitung nicht zulassen, weil sie wie Spam aussieht. Bitte vermeiden Sie Links in der Beschreibung." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Name muss mindestens %s Zeichen lang sein" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Dieser Vokabular-Name wird bereits verwendet." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Der Schlüsselwert kann nicht von %s auf %s geändert werden. Dieser Schlüssel ist schreibgeschützt" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Tag-Vokabular wurde nicht gefunden." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Tag %s gehört nicht zu Vokabular %s." -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Kein Tag-Name" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Tag %s gehört bereits zu Vokabular %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Bitte eine valide URL angeben" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "Rolle ist nicht vorhanden." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Datensätze ohne Organisation können nicht privat sein." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Keine Liste" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Keine Zeichenkette" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Dieses übergeordnete Element würde eine Schleife in der Hierarchie erzeugen" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "\"filter_fields\" und \"filter_values\" sollten die gleiche Länge haben" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "\"filter_fields\" wird benötigt, wenn \"filter_values\" angegeben wird" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "\"filter_values\" wird benötigt, wenn \"filter_fields\" angegeben wird" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "Es gibt ein Vorlagefeld mit dem gleichen Namen" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" -msgstr "REST API: Objekt %s anlegen" +msgstr "REST API: Objekt %s erstellen" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Herstellen einer Paketbeziehung: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Erstelle Mitgliedsobjekt %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Versuche eine Organisation als Gruppe anzulegen" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Sie müssen einen PaketID oder Paketnamen angeben (parameter \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Sie müssen eine Bewertung angeben (parameter \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Die Bewertung muss einen integer Wert sein." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Bewertung muss zwischen %i und %i sein." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Sie müssen angemeldet sein um Mitgliedern folgen zu können" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Sie können nicht sich selbst folgen" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Sie folgen {0} bereits " -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Sie müssen angemeldet sein um einem Datensatz folgen zu können." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Benutzer {username} nicht gefunden." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Sie müssen angemeldet sein um einer Gruppe folgen zu können." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Paket löschen: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Entfernen %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Entferne Mitglied: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "ID nicht in Daten enthalten" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Vokabular \"%s\" konnte nicht gefunden werden" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Tag \"%s\" konnte nicht gefunden werden" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Sie müssen angemeldet sein um nicht länger zu folgen." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Sie folgen {0} nicht." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Ressource wurde nicht gefunden" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Nicht angeben, wenn \"query\"-Parameter genutzt wird" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Müssen : Paare sein" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Feld \"{field}\" wird von resource_search nicht erkannt." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "unbekannter Benutzer:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Inhalt wurde nicht gefunden." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Paket wurde nicht gefunden." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Update Objekt %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Neue Packetbeziehung: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus nicht gefunden." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organisation wurde nicht gefunden." @@ -1663,17 +1573,17 @@ msgstr "Benutzer %s hat keine Berechtigung, Datensätze zu dieser Organisation h #: ckan/logic/auth/create.py:58 msgid "You must be a sysadmin to create a featured related item" -msgstr "Du musst System-Administrator sein, um ein verwandtes Element hinzuzufügen" +msgstr "Sie müssen System-Administrator sein, um ein verwandtes Element hinzuzufügen" #: ckan/logic/auth/create.py:62 msgid "You must be logged in to add a related item" -msgstr "Du musst eingeloggt sein, um ein verwandtes Element hinzuzufügen" +msgstr "Sie müssen eingeloggt sein, um ein verwandtes Element hinzuzufügen" #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." msgstr "Autorisierung kann nicht durchgeführt werden, da " -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Kein Paket zu dieser Ressource gefunden, kann daher die Autorisierungsprüfung nicht durchführen." @@ -1683,94 +1593,98 @@ msgstr "Kein Paket zu dieser Ressource gefunden, kann daher die Autorisierungspr msgid "User %s not authorized to create resources on dataset %s" msgstr "Benutzer %s hat keine Berechtigung Ressourcen des Datensatzes %s anzulegen" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Benutzer %s hat keine Berechtigung diese Pakete zu bearbeiten" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Benutzer %s hat keine Berechtigung Gruppen zu bearbeiten" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" -msgstr "Benutzer %s hat keine Berechtigung, um Organisationen zu erstellen" +msgstr "Benutzer %s ist nicht berechtigt Organisationen zu erstellen" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" -msgstr "Benutzer {user} darf keine Benutzer mit der API anlegen" +msgstr "Benutzer {user} darf keine Benutzer mit der API erstellen" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Nicht berechtigt, Benutzer anzulegen" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Gruppe wurde nicht gefunden" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Gültiger API-Schlüssel notwendig, um ein Paket anzulegen" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" -msgstr "Gültiger API-Schlüssel zum Anlegen einer Gruppe notwendig" +msgstr "Gültiger API-Schlüssel zum Erstellen einer Gruppe notwendig" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" -msgstr "Benutzer %s hat keine Berechtigung, um Mitglieder hinzuzufügen" +msgstr "Benutzer %s ist nicht berechtigt Mitglieder hinzuzufügen" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Benutzer %s hat keine Berechtigung die Gruppe %s zu bearbeiten" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Benutzer %s ist nicht berechtigt, Ressource %s zu löschen" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "Ressourcen-Darstellung/View nicht gefunden, deswegen ist keine Berechtigungsprüfung möglich" +msgstr "Ressourcen-Ansicht nicht gefunden, deswegen ist keine Berechtigungsprüfung möglich" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Nur der Eigentümer darf ein verwandtes Element löschen" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Benutzer %s hat keine Berechtigung die Beziehung %s zu löschen" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Benutzer %s hat keine Berechtigung Gruppen zu löschen" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Benutzer %s hat keine Berechtigung die Gruppe %s zu löschen" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" -msgstr "Benutzer %s hat keine Berechtigung, um Organisationen zu löschen" +msgstr "Benutzer %s ist nicht berechtigt Organisationen zu löschen" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" -msgstr "Benutzer %s hat keine Berechtigung, um die Organisation %s zu löschen" +msgstr "Benutzer %s ist nicht berechtigt Organisation %s zu löschen" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Benutzer %s ist nicht berechtigt, task_status zu löschen" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Keine Berechtigung" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1791,9 +1705,9 @@ msgstr "Benutzer %s ist nicht berechtigt, Ressource %s zu lesen" msgid "User %s not authorized to read group %s" msgstr "Benutzer %s hat keine Berechtigung die Gruppe %s anzusehen" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." -msgstr "Du musst angemeldet sein, um die Übersichtsseite sehen zu können." +msgstr "Sie müssen angemeldet sein, um die Übersichtsseite sehen zu können." #: ckan/logic/auth/update.py:37 #, python-format @@ -1803,7 +1717,7 @@ msgstr "Benutzer %s hat keine Berechtigung das Paket %s zu bearbeiten" #: ckan/logic/auth/update.py:69 #, python-format msgid "User %s not authorized to edit resource %s" -msgstr "Benutzer %s hat keine Berechtigung, um die Ressource %s zu bearbeiten" +msgstr "Benutzer %s ist nicht berechtigt die Ressource %s zu bearbeiten" #: ckan/logic/auth/update.py:98 #, python-format @@ -1813,7 +1727,7 @@ msgstr "Benutzer %s hat keine Berechtigung den Zustand des Pakets %s zu bearbeit #: ckan/logic/auth/update.py:126 #, python-format msgid "User %s not authorized to edit organization %s" -msgstr "Benutzer %s hat keine Berechtigung, um die Organisation %s zu bearbeiten" +msgstr "Benutzer %s ist nicht berechtigt die Organisation %s zu bearbeiten" #: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 msgid "Only the owner can update a related item" @@ -1821,7 +1735,7 @@ msgstr "Nur der Eigentümer kann ein verwandtes Element aktualisieren" #: ckan/logic/auth/update.py:148 msgid "You must be a sysadmin to change a related item's featured field." -msgstr "Du musst System-Administrator sein, um das hervorgehobene Feld eines verwandten Elements zu ändern." +msgstr "Sie müssen System-Administrator sein, um das hervorgehobene Feld eines verwandten Elements zu ändern." #: ckan/logic/auth/update.py:165 #, python-format @@ -1835,7 +1749,7 @@ msgstr "Benutzer %s hat keine Berechtigung die Berechtigungen an der Gruppe %s z #: ckan/logic/auth/update.py:209 msgid "Have to be logged in to edit user" -msgstr "Eine Anmeldung ist erforderlich, um die Benutzerdaten zu ändern." +msgstr "Sie müssen sich einloggen um die Benutzerdaten zu ändern." #: ckan/logic/auth/update.py:217 #, python-format @@ -1869,63 +1783,63 @@ msgstr "Gültiger API-Schlüssel zum Bearbeiten des Pakets notwendig." msgid "Valid API key needed to edit a group" msgstr "Gültiger API-Schlüssel zum Bearbeiten der Gruppe notwendig." -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "Lizenz nicht angegeben" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Andere (Offen)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Andere (gemeinfrei)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Andere (Namensnennung)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Alle)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Andere (nicht-kommerziell)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Andere (nicht offen)" @@ -2032,8 +1946,6 @@ msgstr "Bestätigen" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Abbrechen" @@ -2058,12 +1970,13 @@ msgstr "Link" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Entfernen" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Bild" @@ -2136,7 +2049,6 @@ msgstr "Ressourcen neu ordnen" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2150,7 +2062,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Bearbeiten" @@ -2189,34 +2100,42 @@ msgstr "Eingesetzte Software ist Site Title: This is the title of this CKAN instance It " @@ -2314,7 +2230,7 @@ msgid "" "target=\"_blank\">reading the documentation.

" "

Homepage: This is for choosing a predefined layout for " "the modules that appear on your homepage.

" -msgstr "

Seitenüberschrift: Dieses ist der Seitentitel dieser CKAN Installation. Er erscheint an verschiedenen Stellen in CKAN.

Style: Wählen Sie aus einer Liste von Farbschemen, um CKAN schnell individuell anzupassen.

Seiten-Logo Dieses Logo erscheint im Kopf aller CKAN Instance Templates.

Über: Dieser Text erscheint in dieser CKAN-Instanz Über.

Einführungstext: Dieser text erscheint in dieser CKAN Instanz Startseite als Willkommensseite für Besucher.

Individuelles CSS: Dieser CSS-Block wird eingebunden in <head> Schlagwort jeder Seite. Wenn Sie die Templates noch besser anpassen wollen, lesen Sie die Dokumentation.

Startseite: Hier können Sie ein vorbereitetes Layout für die Module auf Ihrer Startseite auswählen.

" +msgstr "

Seitenüberschrift: Dieses ist der Seitentitel dieser CKAN Installation. Er erscheint an verschiedenen Stellen in CKAN.

Style: Wählen Sie aus einer Liste von Farbschemen, um CKAN schnell individuell anzupassen.

Seiten-Logo Dieses Logo erscheint im Kopf aller CKAN Instance Templates.

Über: Dieser Text erscheint in dieser CKAN-Instanz Über.

Einführungstext: Dieser text erscheint in dieser CKAN Instanz Startseite als Willkommensseite für Besucher.

Benutzerdefiniertes CSS: Dieser CSS-Block wird in jeden Seitenkopf (<head>) eingebunden. Wenn Sie die Templates noch besser anpassen wollen, lesen Sie die Dokumentation.

Startseite: Hier können Sie ein vorbereitetes Layout für die Module auf Ihrer Startseite auswählen.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2367,7 +2283,6 @@ msgid "" msgstr "Die Daten-Schnittstelle (Data-API) kann über folgende Schnittstellenbefehle der CKAN Action API erreicht werden." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Erstellen" @@ -2519,7 +2434,7 @@ msgstr "Auswahl" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2552,8 +2467,6 @@ msgstr "Gruppen-Formular" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Bestätige das Löschen" @@ -2571,7 +2484,7 @@ msgstr "Bist du sicher, dass du das Mitglied {name} löschen willst?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2600,7 +2513,7 @@ msgstr "Mitglieder" #: ckan/templates/user/read_base.html:49 #: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 msgid "Followers" -msgstr "Follower" +msgstr "Beobachter" #: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 #: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 @@ -2716,14 +2629,12 @@ msgstr "Bist du sicher, dass du dieses Mitglied löschen willst?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Löschen" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Speichern" @@ -2750,7 +2661,7 @@ msgstr "Aktualisiere Gruppe" #: ckan/templates/group/new_group_form.html:19 msgid "Create Group" -msgstr "Gruppe anlegen" +msgstr "Gruppe erstellen" #: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 #: ckan/templates/package/search.html:29 @@ -2811,7 +2722,6 @@ msgstr "meine-gruppe" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Beschreibung" @@ -2872,7 +2782,7 @@ msgstr "Vergleichen" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2972,38 +2882,30 @@ msgstr "Beliebte Schlagworte" msgid "{0} statistics" msgstr "{0} Statistik" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "Datensatz" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "Datensätze" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "Organisation" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "Organisationen" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "Gruppe" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "Gruppen" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "zugehöriges Element" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "Zugehörige Elemente" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3021,7 +2923,6 @@ msgid "Custom" msgstr "Angepasst" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Das Formular enthält unzulässige Einträge:" @@ -3034,7 +2935,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "Bild-URL" @@ -3079,7 +2979,7 @@ msgstr "Entwurf" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3113,6 +3013,20 @@ msgstr "Organisationen suchen..." msgid "There are currently no organizations for this site" msgstr "Es gibt moment keine Organisationen für diese Seite" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Benutzername" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email-Adresse" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Mitglied aktualisieren" @@ -3124,7 +3038,7 @@ msgid "" "edit datasets, but not manage organization members.

" "

Member: Can view the organization's private datasets, " "but not add new datasets.

" -msgstr "

Admin: Kann Datensätze anlegen, bearbeiten und löschen und Organisationsmitglieder verwalten.

Redakteur: Kann Datensätze anlegen und bearbeiten, aber kann Mitglieder nicht verwalten.

Mitglied: Kann die privaten Datensätze der Organisation sehen, aber keine neuen Datensätze anlegen.

" +msgstr "

Admin: Kann Datensätze erstellen, bearbeiten und löschen und Organisationsmitglieder verwalten.

Redakteur: Kann Datensätze erstellen und bearbeiten, aber kann Mitglieder nicht verwalten.

Mitglied: Kann die privaten Datensätze der Organisation sehen, aber keine neuen Datensätze anlegen.

" #: ckan/templates/organization/new.html:3 #: ckan/templates/organization/new.html:5 @@ -3203,7 +3117,7 @@ msgstr "{organization_name} ansehen" #: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 #: ckan/templates/package/snippets/new_package_breadcrumb.html:2 msgid "Create Dataset" -msgstr "Datensatz anlegen" +msgstr "Datensatz erstellen" #: ckan/templates/package/base_form_page.html:22 msgid "What are datasets?" @@ -3247,7 +3161,6 @@ msgid "Preview" msgstr "Vorschau" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Aktualisieren" @@ -3306,7 +3219,7 @@ msgstr "Data Explorer Darstellungen können langsam und ungenau sein solange die msgid "Add" msgstr "Hinzufügen" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3338,28 +3251,32 @@ msgstr "Fehler beim Hochladen:" msgid "Error:" msgstr "Fehler:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "Fehler-Verfolgung:" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Status" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Zuletzt aktualisiert" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Nie" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Log hochladen" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Details" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Ende des Logs" @@ -3414,30 +3331,30 @@ msgstr "Quelle: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "Es gibt noch keine Darstellungen/Views für diese Ressource" +msgstr "Es gibt noch keine Ansichten für diese Ressource" #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "Sehen Sie nicht die erwarteten Darstellungen/Views?" +msgstr "Sehen Sie nicht die erwarteten Ansichten?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "Aus folgende Gründen sehen Sie die erwarteten Darstellungen/Views möglicherweise nicht:" +msgstr "Aus folgende Gründen sehen Sie die erwarteten Ansichten möglicherweise nicht:" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "Es wurde keine geeignete Darstellung/View für diese Ressource erzeugt" +msgstr "Es wurde keine geeignete Ansicht für diese Ressource erzeugt" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "Die Seitenadministratoren haben die erforderlichen Darstellungs-/Views-Plugins nicht aktiviert" +msgstr "Die Seitenadministratoren haben die erforderlichen Ansichts-Plugins nicht aktiviert" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "Wenn eine Darstellung den DataStore erfordert wurde das DataStore Plugin nicht aktiviert oder die Daten befinden sich nicht im DataStore oder der DataStore ist nocht nicht mit der Datenverarbeitung fertig" +msgstr "Falls eine Ansicht den DataStore erfordert, wurde das DataStore Plugin nicht aktiviert, oder die Daten befinden sich nicht im DataStore, oder der DataStore ist noch nicht mit der Datenverarbeitung fertig" #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" @@ -3463,7 +3380,7 @@ msgid "unknown" msgstr "unbekannt" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Erstellt" @@ -3481,11 +3398,11 @@ msgstr "Lizenz" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "Neue Darstellung/View" +msgstr "Neue Ansicht" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "Diese Ressource hat keine Darstellungen/Views" +msgstr "Diese Ressource hat keine Ansichten" #: ckan/templates/package/resources.html:8 msgid "Add new resource" @@ -3499,6 +3416,10 @@ msgid "" "add some?

" msgstr "

Dieser Datensatz hat keine Daten, Wollen sie welche hinzufügen?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API-Dokumentation" @@ -3527,7 +3448,7 @@ msgstr "Alle Ansichten" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "Darstellung/View ansehen" +msgstr "Ansicht anzeigen" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" @@ -3555,7 +3476,7 @@ msgid "Version" msgstr "Version" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Status" @@ -3570,7 +3491,6 @@ msgstr "Daten-API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Titel" @@ -3590,30 +3510,30 @@ msgstr "z.B. einige nützliche Hinweise zu den Daten" msgid "eg. economy, mental health, government" msgstr "z.B. Wirtschaft, geistige Gesundheit, Regierung" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Lizenzdefinitionen und weiterführende Informationen können unter opendefinition.org gefunden werden." -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Keine Organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Sichtbarkeit" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Öffentlich" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "aktiv" @@ -3740,7 +3660,7 @@ msgstr "Entdecke" msgid "More information" msgstr "Mehr Information" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Einbettung" @@ -3750,7 +3670,7 @@ msgstr "Diese Ressourcendarstellung/-view kann momentan nicht angezeigt werden." #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "Ressourcendarstellung/-view einbetten" +msgstr "Ressourcen-Ansicht einbetten" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" @@ -3790,7 +3710,7 @@ msgstr "Datensatz mit Datum vom %s " #: ckan/templates/package/snippets/stages.html:23 #: ckan/templates/package/snippets/stages.html:25 msgid "Create dataset" -msgstr "Datensatz anlegen" +msgstr "Datensatz erstellen" #: ckan/templates/package/snippets/stages.html:30 #: ckan/templates/package/snippets/stages.html:34 @@ -3800,11 +3720,11 @@ msgstr "Daten hinzufügen" #: ckan/templates/package/snippets/view_form.html:8 msgid "eg. My View" -msgstr "Meine Darstellung/-View" +msgstr "Meine Ressourcen-Ansicht" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "z.B. Informationen zu meiner Darstellung/meinem View" +msgstr "z.B. Informationen zu meiner Ansicht" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" @@ -3820,144 +3740,11 @@ msgstr "Filter" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "Was ist eine Darstellung bzw. ein View?" +msgstr "Was ist eine Ansicht?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "Eine Darstellung bzw. ein View ist eine Ansicht von Daten in einer Ressource" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Verwandtes Form" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Was sind verwandte Elemente?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Related Media is any app, article, visualisation or idea related to this dataset.

For example, it could be a custom visualisation, pictograph or bar chart, an app using all or part of the data or even a news story that references this dataset.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Bist du sicher, dass du das verwandte Element {name} löschen willst?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Apps & Ideen" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

%(first)s - %(last)s von %(item_count)s gefundenen verwandten Elementen werden angezeigt

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s verwandte Elemente gefunden

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Es wurden noch keine Apps eingereicht." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Was sind Anwendungen?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Dies sind Anwendungen, die mit diesem Datensatz gebaut wurden und Ideen, was mit dem Datensatz gebaut werden könnte." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Ergebnisse filtern" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtern nach Typ" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Alle" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Sortieren nach" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Standard" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Zeige nur hervorgehobene Elemente" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Anwenden" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Verwandtes Element bearbeiten" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Bearbeite verwandtes Element" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Bearbeite verwandtes Element" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Erstelle ein verwandtes Element" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Erstelle verwandtes Element" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Erstelle verwandtes Element" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Mein verwandtes Element" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Ein paar Informationen zu diesem Element..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Typ" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Bist du sicher, dass du dieses verwandte Element löschen willst?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Zu {related_item_type}" +msgstr "Eine Ansicht ist eine Visualisierung einer Ressource" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -3999,7 +3786,7 @@ msgstr "Tags des Datensatzes" #: ckan/templates/revision/snippets/revisions_list.html:7 msgid "Entity" -msgstr "Entität" +msgstr "Objekt" #: ckan/templates/snippets/activity_item.html:3 msgid "New activity item" @@ -4007,11 +3794,11 @@ msgstr "Neuer Aktivitätseintrag" #: ckan/templates/snippets/datapreview_embed_dialog.html:4 msgid "Embed Data Viewer" -msgstr "Datenansicht einbetten" +msgstr "Datenvoransicht einbetten" #: ckan/templates/snippets/datapreview_embed_dialog.html:8 msgid "Embed this view by copying this into your webpage:" -msgstr "Bette diese Ansicht ein, indem du dies in deine Webseite kopierst:" +msgstr "Betten sie diese Ansicht ein, indem Sie das Folgende in Ihre Webseite kopieren:" #: ckan/templates/snippets/datapreview_embed_dialog.html:10 msgid "Choose width and height in pixels:" @@ -4046,7 +3833,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Für diese Suche wurden keine {facet_type} gefunden." #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Start" @@ -4055,7 +3841,7 @@ msgid "Language" msgstr "Sprache" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4087,21 +3873,25 @@ msgstr "Bisher wurden keine Apps, Ideen, Nachrichten oder Bilder mit diesem Date msgid "Add Item" msgstr "Füge Element hinzu" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Abschicken" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Sortieren nach" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Ergebnisse filtern" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Bitte versuch es mit einer anderen Suche.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4176,7 +3966,7 @@ msgid "Subscribe" msgstr "Abonnieren" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4195,10 +3985,6 @@ msgstr "Änderungen" msgid "Search Tags" msgstr "Tags / Schlagworte durchsuchen" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Übersicht" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Nachrichten-Feed" @@ -4262,36 +4048,27 @@ msgstr "Dein Profil teil anderen CKAN-Nutzern mit, wer du bist und was du machst msgid "Change details" msgstr "Änderungsdetails" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Benutzername" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Vollständiger Name" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "Erika Mustermann" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "z.B. erika@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Ein paar Informationen zu dir" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Abonniere E-Mail-Benachrichtigungen" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Kennwort ändern" @@ -4481,7 +4258,7 @@ msgstr "Zurücksetzen anfordern" msgid "" "Enter your username into the box and we will send you an email with a link " "to enter a new password." -msgstr "Gibt deinen Nutzernamen in das Feld ein und wir senden dir eine E-Mail mit einem Link um ein neues Passwort zu setzen." +msgstr "Gibt deinen Benutzernamen in das Feld ein und wir senden dir eine E-Mail mit einem Link um ein neues Passwort zu setzen." #: ckan/templates/user/snippets/followee_dropdown.html:14 #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4498,7 +4275,7 @@ msgstr "Du folgst keinen Inhalten" #: ckan/templates/user/snippets/followers.html:9 msgid "No followers" -msgstr "Keine Follower" +msgstr "Keine Beobachter" #: ckan/templates/user/snippets/user_search.html:5 msgid "Search Users" @@ -4524,15 +4301,15 @@ msgstr "Noch nicht hochgeladen" msgid "DataStore resource not found" msgstr "DataStore Ressource nicht gefunden" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "Die Daten waren ungültig (z.m Beispiel: ein numerischer Wert ist außerhalb eines Bereichs oder wurde in ein Textfeld eingefügt)" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Ressource \"{0}\" nicht gefunden." @@ -4540,6 +4317,14 @@ msgstr "Ressource \"{0}\" nicht gefunden." msgid "User {0} not authorized to update resource {1}" msgstr "Benutzer {0} darf die Ressource {1} nicht ändern" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datensätze pro Seite" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Test-Konfiguration" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "Benutzerdefiniertes Feld aufsteigend" @@ -4566,6 +4351,10 @@ msgstr "Ländercode" msgid "custom resource text" msgstr "Benutzerspezifischer Ressourcen-Text" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Das ist eine unübersetzte Zeichenkette" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4573,7 +4362,7 @@ msgstr "Diese Gruppe hat keine Beschreibung" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "Das CKAN's Tool zur Datenvoransicht hat viele mächtige Funktionen" +msgstr "CKAN's Datenvoransicht hat viele nützliche Funktionen" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" @@ -4583,65 +4372,25 @@ msgstr "Bild-URL" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "z.B. http://example.com/image.jpg (wenn leer, wird Ressourcen-URL verwendet)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "Data Explorer" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "tabelle" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "Graph" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "Karte" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid ⏎\n⏎\nPermission is hereby granted, free of charge, to any person obtaining⏎\na copy of this software and associated documentation files (the⏎\n\"Software\"), to deal in the Software without restriction, including⏎\nwithout limitation the rights to use, copy, modify, merge, publish,⏎\ndistribute, sublicense, and/or sell copies of the Software, and to⏎\npermit persons to whom the Software is furnished to do so, subject to⏎\nthe following conditions:⏎\n⏎\nThe above copyright notice and this permission notice shall be⏎\nincluded in all copies or substantial portions of the Software.⏎\n⏎\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,⏎\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF⏎\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND⏎\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE⏎\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION⏎\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION⏎\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "This compiled version of SlickGrid has been obtained with the Google Closure⏎\nCompiler, using the following command:⏎\n⏎\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js⏎\n⏎\nThere are two other files required for the SlickGrid view to work properly:⏎\n⏎\n* jquery-ui-1.8.16.custom.min.js ⏎\n* jquery.event.drag-2.0.min.js⏎\n⏎\nThese are included in the Recline source, but have not been included in the⏎\nbuilt file to make easier to handle compatibility problems.⏎\n⏎\nPlease check SlickGrid license in the included MIT-LICENSE.txt file.⏎\n⏎\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "Fehler beim Laden der Ansicht" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4700,7 +4449,6 @@ msgid "Cluster markers" msgstr "Markierungen zusammenfassen" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Gesamtanzahl Datensätze" @@ -4728,33 +4476,27 @@ msgstr "Neue Datensätze" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Beliebteste Datensätze" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Durchschnittliche Bewertung" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Anzahl Bewertungen" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Keine Bewertungen" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Meistbearbeitete Datensätze" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Anzahl Änderungen" @@ -4764,12 +4506,10 @@ msgstr "Keine bearbeiteten Datensätze" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Größte Gruppen" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Zahl der Datensätze" @@ -4779,7 +4519,6 @@ msgstr "Keine Gruppen" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Beliebteste Tags" @@ -4794,8 +4533,8 @@ msgstr "Anzahl der Datensätze" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Benutzer mit den meisten Datensätzen" +msgid "Users Creating Most Datasets" +msgstr "Benutzer, der die meisten Datensätze erzeugt hat" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4805,42 +4544,16 @@ msgstr "Statistik-Menü" msgid "Total Number of Datasets" msgstr "Gesamtanzahl der Datensätze" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistiken" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Änderungen der Datensätze pro Woche" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Benutzer mit den meisten Datensätzen" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Seite zuletzt aktualisiert:" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Text" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Rangliste - Statistik" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Datensatz Rangliste" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Wähle eine Datensatz-Eigenschaft und finde heraus, welche Kategorien in dieser Gegend die meisten Datensätze beinhalten. Z.B. tags, groups, license, res_format, country." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Wähle Bereich" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "Ein Fehler ist aufgetreten: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "Webseite" diff --git a/ckan/i18n/dv/LC_MESSAGES/ckan.mo b/ckan/i18n/dv/LC_MESSAGES/ckan.mo deleted file mode 100644 index 8dc7dae7a0b..00000000000 Binary files a/ckan/i18n/dv/LC_MESSAGES/ckan.mo and /dev/null differ diff --git a/ckan/i18n/dv/LC_MESSAGES/ckan.po b/ckan/i18n/dv/LC_MESSAGES/ckan.po deleted file mode 100644 index 4517bbb3415..00000000000 --- a/ckan/i18n/dv/LC_MESSAGES/ckan.po +++ /dev/null @@ -1,4837 +0,0 @@ -# Translations template for ckan. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the ckan project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: CKAN\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Divehi (http://www.transifex.com/projects/p/ckan/language/dv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: dv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ckan/new_authz.py:178 -#, python-format -msgid "Authorization function not found: %s" -msgstr "" - -#: ckan/new_authz.py:190 -msgid "Admin" -msgstr "" - -#: ckan/new_authz.py:194 -msgid "Editor" -msgstr "" - -#: ckan/new_authz.py:198 -msgid "Member" -msgstr "" - -#: ckan/controllers/admin.py:27 -msgid "Need to be system administrator to administer" -msgstr "" - -#: ckan/controllers/admin.py:43 -msgid "Site Title" -msgstr "" - -#: ckan/controllers/admin.py:44 -msgid "Style" -msgstr "" - -#: ckan/controllers/admin.py:45 -msgid "Site Tag Line" -msgstr "" - -#: ckan/controllers/admin.py:46 -msgid "Site Tag Logo" -msgstr "" - -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 -#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 -#: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 -#: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 -#: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 -msgid "About" -msgstr "" - -#: ckan/controllers/admin.py:47 -msgid "About page text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Intro Text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Text on home page" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Custom CSS" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Customisable css inserted into the page header" -msgstr "" - -#: ckan/controllers/admin.py:50 -msgid "Homepage" -msgstr "" - -#: ckan/controllers/admin.py:131 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" -msgstr "" - -#: ckan/controllers/admin.py:153 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "" - -#: ckan/controllers/admin.py:155 -msgid "Purge complete" -msgstr "" - -#: ckan/controllers/admin.py:157 -msgid "Action not implemented." -msgstr "" - -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 -#: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 -msgid "Not authorized to see this page" -msgstr "" - -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 -msgid "Access denied" -msgstr "" - -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 -#: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 -msgid "Not found" -msgstr "" - -#: ckan/controllers/api.py:130 -msgid "Bad request" -msgstr "" - -#: ckan/controllers/api.py:164 -#, python-format -msgid "Action name not known: %s" -msgstr "" - -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 -#, python-format -msgid "JSON Error: %s" -msgstr "" - -#: ckan/controllers/api.py:190 -#, python-format -msgid "Bad request data: %s" -msgstr "" - -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:318 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:357 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:389 -msgid "Unable to add package to search index" -msgstr "" - -#: ckan/controllers/api.py:419 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:442 -msgid "Unable to update search index" -msgstr "" - -#: ckan/controllers/api.py:466 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:489 -msgid "No revision specified" -msgstr "" - -#: ckan/controllers/api.py:493 -#, python-format -msgid "There is no revision with id: %s" -msgstr "" - -#: ckan/controllers/api.py:503 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" - -#: ckan/controllers/api.py:513 -#, python-format -msgid "Could not read parameters: %r" -msgstr "" - -#: ckan/controllers/api.py:574 -#, python-format -msgid "Bad search option: %s" -msgstr "" - -#: ckan/controllers/api.py:577 -#, python-format -msgid "Unknown register: %s" -msgstr "" - -#: ckan/controllers/api.py:586 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "" - -#: ckan/controllers/api.py:596 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" - -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 -msgid "Group not found" -msgstr "" - -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 -msgid "Organization not found" -msgstr "" - -#: ckan/controllers/group.py:172 -msgid "Incorrect group type" -msgstr "" - -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 -#, python-format -msgid "Unauthorized to read group %s" -msgstr "" - -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "" - -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 -#: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 -#: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 -#: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 -#: ckan/templates/group/read_base.html:6 -#: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "" - -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "" - -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 -msgid "Formats" -msgstr "" - -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 -msgid "Licenses" -msgstr "" - -#: ckan/controllers/group.py:429 -msgid "Not authorized to perform bulk update" -msgstr "" - -#: ckan/controllers/group.py:446 -msgid "Unauthorized to create a group" -msgstr "" - -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "" - -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 -msgid "Integrity Error" -msgstr "" - -#: ckan/controllers/group.py:586 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "" - -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "" - -#: ckan/controllers/group.py:609 -msgid "Organization has been deleted." -msgstr "" - -#: ckan/controllers/group.py:611 -msgid "Group has been deleted." -msgstr "" - -#: ckan/controllers/group.py:677 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "" - -#: ckan/controllers/group.py:694 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "" - -#: ckan/controllers/group.py:700 -msgid "Group member has been deleted." -msgstr "" - -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 -msgid "Select two revisions before doing the comparison." -msgstr "" - -#: ckan/controllers/group.py:741 -#, python-format -msgid "User %r not authorized to edit %r" -msgstr "" - -#: ckan/controllers/group.py:748 -msgid "CKAN Group Revision History" -msgstr "" - -#: ckan/controllers/group.py:751 -msgid "Recent changes to CKAN Group: " -msgstr "" - -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 -msgid "Log message: " -msgstr "" - -#: ckan/controllers/group.py:798 -msgid "Unauthorized to read group {group_id}" -msgstr "" - -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 -msgid "You are now following {0}" -msgstr "" - -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 -msgid "You are no longer following {0}" -msgstr "" - -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "" - -#: ckan/controllers/home.py:37 -msgid "This site is currently off-line. Database is not initialised." -msgstr "" - -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" - -#: ckan/controllers/home.py:105 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "" - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 -msgid "Dataset not found" -msgstr "" - -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "" - -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 -#, python-format -msgid "Invalid revision format: %r" -msgstr "" - -#: ckan/controllers/package.py:427 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" - -#: ckan/controllers/package.py:472 -msgid "CKAN Dataset Revision History" -msgstr "" - -#: ckan/controllers/package.py:475 -msgid "Recent changes to CKAN Dataset: " -msgstr "" - -#: ckan/controllers/package.py:532 -msgid "Unauthorized to create a package" -msgstr "" - -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 -msgid "Unauthorized to edit this resource" -msgstr "" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 -msgid "Resource not found" -msgstr "" - -#: ckan/controllers/package.py:682 -msgid "Unauthorized to update dataset" -msgstr "" - -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 -msgid "The dataset {id} could not be found." -msgstr "" - -#: ckan/controllers/package.py:688 -msgid "You must add at least one data resource" -msgstr "" - -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 -msgid "Error" -msgstr "" - -#: ckan/controllers/package.py:714 -msgid "Unauthorized to create a resource" -msgstr "" - -#: ckan/controllers/package.py:750 -msgid "Unauthorized to create a resource for this package" -msgstr "" - -#: ckan/controllers/package.py:973 -msgid "Unable to add package to search index." -msgstr "" - -#: ckan/controllers/package.py:1020 -msgid "Unable to update search index." -msgstr "" - -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "" - -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1088 -msgid "Resource has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1093 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "" - -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "" - -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 -msgid "Resource view not found" -msgstr "" - -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "" - -#: ckan/controllers/package.py:1193 -msgid "Resource data not found" -msgstr "" - -#: ckan/controllers/package.py:1201 -msgid "No download is available" -msgstr "" - -#: ckan/controllers/package.py:1523 -msgid "Unauthorized to edit resource" -msgstr "" - -#: ckan/controllers/package.py:1541 -msgid "View not found" -msgstr "" - -#: ckan/controllers/package.py:1543 -#, python-format -msgid "Unauthorized to view View %s" -msgstr "" - -#: ckan/controllers/package.py:1549 -msgid "View Type Not found" -msgstr "" - -#: ckan/controllers/package.py:1609 -msgid "Bad resource view data" -msgstr "" - -#: ckan/controllers/package.py:1618 -#, python-format -msgid "Unauthorized to read resource view %s" -msgstr "" - -#: ckan/controllers/package.py:1621 -msgid "Resource view not supplied" -msgstr "" - -#: ckan/controllers/package.py:1650 -msgid "No preview has been defined." -msgstr "" - -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - -#: ckan/controllers/revision.py:42 -msgid "CKAN Repository Revision History" -msgstr "" - -#: ckan/controllers/revision.py:44 -msgid "Recent changes to the CKAN repository." -msgstr "" - -#: ckan/controllers/revision.py:108 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "" - -#: ckan/controllers/revision.py:188 -msgid "Revision updated" -msgstr "" - -#: ckan/controllers/tag.py:56 -msgid "Other" -msgstr "" - -#: ckan/controllers/tag.py:70 -msgid "Tag not found" -msgstr "" - -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 -msgid "User not found" -msgstr "" - -#: ckan/controllers/user.py:149 -msgid "Unauthorized to register as a user." -msgstr "" - -#: ckan/controllers/user.py:166 -msgid "Unauthorized to create a user" -msgstr "" - -#: ckan/controllers/user.py:197 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" - -#: ckan/controllers/user.py:211 ckan/controllers/user.py:270 -msgid "No user specified" -msgstr "" - -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "" - -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 -msgid "Profile updated" -msgstr "" - -#: ckan/controllers/user.py:232 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "" - -#: ckan/controllers/user.py:238 -msgid "Bad Captcha. Please try again." -msgstr "" - -#: ckan/controllers/user.py:255 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "" - -#: ckan/controllers/user.py:276 -msgid "Unauthorized to edit a user." -msgstr "" - -#: ckan/controllers/user.py:302 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "" - -#: ckan/controllers/user.py:383 -msgid "Login failed. Bad username or password." -msgstr "" - -#: ckan/controllers/user.py:417 -msgid "Unauthorized to request reset password." -msgstr "" - -#: ckan/controllers/user.py:446 -#, python-format -msgid "\"%s\" matched several users" -msgstr "" - -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 -#, python-format -msgid "No such user: %s" -msgstr "" - -#: ckan/controllers/user.py:455 -msgid "Please check your inbox for a reset code." -msgstr "" - -#: ckan/controllers/user.py:459 -#, python-format -msgid "Could not send reset link: %s" -msgstr "" - -#: ckan/controllers/user.py:474 -msgid "Unauthorized to reset password." -msgstr "" - -#: ckan/controllers/user.py:486 -msgid "Invalid reset key. Please try again." -msgstr "" - -#: ckan/controllers/user.py:498 -msgid "Your password has been reset." -msgstr "" - -#: ckan/controllers/user.py:519 -msgid "Your password must be 4 characters or longer." -msgstr "" - -#: ckan/controllers/user.py:522 -msgid "The passwords you entered do not match." -msgstr "" - -#: ckan/controllers/user.py:525 -msgid "You must provide a password" -msgstr "" - -#: ckan/controllers/user.py:589 -msgid "Follow item not found" -msgstr "" - -#: ckan/controllers/user.py:593 -msgid "{0} not found" -msgstr "" - -#: ckan/controllers/user.py:595 -msgid "Unauthorized to read {0} {1}" -msgstr "" - -#: ckan/controllers/user.py:610 -msgid "Everything" -msgstr "" - -#: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 -msgid "Missing Value" -msgstr "" - -#: ckan/controllers/util.py:21 -msgid "Redirecting to external site is not allowed." -msgstr "" - -#: ckan/lib/activity_streams.py:64 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:67 -msgid "{actor} updated the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:70 -msgid "{actor} updated the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:73 -msgid "{actor} updated the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:76 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:79 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:82 -msgid "{actor} updated their profile" -msgstr "" - -#: ckan/lib/activity_streams.py:86 -msgid "" -"{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:89 -msgid "{actor} updated the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:92 -msgid "{actor} deleted the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:95 -msgid "{actor} deleted the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:98 -msgid "{actor} deleted the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:101 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:104 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:108 -msgid "{actor} created the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:111 -msgid "{actor} created the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:114 -msgid "{actor} created the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:117 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:120 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:123 -msgid "{actor} signed up" -msgstr "" - -#: ckan/lib/activity_streams.py:126 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:129 -msgid "{actor} deleted the related item {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:132 -msgid "{actor} started following {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:135 -msgid "{actor} started following {user}" -msgstr "" - -#: ckan/lib/activity_streams.py:138 -msgid "{actor} started following {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:142 -msgid "" -"{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:145 -msgid "{actor} added the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "" - -#: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:17 -msgid "January" -msgstr "" - -#: ckan/lib/formatters.py:21 -msgid "February" -msgstr "" - -#: ckan/lib/formatters.py:25 -msgid "March" -msgstr "" - -#: ckan/lib/formatters.py:29 -msgid "April" -msgstr "" - -#: ckan/lib/formatters.py:33 -msgid "May" -msgstr "" - -#: ckan/lib/formatters.py:37 -msgid "June" -msgstr "" - -#: ckan/lib/formatters.py:41 -msgid "July" -msgstr "" - -#: ckan/lib/formatters.py:45 -msgid "August" -msgstr "" - -#: ckan/lib/formatters.py:49 -msgid "September" -msgstr "" - -#: ckan/lib/formatters.py:53 -msgid "October" -msgstr "" - -#: ckan/lib/formatters.py:57 -msgid "November" -msgstr "" - -#: ckan/lib/formatters.py:61 -msgid "December" -msgstr "" - -#: ckan/lib/formatters.py:109 -msgid "Just now" -msgstr "" - -#: ckan/lib/formatters.py:111 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:114 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:120 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:123 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:125 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" - -#: ckan/lib/formatters.py:142 -msgid "{month} {day}, {year}" -msgstr "" - -#: ckan/lib/formatters.py:158 -msgid "{bytes} bytes" -msgstr "" - -#: ckan/lib/formatters.py:160 -msgid "{kibibytes} KiB" -msgstr "" - -#: ckan/lib/formatters.py:162 -msgid "{mebibytes} MiB" -msgstr "" - -#: ckan/lib/formatters.py:164 -msgid "{gibibytes} GiB" -msgstr "" - -#: ckan/lib/formatters.py:166 -msgid "{tebibytes} TiB" -msgstr "" - -#: ckan/lib/formatters.py:178 -msgid "{n}" -msgstr "" - -#: ckan/lib/formatters.py:180 -msgid "{k}k" -msgstr "" - -#: ckan/lib/formatters.py:182 -msgid "{m}M" -msgstr "" - -#: ckan/lib/formatters.py:184 -msgid "{g}G" -msgstr "" - -#: ckan/lib/formatters.py:186 -msgid "{t}T" -msgstr "" - -#: ckan/lib/formatters.py:188 -msgid "{p}P" -msgstr "" - -#: ckan/lib/formatters.py:190 -msgid "{e}E" -msgstr "" - -#: ckan/lib/formatters.py:192 -msgid "{z}Z" -msgstr "" - -#: ckan/lib/formatters.py:194 -msgid "{y}Y" -msgstr "" - -#: ckan/lib/helpers.py:858 -msgid "Update your avatar at gravatar.com" -msgstr "" - -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 -msgid "Unknown" -msgstr "" - -#: ckan/lib/helpers.py:1117 -msgid "Unnamed resource" -msgstr "" - -#: ckan/lib/helpers.py:1164 -msgid "Created new dataset." -msgstr "" - -#: ckan/lib/helpers.py:1166 -msgid "Edited resources." -msgstr "" - -#: ckan/lib/helpers.py:1168 -msgid "Edited settings." -msgstr "" - -#: ckan/lib/helpers.py:1431 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/helpers.py:1433 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/mailer.py:25 -#, python-format -msgid "Dear %s," -msgstr "" - -#: ckan/lib/mailer.py:38 -#, python-format -msgid "%s <%s>" -msgstr "" - -#: ckan/lib/mailer.py:99 -msgid "No recipient email address available!" -msgstr "" - -#: ckan/lib/mailer.py:104 -msgid "" -"You have requested your password on {site_title} to be reset.\n" -"\n" -"Please click the following link to confirm this request:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:119 -msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" -"\n" -"To accept this invite, please reset your password at:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "" - -#: ckan/lib/mailer.py:151 -msgid "Invite for {site_title}" -msgstr "" - -#: ckan/lib/navl/dictization_functions.py:11 -#: ckan/lib/navl/dictization_functions.py:13 -#: ckan/lib/navl/dictization_functions.py:15 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:19 -#: ckan/lib/navl/dictization_functions.py:21 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 -#: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 -msgid "Missing value" -msgstr "" - -#: ckan/lib/navl/validators.py:64 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "" - -#: ckan/lib/navl/validators.py:116 -msgid "Please enter an integer value" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -msgid "Package resource(s) invalid" -msgstr "" - -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 -msgid "Extras" -msgstr "" - -#: ckan/logic/converters.py:72 ckan/logic/converters.py:87 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" - -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "" - -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Dataset" -msgstr "" - -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Group" -msgstr "" - -#: ckan/logic/converters.py:178 -msgid "Could not parse as valid JSON" -msgstr "" - -#: ckan/logic/validators.py:30 ckan/logic/validators.py:39 -msgid "A organization must be supplied" -msgstr "" - -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 -msgid "Organization does not exist" -msgstr "" - -#: ckan/logic/validators.py:53 -msgid "You cannot add a dataset to this organization" -msgstr "" - -#: ckan/logic/validators.py:93 -msgid "Invalid integer" -msgstr "" - -#: ckan/logic/validators.py:98 -msgid "Must be a natural number" -msgstr "" - -#: ckan/logic/validators.py:104 -msgid "Must be a postive integer" -msgstr "" - -#: ckan/logic/validators.py:122 -msgid "Date format incorrect" -msgstr "" - -#: ckan/logic/validators.py:131 -msgid "No links are allowed in the log_message." -msgstr "" - -#: ckan/logic/validators.py:151 -msgid "Dataset id already exists" -msgstr "" - -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 -msgid "Resource" -msgstr "" - -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 -#: ckan/templates/snippets/related.html:2 -msgid "Related" -msgstr "" - -#: ckan/logic/validators.py:260 -msgid "That group name or ID does not exist." -msgstr "" - -#: ckan/logic/validators.py:274 -msgid "Activity type" -msgstr "" - -#: ckan/logic/validators.py:349 -msgid "Names must be strings" -msgstr "" - -#: ckan/logic/validators.py:353 -msgid "That name cannot be used" -msgstr "" - -#: ckan/logic/validators.py:356 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:361 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" - -#: ckan/logic/validators.py:379 -msgid "That URL is already in use." -msgstr "" - -#: ckan/logic/validators.py:384 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:388 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "" - -#: ckan/logic/validators.py:394 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:412 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "" - -#: ckan/logic/validators.py:428 -msgid "Group name already exists in database" -msgstr "" - -#: ckan/logic/validators.py:434 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:438 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" - -#: ckan/logic/validators.py:446 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" - -#: ckan/logic/validators.py:454 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "" - -#: ckan/logic/validators.py:563 -msgid "User names must be strings" -msgstr "" - -#: ckan/logic/validators.py:579 -msgid "That login name is not available." -msgstr "" - -#: ckan/logic/validators.py:588 -msgid "Please enter both passwords" -msgstr "" - -#: ckan/logic/validators.py:596 -msgid "Passwords must be strings" -msgstr "" - -#: ckan/logic/validators.py:600 -msgid "Your password must be 4 characters or longer" -msgstr "" - -#: ckan/logic/validators.py:608 -msgid "The passwords you entered do not match" -msgstr "" - -#: ckan/logic/validators.py:624 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" - -#: ckan/logic/validators.py:633 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:641 -msgid "That vocabulary name is already in use." -msgstr "" - -#: ckan/logic/validators.py:647 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" - -#: ckan/logic/validators.py:656 -msgid "Tag vocabulary was not found." -msgstr "" - -#: ckan/logic/validators.py:669 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:675 -msgid "No tag name" -msgstr "" - -#: ckan/logic/validators.py:688 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:711 -msgid "Please provide a valid URL" -msgstr "" - -#: ckan/logic/validators.py:725 -msgid "role does not exist." -msgstr "" - -#: ckan/logic/validators.py:754 -msgid "Datasets with no organization can't be private." -msgstr "" - -#: ckan/logic/validators.py:760 -msgid "Not a list" -msgstr "" - -#: ckan/logic/validators.py:763 -msgid "Not a string" -msgstr "" - -#: ckan/logic/validators.py:795 -msgid "This parent would create a loop in the hierarchy" -msgstr "" - -#: ckan/logic/validators.py:805 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" - -#: ckan/logic/validators.py:816 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" - -#: ckan/logic/validators.py:819 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" - -#: ckan/logic/validators.py:833 -msgid "There is a schema field with the same name" -msgstr "" - -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 -#, python-format -msgid "REST API: Create object %s" -msgstr "" - -#: ckan/logic/action/create.py:517 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/create.py:558 -#, python-format -msgid "REST API: Create member object %s" -msgstr "" - -#: ckan/logic/action/create.py:772 -msgid "Trying to create an organization as a group" -msgstr "" - -#: ckan/logic/action/create.py:859 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" - -#: ckan/logic/action/create.py:862 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "" - -#: ckan/logic/action/create.py:867 -msgid "Rating must be an integer value." -msgstr "" - -#: ckan/logic/action/create.py:871 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "" - -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 -msgid "You must be logged in to follow users" -msgstr "" - -#: ckan/logic/action/create.py:1236 -msgid "You cannot follow yourself" -msgstr "" - -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 -msgid "You are already following {0}" -msgstr "" - -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 -msgid "You must be logged in to follow a dataset." -msgstr "" - -#: ckan/logic/action/create.py:1335 -msgid "User {username} does not exist." -msgstr "" - -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 -msgid "You must be logged in to follow a group." -msgstr "" - -#: ckan/logic/action/delete.py:68 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "" - -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 -#, python-format -msgid "REST API: Delete %s" -msgstr "" - -#: ckan/logic/action/delete.py:270 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "" - -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 -msgid "id not in data" -msgstr "" - -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:501 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 -msgid "You must be logged in to unfollow something." -msgstr "" - -#: ckan/logic/action/delete.py:542 -msgid "You are not following {0}." -msgstr "" - -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 -msgid "Resource was not found." -msgstr "" - -#: ckan/logic/action/get.py:1851 -msgid "Do not specify if using \"query\" parameter" -msgstr "" - -#: ckan/logic/action/get.py:1860 -msgid "Must be : pair(s)" -msgstr "" - -#: ckan/logic/action/get.py:1892 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" - -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 -msgid "Item was not found." -msgstr "" - -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 -msgid "Package was not found." -msgstr "" - -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 -#, python-format -msgid "REST API: Update object %s" -msgstr "" - -#: ckan/logic/action/update.py:437 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/update.py:789 -msgid "TaskStatus was not found." -msgstr "" - -#: ckan/logic/action/update.py:1180 -msgid "Organization was not found." -msgstr "" - -#: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 -#, python-format -msgid "User %s not authorized to create packages" -msgstr "" - -#: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "" - -#: ckan/logic/auth/create.py:36 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" - -#: ckan/logic/auth/create.py:58 -msgid "You must be a sysadmin to create a featured related item" -msgstr "" - -#: ckan/logic/auth/create.py:62 -msgid "You must be logged in to add a related item" -msgstr "" - -#: ckan/logic/auth/create.py:77 -msgid "No dataset id provided, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 -#: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 -msgid "No package found for this resource, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:92 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" - -#: ckan/logic/auth/create.py:115 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "" - -#: ckan/logic/auth/create.py:126 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "" - -#: ckan/logic/auth/create.py:136 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "" - -#: ckan/logic/auth/create.py:152 -msgid "User {user} not authorized to create users via the API" -msgstr "" - -#: ckan/logic/auth/create.py:155 -msgid "Not authorized to create users" -msgstr "" - -#: ckan/logic/auth/create.py:198 -msgid "Group was not found." -msgstr "" - -#: ckan/logic/auth/create.py:218 -msgid "Valid API key needed to create a package" -msgstr "" - -#: ckan/logic/auth/create.py:226 -msgid "Valid API key needed to create a group" -msgstr "" - -#: ckan/logic/auth/create.py:246 -#, python-format -msgid "User %s not authorized to add members" -msgstr "" - -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:34 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "" - -#: ckan/logic/auth/delete.py:50 -msgid "Resource view not found, cannot check auth." -msgstr "" - -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 -msgid "Only the owner can delete a related item" -msgstr "" - -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "" - -#: ckan/logic/auth/delete.py:95 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "" - -#: ckan/logic/auth/delete.py:99 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:116 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "" - -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "" - -#: ckan/logic/auth/delete.py:133 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "" - -#: ckan/logic/auth/get.py:97 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "" - -#: ckan/logic/auth/get.py:119 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" - -#: ckan/logic/auth/get.py:141 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "" - -#: ckan/logic/auth/get.py:166 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" - -#: ckan/logic/auth/get.py:234 -msgid "You must be logged in to access your dashboard." -msgstr "" - -#: ckan/logic/auth/update.py:37 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "" - -#: ckan/logic/auth/update.py:69 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "" - -#: ckan/logic/auth/update.py:98 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "" - -#: ckan/logic/auth/update.py:126 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "" - -#: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 -msgid "Only the owner can update a related item" -msgstr "" - -#: ckan/logic/auth/update.py:148 -msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" - -#: ckan/logic/auth/update.py:165 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:182 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:209 -msgid "Have to be logged in to edit user" -msgstr "" - -#: ckan/logic/auth/update.py:217 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "" - -#: ckan/logic/auth/update.py:228 -msgid "User {0} not authorized to update user {1}" -msgstr "" - -#: ckan/logic/auth/update.py:236 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "" - -#: ckan/logic/auth/update.py:245 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "" - -#: ckan/logic/auth/update.py:259 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" - -#: ckan/logic/auth/update.py:281 -msgid "Valid API key needed to edit a package" -msgstr "" - -#: ckan/logic/auth/update.py:291 -msgid "Valid API key needed to edit a group" -msgstr "" - -#: ckan/model/license.py:177 -msgid "License not specified" -msgstr "" - -#: ckan/model/license.py:187 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" - -#: ckan/model/license.py:197 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" - -#: ckan/model/license.py:207 -msgid "Open Data Commons Attribution License" -msgstr "" - -#: ckan/model/license.py:218 -msgid "Creative Commons CCZero" -msgstr "" - -#: ckan/model/license.py:227 -msgid "Creative Commons Attribution" -msgstr "" - -#: ckan/model/license.py:237 -msgid "Creative Commons Attribution Share-Alike" -msgstr "" - -#: ckan/model/license.py:246 -msgid "GNU Free Documentation License" -msgstr "" - -#: ckan/model/license.py:256 -msgid "Other (Open)" -msgstr "" - -#: ckan/model/license.py:266 -msgid "Other (Public Domain)" -msgstr "" - -#: ckan/model/license.py:276 -msgid "Other (Attribution)" -msgstr "" - -#: ckan/model/license.py:288 -msgid "UK Open Government Licence (OGL)" -msgstr "" - -#: ckan/model/license.py:296 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "" - -#: ckan/model/license.py:304 -msgid "Other (Non-Commercial)" -msgstr "" - -#: ckan/model/license.py:312 -msgid "Other (Not Open)" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "depends on %s" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "is a dependency of %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "derives from %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "has derivation %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "links to %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is linked from %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a child of %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a parent of %s" -msgstr "" - -#: ckan/model/package_relationship.py:59 -#, python-format -msgid "has sibling %s" -msgstr "" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:12 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "" - -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:14 -#: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 -msgid "Cancel" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:15 -msgid "Upload" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Link" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:17 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 -msgid "Remove" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 -msgid "Image" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:19 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:20 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:25 -msgid "show more" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:26 -msgid "show less" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 -msgid "URL" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 -msgid "Edit" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "" - -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "" - -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "" - -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "" - -#: ckan/templates/footer.html:16 -msgid "Open Knowledge Foundation" -msgstr "" - -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" - -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "" - -#: ckan/templates/header.html:18 -msgid "View profile" -msgstr "" - -#: ckan/templates/header.html:25 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "" - -#: ckan/templates/header.html:40 -msgid "Log out" -msgstr "" - -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "" - -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "" - -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "" - -#: ckan/templates/header.html:112 -msgid "Search Datasets" -msgstr "" - -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 -#: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 -msgid "Search" -msgstr "" - -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "" - -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "" - -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "" - -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "" - -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "" - -#: ckan/templates/admin/config.html:11 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "" - -#: ckan/templates/admin/config.html:12 -msgid "Reset" -msgstr "" - -#: ckan/templates/admin/config.html:13 -msgid "Update Config" -msgstr "" - -#: ckan/templates/admin/config.html:22 -msgid "CKAN config options" -msgstr "" - -#: ckan/templates/admin/config.html:29 -#, python-format -msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " -"Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" -"

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" -msgstr "" - -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "" - -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "" - -#: ckan/templates/admin/index.html:20 -#, python-format -msgid "" -"

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" -msgstr "" - -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" - -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:12 -#, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "" - -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "" - -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "" - -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "" - -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "" - -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "" - -#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 -#: ckan/templates/organization/admins.html:3 -#: ckan/templates/organization/admins.html:6 -msgid "Administrators" -msgstr "" - -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "" - -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 -msgid "Confirm Delete" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "" - -#: ckan/templates/group/confirm_delete_member.html:11 -#: ckan/templates/organization/confirm_delete_member.html:11 -msgid "Are you sure you want to delete member - {name}?" -msgstr "" - -#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:11 -#: ckan/templates/group/read_base.html:12 -#: ckan/templates/organization/edit_base.html:11 -#: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "" - -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "" - -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 -#: ckan/templates/organization/edit_base.html:24 -#: ckan/templates/organization/members.html:3 -msgid "Members" -msgstr "" - -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "" - -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "" - -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "" - -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "" - -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -msgid "Edit Member" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "" - -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "" - -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "" - -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "" - -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" - -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "" - -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "" - -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:38 -msgid "Delete" -msgstr "" - -#: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 -msgid "Save" -msgstr "" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "" - -#: ckan/templates/group/member_new.html:81 -msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " -"datasets from groups

" -msgstr "" - -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "" - -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 -msgid "Description" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:8 -msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " -msgstr "" - -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "" - -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "" - -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "" - -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "" - -#: ckan/templates/home/snippets/about_text.html:1 -msgid "" -"

CKAN is the world’s leading open-source data portal platform.

" -"

CKAN is a complete out-of-the-box software solution that makes data " -"accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " -"government portals, as well as city and municipal sites in the US, UK, " -"Argentina, Finland and elsewhere.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features " -"overview: http://ckan.org/features/

" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:10 -msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "" - -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" - -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" - -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "dataset" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "datasets" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organization" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organizations" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "group" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "" - -#: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 -msgid "The form contains invalid entries:" -msgstr "" - -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "" - -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "" - -#: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 -msgid "Image URL" -msgstr "" - -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "" - -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "" - -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "" - -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" -msgstr "" - -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "" - -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "" - -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "" - -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "" - -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

Admin: Can add/edit and delete datasets, as well as " -"manage organization members.

Editor: Can add and " -"edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" -msgstr "" - -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "" - -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "" - -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:7 -msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" -msgstr "" - -#: ckan/templates/organization/snippets/helper.html:8 -msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "" - -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "" - -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "" - -#: ckan/templates/package/base_form_page.html:25 -msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " -msgstr "" - -#: ckan/templates/package/confirm_delete.html:11 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" - -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "" - -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "" - -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "" - -#: ckan/templates/package/edit_view.html:3 -#: ckan/templates/package/edit_view.html:4 -#: ckan/templates/package/edit_view.html:8 -#: ckan/templates/package/edit_view.html:12 -msgid "Edit view" -msgstr "" - -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "" - -#: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 -msgid "Update" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "" - -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "" - -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "" - -#: ckan/templates/package/new_view.html:3 -#: ckan/templates/package/new_view.html:4 -#: ckan/templates/package/new_view.html:8 -#: ckan/templates/package/new_view.html:12 -msgid "Add view" -msgstr "" - -#: ckan/templates/package/new_view.html:19 -msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " -msgstr "" - -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "" - -#: ckan/templates/package/read_base.html:38 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" - -#: ckan/templates/package/related_list.html:7 -msgid "Related Media for {dataset}" -msgstr "" - -#: ckan/templates/package/related_list.html:12 -msgid "No related items" -msgstr "" - -#: ckan/templates/package/related_list.html:17 -msgid "Add Related Item" -msgstr "" - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:45 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:49 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "" - -#: ckan/templates/package/resource_data.html:53 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:59 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:71 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:78 -msgid "End of log" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "" - -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "" - -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "" - -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "" - -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "" - -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" - -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" - -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" - -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" - -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "" - -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "" - -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "" - -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "" - -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 -msgid "Created" -msgstr "" - -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "" - -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "" - -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" - -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" - -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "" - -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

This dataset has no data, why not " -"add some?

" -msgstr "" - -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "" - -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "" - -#: ckan/templates/package/search.html:56 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" - -#: ckan/templates/package/search.html:60 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " -msgstr "" - -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:37 -#: ckan/templates/package/snippets/additional_info.html:42 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -msgid "Maintainer" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" - -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 -msgid "Title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:40 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:69 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:73 -msgid "No organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:88 -msgid "Visibility" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:91 -msgid "Public" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:110 -msgid "Active" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:28 -msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -#: ckan/templates/user/new_user_form.html:6 -msgid "Joe Bloggs" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -#: ckan/templates/user/new_user_form.html:7 -msgid "joe@example.com" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "" - -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "File" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:10 -msgid "Embed" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "" - -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "" - -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:30 -#: ckan/templates/package/snippets/stages.html:34 -#: ckan/templates/package/snippets/stages.html:36 -msgid "Add data" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "" - -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "" - -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "" - -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "" - -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "" - -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "" - -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "" - -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "" - -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "" - -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 -msgid "Home" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "" - -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "" - -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" - -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "" - -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "" - -#: ckan/templates/snippets/related.html:15 -msgid "" -"No apps, ideas, news stories or images have been related to this dataset " -"yet." -msgstr "" - -#: ckan/templates/snippets/related.html:18 -msgid "Add Item" -msgstr "" - -#: ckan/templates/snippets/search_form.html:16 -msgid "Submit" -msgstr "" - -#: ckan/templates/snippets/search_form.html:31 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "" - -#: ckan/templates/snippets/search_form.html:77 -msgid "

Please try another search.

" -msgstr "" - -#: ckan/templates/snippets/search_form.html:83 -msgid "" -"

There was an error while searching. Please try " -"again.

" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:15 -msgid "{number} dataset found for \"{query}\"" -msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:21 -msgid "{number} group found for \"{query}\"" -msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:27 -msgid "{number} organization found for \"{query}\"" -msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "" - -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 -#: ckan/templates/user/new_user_form.html:7 -#: ckan/templates/user/read_base.html:82 -msgid "Email" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "" - -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "" - -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "" - -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "" - -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "" - -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "" - -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "" - -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "" - -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "" - -#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 -#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 -#: ckan/templates/user/snippets/user_search.html:2 -msgid "Users" -msgstr "" - -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "" - -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" - -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "Full name" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "eg. Joe Bloggs" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:13 -msgid "eg. joe@example.com" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:15 -msgid "A little information about yourself" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:18 -msgid "Subscribe to notification emails" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:27 -msgid "Change password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:29 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:31 -msgid "Confirm Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:37 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:43 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:44 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:48 -msgid "Update Profile" -msgstr "" - -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "" - -#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 -#: ckan/templates/user/login.html:12 -#: ckan/templates/user/snippets/login_form.html:28 -msgid "Login" -msgstr "" - -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "" - -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "" - -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "" - -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "" - -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" - -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "" - -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "" - -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "" - -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "" - -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:19 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:20 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:27 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:31 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:652 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:16 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "Custom Text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" - -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" - -#: ckanext/reclineview/plugin.py:82 -msgid "Data Explorer" -msgstr "" - -#: ckanext/reclineview/plugin.py:106 -msgid "Table" -msgstr "" - -#: ckanext/reclineview/plugin.py:149 -msgid "Graph" -msgstr "" - -#: ckanext/reclineview/plugin.py:207 -msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 -msgid "Total number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 -msgid "Top Rated Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Average rating" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 -msgid "No ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 -msgid "Most Edited Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Number of edits" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 -msgid "Largest Groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Number of datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 -msgid "Top Tags" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "" - -#: ckanext/webpageview/plugin.py:24 -msgid "Website" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" diff --git a/ckan/i18n/el/LC_MESSAGES/ckan.mo b/ckan/i18n/el/LC_MESSAGES/ckan.mo index fdef04f991b..dbb06368ffa 100644 Binary files a/ckan/i18n/el/LC_MESSAGES/ckan.mo and b/ckan/i18n/el/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/el/LC_MESSAGES/ckan.po b/ckan/i18n/el/LC_MESSAGES/ckan.po index c989453d4dd..f0ca19224e2 100644 --- a/ckan/i18n/el/LC_MESSAGES/ckan.po +++ b/ckan/i18n/el/LC_MESSAGES/ckan.po @@ -23,252 +23,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Greek (http://www.transifex.com/projects/p/ckan/language/el/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:11+0000\n" +"Last-Translator: dread \n" +"Language-Team: Greek (http://www.transifex.com/okfn/ckan/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Άδεια λειτουργίας δεν βρέθηκε:%s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Διαχειριστής" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Συντάκτης" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Μέλος" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Απαιτείται ένας διαχειριστής συστήματος για τη διαχείριση." -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Τίτλος Ιστοσελίδας" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Στυλ" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Γραμμή οδηγιών ιστοσελίδας" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Λογότυπο οδηγίας ιστοσελίδας" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Σχετικά" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Κείμενο για τη σελίδα Σχετικά " -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Εισαγωγικό κείμενο" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Κείμενο στην αρχική σελίδα" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Προσαρμοσμένo CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Εισαγωγή προσαρμοσμένου css στην κεφαλίδα της σελίδας" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Αρχική σελίδα" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Δεν είναι δυνατή η εκκαθάριση του πακέτου %s καθως η συνδεόμενη αναθεώρηση %s περιλαμβάνει μη διεγραμμένα πακέτα%s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Πρόβλημα εκκαθάρισης αναθεώρησης %s:%s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Εκκαθάριση ολοκληρώθηκε" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Η λειτουργία δεν υλοποιείται." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Δεν επιτρέπεται να δείτε αυτή τη σελίδα" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Αδύνατη Πρόσβαση" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Δεν βρέθηκε" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Λάθος αίτημα" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Όνομα ενέργειας δεν είναι γνωστό:%s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Λάθος JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Λάθος αίτημα δεδομένων: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Δεν είναι δυνατή η λίστα μιας οντότητας αυτού του τύπου: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Δεν μπορείτε να διαβάσετε μια οντότητα αυτού του τύπου: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Δεν είναι δυνατή η δημιουργία μιας οντότητας αυτού του τύπου: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Δεν είναι δυνατή η προσθήκη πακέτου για αναζήτηση ευρετηρίου" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Δεν είναι δυνατή η ενημέρωση μιας οντότητας αυτού του τύπου: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Δεν είναι δυνατή η ενημέρωση αναζήτησης ευρετηρίου" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Δεν είναι δυνατή η διαγραφή μιας οντότητας αυτού του τύπου: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Δεν καθορίστηκε αναθεώρηση" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Δεν υπάρχει έκδοση με id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Λείπει όρος αναζήτησης ('since_id=UUID' ή 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Αδυναμία ανάγνωσης παραμέτρων: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Λάθος επιλογή αναζήτησης: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Άγνωστη Καταχώρηση: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Λανθασμένη τιμή qjson: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Οι παράμετροι που ζητούνται πρέπει να είναι ακολουθούν την μορφή λεξικού json encoded." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Δεν βρέθηκε η Ομάδα" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Λανθασμένος τύπος ομάδας" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Μη εξουσιοδοτημένοι να διαβάσετε ομάδα %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -279,23 +279,23 @@ msgstr "Μη εξουσιοδοτημένοι να διαβάσετε ομάδα msgid "Organizations" msgstr "Φορείς" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Ομάδες" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -303,394 +303,303 @@ msgstr "Ομάδες" msgid "Tags" msgstr "Ετικέτες" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Τύποι" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Άδειες" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Δεν υπάρχει εξουσιοδότηση για μαζική ενημέρωση" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε μια Ομάδα." -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Ο χρήστης %r δεν έχει δικαίωμα επεξεργασίας του %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Σφάλμα ακεραιότητας" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Ο χρήστης %r δεν έχει εξουσιοδότηση να επεξεργαστεί %s δικαιώματα" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Δεν έχετε δικαίωμα να διαγράψετε την ομάδα %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Ο Φορέας έχει διαγραφεί." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Η Ομάδα έχει διαγραφεί." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Δεν έχετε εξουσιοδότηση να προσθέσετε μέλος στην ομάδα %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε μέλη από την ομάδα %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Το μέλος της ομάδας έχει διαγραφεί" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Θα πρέπει να επιλέξτε δύο εκδόσεις πριν κάνετε σύγκριση" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Ο χρήστης %r δεν έχει δικαίωμα να επεξεργαστεί το %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Ιστορικό Εκδόσεων Ομάδας CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Πρόσφατες αλλαγές στη CKAN Ομάδα: " -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Μήνυμα Λογαριασμού:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Δεν έχετε εξουσιοδότηση να διαβάσετε την ομάδα {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Ακολουθείτε το {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Δεν ακολουθείτε το {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Χωρίς δικαιώματα θέασης των ακολούθων %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Αυτή η ιστοσελίδα είναι εκτός δικτύου.Η βάση δεδομένων δεν έχει αρχικοποιηθεί." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Παρακαλώ ενημερώστε το προφίλ σας και προσθέστε την ηλεκτρονική σας διεύθυνση και το πλήρες όνομά σας. {site} χρησιμοποιεί την ηλεκτρονική σας διεύθυνση για να επαναφέρετε τον κωδικό σας." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Παρακαλούμε ενημερώστε το προφίλ σας και προσθέστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr " %s χρησιμοποιείστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας εάν θέλετε να επαναφέρετε τον κωδικό πρόσβασής σας." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Παρακαλούμε ενημερώστε το προφίλ σας και προσθέστε το ονοματεπώνυμό σας." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Το Σύνολο Δεδομένων δεν βρέθηκε" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Δεν έχετε δικαίωμα ανάγνωσης του πακέτου %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Μη έγκυρη μορφή αναθεώρησης:%r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Ιστορικό Εκδόσεων CKAN Συνόλου Δεδομένων " -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Πρόσφατες αλλαγές στο CKAN Σύνολο Δεδομένων: " -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Δεν έχετε δικαίωμα να δημιουργήσετε ένα πακέτο" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Δεν έχετε εξουσιοδότηση να επεξεργαστείτε το συγκεκριμένο πόρο" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Δεν βρέθηκε πόρος" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Μη εξουσιοδοτημένοι να αναβαθμίσετε σύνολα δεδομένων" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Δεν ήταν δυνατή η εύρεση του πόρου {id}." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πόρο δεδομένων" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Σφάλμα" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Μη εξουσιοδοτημένοι να δημιουργήσετε ένα πόρο" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Δεν είναι δυνατή η προσθήκη πακέτου για αναζήτηση ευρετηρίου." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Δεν είναι δυνατή η ενημέρωση αναζήτησης ευρετηρίου." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Το συγκεκριμένο σύνολο δεδομένων έχει διαγραφεί." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε το πακέτο %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Το συγκεκριμένο σύνολο δεδομένων έχει διαγραφεί." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Ο πόρος έχει διαγραφεί. " -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε τον πόρο %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Δεν έχετε εξουσιοδότηση να διαβάσετε το σύνολο δεδομένων %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Μη εξουσιοδοτημένοι να διαβάσετε πόρους %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Δε βρέθηκαν δεδομένα πόρου" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Καμία λήψη δεν είναι διαθέσιμη" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Δεν έχει οριστεί προεπισκόπηση." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Περισσότερα προβεβλημένα" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Περισσότερα προβεβλημένα" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Λιγότερα προβεβλημένα" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Νεότερο" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Παλαιότερο" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Το ζητούμενο σχετικό στοιχείο δε βρέθηκε" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Δεν βρέθηκε σχετικό στοιχείο " - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Δεν έχετε εξουσιοδότηση" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Το πακέτο δεν βρέθηκε" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Το σχετικό στοιχείο δημιουργήθηκε με επιτυχία" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Το σχετικό στοιχείο ενημερώθηκε με επιτυχία" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Το σχετικό στοιχείο έχει διαγραφεί" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε το σχετικό αντικείμενο %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Εφαρμογή" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Ιδέα" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Ειδησεογραφικό άρθρο" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Έγγραφο" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Δημοσίευεση" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Οπτικοποίηση" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Ιστορικού ενημέρωσης CKAN Repository" @@ -716,10 +625,10 @@ msgstr "Άλλο" msgid "Tag not found" msgstr "Δεν βρέθηκε ετικέτα" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Ο χρήστης δεν βρέθηκε" @@ -739,13 +648,13 @@ msgstr "" msgid "No user specified" msgstr "Δεν έχει οριστεί χρήστης" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Δεν έχετε δικαίωμα επεξεργασίας του χρήστη %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Το προφίλ ενημερώθηκε" @@ -769,75 +678,87 @@ msgstr "Ο χρήστης \"%s\" έχει εγγραφεί αλλά είστε msgid "Unauthorized to edit a user." msgstr "Δεν έχετε δικαίωμα επεξεργασίας χρηστών" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Χρήστης %s δεν επιτρέπεται να επεξεργαστεί %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Η σύνδεση απέτυχε.Λάθος όνομα χρήστη ή κωδικός πρόσβασης." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Δεν έχετε δικαίωμα αίτησης επαναφοράς κωδικού πρόσβασης." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" αντιστοιχεί σε διάφορους χρήστες" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Δεν υπάρχει τέτοιος χρήστης:%s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Παρακαλούμε ελέγξτε τα εισερχόμενά μηνύματα σας για τον κωδικό επαναφοράς." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Δεν ήταν δυνατή η αποστολή συνδέσμου επαναφοράς:%s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Δεν έχεις δικαίωμα να επαναφέρεις το κωδικό πρόσβασης" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Άκυρο κλειδί επαναφοράς. Παρακαλώ δοκιμάστε ξανά." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Ο κωδικός πρόσβασής σας έχει επαναφερθεί." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Ο κωδικός πρόσβασής πρέπει να έχει τουλάχιστον 4 χαρακτήρες." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Οι κωδικοί που δώσατε δεν ταιριάζουν." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Πρέπει να δώσετε τον κωδικό πρόσβασης " -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Δεν βρέθηκε το στοιχείο" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} δεν βρέθηκε" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Δεν έχετε εξουσιοδότηση να διαβάσετε {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Όλα" @@ -959,7 +880,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -967,10 +888,10 @@ msgid "View" msgstr "Προβολή" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "μία νέα δραστηριότητα από το {site_title}" -msgstr[1] "{n} νέες δραστηριότητες από το {site_title}" +msgstr[0] "" +msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1020,135 +941,135 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Μόλις τώρα" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "πριν ένα λεπτό" msgstr[1] "πριν {mins} λεπτά" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "πριν μία ώρα" msgstr[1] "πρίν {hours} ώρες" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "μια μέρα πρίν" msgstr[1] "πρίν {days} ημέρες" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "πριν {months} μήνες" msgstr[1] "πριν {months} μήνες" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "πάνω από {years} έτη πριν" msgstr[1] "πάνω από {years} έτη πριν" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Ενημερώστε το avatar σας στο gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Άγνωστος" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Πόρος δίχως όνομα" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Δημιουργήθηκε νέο σύνολο δεδομένων." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Επεξεργασία Πόρων." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Επεξεργασία ρυθμίσεων." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "μία προβολή" msgstr[1] "{number} προβολές" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "μία πρόσφατη προβολή" @@ -1179,7 +1100,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1204,7 +1125,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Λείπει τιμή" @@ -1217,7 +1138,7 @@ msgstr "Το πεδίο εισαγωγής %(name)s δεν ήταν αναμεν msgid "Please enter an integer value" msgstr "Παρακαλώ εισάγετε έναν ακέραιο αριθμό" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1227,11 +1148,11 @@ msgstr "Παρακαλώ εισάγετε έναν ακέραιο αριθμό" msgid "Resources" msgstr "Πηγές" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Μη έγκυρο πακέτο πόρου(ων) " -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Επιπλέον πληροφορίες" @@ -1241,25 +1162,22 @@ msgstr "Επιπλέον πληροφορίες" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Δεν υπάρχει ετικέτα λεξιλόγιο \"%s\" " -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Χρήστης" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Σύνολο Δεδομένων" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Ομάδα" @@ -1271,378 +1189,369 @@ msgstr "Δεν ήταν δυνατή η ανάλυση ως έγκυρου αρ msgid "A organization must be supplied" msgstr "Πρέπει να δώσετε έναν Φορέα" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Ο οργανισμός δεν υπάρχει" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Δεν είναι δυνατή η προσθήκη συνόλου δεδομένων σε αυτόν τον οργανισμό." -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Άκυρος ακέραιος" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Πρέπει να είναι φυσικός αριθμός" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Πρέπει να είναι θετικός ακέραιος" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Λάθος μορφή ημερομηνίας " -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Δεν επιτρέπονται υπερσύνδεσμοι στο log_message" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Πόρος" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Σχετικά" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Αυτό το όνομα της ομάδας ή το ID δεν υπάρχει." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Τύπος δραστηριότητας" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Τα ονόματα πρέπει να αποτελούνται από αλφαριθμητικά" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Αυτό το όνομα δεν μπορεί να χρησιμοποιηθεί" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr " Το όνομα πρέπει να είναι κατ 'ανώτατο όριο των %i χαρακτήρων" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Αυτό το URL είναι ήδη σε χρήση." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Το μήκος του ονόματος \"%s\" είναι μικρότερο από το ελάχιστο%s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Το μήκος του ονόματος \"%s\" είναι περισσότερο από το μέγιστο%s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Η έκδοση πρέπει να είναι κατ 'ανώτατο όριο των %i χαρακτήρων" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Διπλό κλειδί \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Το όνομα της ομάδας υπάρχει ήδη στην βάση δεδομένων" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Το μήκος του tag \"%s\" είναι μικρότερο από το ελάχιστο απαιτούμενο %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Το μήκος της ετικέτας \"%s\" είναι περισσότερο από το μέγιστο %i " -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Η ετικέτα \"%s\" πρέπει να αποτελείται από αλφαριθμητικούς χαρακτήρες ή σύμβολα:-_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Η ετικέτα \"%s\" δεν μπορεί να περιέχει κεφαλαία γράμματα" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Τα ονόματα χρηστών πρέπει να αποτελούνται από αλφαριθμητικά" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Αυτό το όνομα σύνδεσης δεν είναι διαθέσιμο." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Παρακαλώ εισάγετε τους δύο κωδικούς πρόσβασης" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Οι κωδικοί πρόσβασης πρέπει να αποτελούνται από αλφαριθμητικά" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Ο κωδικός πρόσβασής σας θα πρέπει να είναι 4 χαρακτήρων ή περισσότερο" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Οι κωδικοί που δώσατε δεν ταιριάζουν" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Η επεξεργασία δεν επιτρέπεται, δεδομένου ότι μοιάζει με spam. Παρακαλούμε αποφύγετε συνδέσεις στην περιγραφή σας." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Το μήκος του ονόματος πρέπει να είναι τουλάχιστον %s χαρακτήρες" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Αυτό το όνομα λεξιλογίου είναι ήδη σε χρήση." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Δεν μπορείτε να αλλάξετε την τιμή του κλειδιού από το%s στο%s. Αυτό το κλειδί είναι μόνο για ανάγνωση." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Το Λεξιλόγιο Ετικέτας δεν βρέθηκε." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Η ετικέτα%s δεν ανήκει στο λεξιλόγιο%s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Κανένα όνομα ετικέτας" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Η ετικέτα %s ανήκει ήδη στο λεξιλόγιο%s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Παρακαλώ δώστε μια έγκυρη διεύθυνση URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "ο ρόλος δεν υπάρχει." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Τα σύνολα δεδομένων που δεν ανήκουν σε φορέα δε μπορούν να είναι ιδιωτικά." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Δεν είναι λίστα" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Σςν είναι αλφαριθμητικό" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Δημιουργία αντικειμένου %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Δημιουργία συσχέτισης πακέτων: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Δημιούργησε αντικείμενο μέλους %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Προσπάθεια να δημιουργηθεί ένας φορέας ως ομάδα" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Πρέπει να δηλώσετε κάποιο id πακέτου ή όνομα(παράμετρος \"πακέτο\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Πρέπει να δώσετε μια βαθμολογία (παράμετρος \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Η βαθμολογία πρέπει να είναι ένας ακέραιος αριθμός" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Η βαθμολογία πρέπει να είναι μεταξύ %i και %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Πρέπει να είστε συνδεδεμένος για να ακολουθήσετε χρήστες" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Δεν μπορείς να ακολουθήσεις τον εαυτό σου" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Ήδη ακολουθείτε τον {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Πρέπει να είστε συνδεδεμένος για να ακολουθήσετε ένα σύνολο δεδομένων" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Ο χρήστης {username} δεν υπάρχει." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Πρέπει να είστε συνδεδεμένος για να ακολουθήσετε μια ομάδα" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Διαγραφή Πακέτου: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Διαγραφή %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Διαγραφή Μέλους: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "όχι id στα δεδομένα" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Αδύνατη η εύρεση λεξιλογίου \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Αδύνατη η εύρεση ετικέτας \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Πρέπει να είστε συνδεδεμένος για να σταματήσετε να ακολουθείτε κάτι." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Δεν ακολουθείτε τον {0}" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Δεν βρέθηκαν πόροι." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Δεν ορίζεται αν χρησιμοποιείται η παράμετρος \"query\"" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Πρέπει να είναι : pair(s)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Το πεδίο \"{field}\" δεν αναγνωρίστηκε στο resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "Άγνωστος χρήστης:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Δεν βρέθηκε το στοιχείο" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Το πακέτο δεν βρέθηκε" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API:Ενημέρωση αντικειμένου %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Ενημέρωση συσχέτισης πακέτου: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "Το TaskStatus δε βρέθηκε." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Ο οργανισμός δεν βρέθηκε." @@ -1673,7 +1582,7 @@ msgstr "Πρέπει να είστε συνδεδεμένος για να προ msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Δε βρέθηκε κανένα πακέτο για αυτόν τον πόρο, δεν μπορεί να γίνει έλεγχος στο auth." @@ -1683,94 +1592,98 @@ msgstr "Δε βρέθηκε κανένα πακέτο για αυτόν τον msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Ο χρήστης %s δεν έχει δικαίωμα επεξεργασίας αυτών των πακέτων" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη δημιουργία ομάδας." -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη δημιουργία φορέων" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Δε βρέθηκε η ομάδα." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Απαιτείται ένα έγκυρο κλειδί API για τη δημιουργία πακέτου." -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Απαιτείται ένα έγκυρο κλειδί API για τη δημιουργία ομάδας." -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την προσθήκη μελών" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία της ομάδας %s." -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή του πόρου %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Μόνο ο ιδιοκτήτης μπορεί να διαγράψει το σχετικό αντικείμενο." -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή της σχέσης %s." -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή ομάδων" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή της ομάδας %s." -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή φορέων" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή του οργανισμού %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή του task_status." +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Δεν έχετε εξουσιοδότηση" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1791,7 +1704,7 @@ msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Πρέπει να είστε συνδεδεμένος για να έχετε πρόσβαση στον Πίνακα βασικών λειτουργιών." @@ -1869,63 +1782,63 @@ msgstr "Απαιτείται ένα έγκυρο κλειδί API για την msgid "Valid API key needed to edit a group" msgstr "Απαιτείται ένα έγκυρο κλειδί API για την επεξεργασία μιας ομάδας." -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Αναφορά" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Αναφορά - Παρόμοια διανομή" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "Άδεια Ελεύθερης Τεκμηρίωσης GNU" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Άλλο (Ανοιχτό)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Άλλο (Δημόσιο Πεδίο)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Άλλο (Χαρακτηριστικό)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Μη Εμπορική Χρήση" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Άλλο (Μη εμπορικό)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Άλλο (Κλειστό)" @@ -2032,8 +1945,6 @@ msgstr "Επιβεβαίωση" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Ακύρωση" @@ -2058,12 +1969,13 @@ msgstr "Σύνδεσμος" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Αφαίρεση" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Εικόνα" @@ -2136,7 +2048,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2150,7 +2061,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Επεξεργασία" @@ -2189,34 +2099,42 @@ msgstr "Λειτουργεί με /strong> Site Title: This is the title of this CKAN instance It " @@ -2367,7 +2282,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Δημιουργία" @@ -2519,7 +2433,7 @@ msgstr "Επιλογή" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2552,8 +2466,6 @@ msgstr "Φόρμα Ομάδας" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Επιβεβαίωση Διαγραφής" @@ -2571,7 +2483,7 @@ msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετ #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2716,14 +2628,12 @@ msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετ #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Διαγραφή" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Αποθήκευση" @@ -2811,7 +2721,6 @@ msgstr "my-group" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Περιγραφή" @@ -2872,7 +2781,7 @@ msgstr "Σύγκριση" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2972,38 +2881,30 @@ msgstr "" msgid "{0} statistics" msgstr "{0} στατιστικά" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "Σύνολο Δεδομένων" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "σύνολα δεδομένων" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "ομάδα" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "ομάδες" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "σχετικό στοιχείο" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "σχετικά στοιχεία" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3021,7 +2922,6 @@ msgid "Custom" msgstr "Προσαρμοσμένο" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Η φόρμα περιέχει μη έγκυρες εγγραφές:" @@ -3034,7 +2934,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL εικόνας" @@ -3079,7 +2978,7 @@ msgstr "Προσχέδιο" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3113,6 +3012,20 @@ msgstr "Αναζήτηση οργανισμών..." msgid "There are currently no organizations for this site" msgstr "Δεν έχουν ακόμη οριστεί Φορείς για αυτόν τον Ιστότοπο" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Όνομα χρήστη" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Ενημέρωση Μέλους" @@ -3247,7 +3160,6 @@ msgid "Preview" msgstr "Προεπισκόπηση" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Ενημέρωση" @@ -3306,7 +3218,7 @@ msgstr "" msgid "Add" msgstr "Προσθήκη" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3338,28 +3250,32 @@ msgstr "Σφάλμα μεταφόρτωσης:" msgid "Error:" msgstr "Λάθος:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Κατάσταση:" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Τελευταία ενημέρωση" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Ποτέ" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Αρχείο καταγραφής μεταφόρτωσης" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Λεπτομέρειες" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Τέλος αρχείου καταγραφής" @@ -3463,7 +3379,7 @@ msgid "unknown" msgstr "Άγνωστος" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Δημιουργήθηκε" @@ -3499,6 +3415,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API Έγγραφα" @@ -3555,7 +3475,7 @@ msgid "Version" msgstr "Έκδοση" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Πολιτεία/Περιοχή" @@ -3570,7 +3490,6 @@ msgstr "Data API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Τίτλος" @@ -3590,30 +3509,30 @@ msgstr "π.χ. Χρήσιμες πληροφορίες σχετικά με τα msgid "eg. economy, mental health, government" msgstr "π.χ οικονομία, υγεία, διακυβέρνηση" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Ορισμούς Αδειών και επιπλέον πληροφορίες μπορείτε να βρείτε στο opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Φορέας" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Ορατότητα" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Δημόσιο" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Ενεργό" @@ -3740,7 +3659,7 @@ msgstr "Εξερευνήστε" msgid "More information" msgstr "Περισσότερες πληροφορίες" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Ενσωματώστε" @@ -3826,139 +3745,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Σχετική Φόρμα" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Τι είναι τα σχετικά στοιχεία ;" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Σχετικά Μέσα είναι κάθε εφαρμογή, άρθρο, απεικόνιση ή ιδέα σχετική με αυτό το σύνολο δεδομένων. Για παράδειγμα, θα μπορούσε να είναι μια προσαρμοσμένη απεικόνιση, ένα γράφημα, μια εφαρμογή που χρησιμοποιεί το σύνολο ή μέρος των δεδομένων ή ακόμα και μια είδηση ​​που αναφέρεται σε αυτό το σύνολο δεδομένων. " - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το σχετικό στοιχείο- {name};" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Ιδέες και εφαρμογές" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Εμφανίζονται τα %(first)s - %(last)s από %(item_count)s σχετικά στοιχεία που βρέθηκαν

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s σχετικά στοιχεία βρέθηκαν

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Δεν έχουν υποβληθεί εφαρμογές" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Τι είναι οι εφαρμογές;" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Πρόκειται για εφαρμογές που έχουν δημιουργηθεί με τα σύνολα δεδομένων , καθώς και ιδέες για το τι θα μπορούσε να γίνει με αυτά." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Φίλτρα Αποτελεσμάτων" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Φιλτράρισμα κατά τύπο" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Όλα" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Ταξινόμηση κατά" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Προκαθορισμένο" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Εφαρμογή" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Επεξεργασία σχετικού στοιχείου" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Επεξεργασία Σχετικού" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Επεξεργασία Σχετικού στοιχείου" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Προσθήκη σχετικού στοιχείου" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Δημιουργία Σχετικού" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Δημιουργία Σχετικού στοιχείου" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Τα Σχετικά στοιχεία μου" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.gr/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.gr/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Λίγες πληροφορίες σχετικά με το στοιχείο..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Τύπος" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το σχετικό στοιχείο;" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "Διαφορές" @@ -4046,7 +3832,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Αρχική" @@ -4055,7 +3840,7 @@ msgid "Language" msgstr "Γλώσσα" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4087,21 +3872,25 @@ msgstr "Δεν υπάρχουν εφαρμογές, ιδέες, ειδήσεις msgid "Add Item" msgstr "Προσθήκη στοιχείου" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Υποβολή" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Ταξινόμηση κατά" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Φίλτρα Αποτελεσμάτων" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Παρακαλώ δοκιμάστε νέα αναζήτηση.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4176,7 +3965,7 @@ msgid "Subscribe" msgstr "Εγγραφή" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4195,10 +3984,6 @@ msgstr "Αλλαγές" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Πίνακας βασικών λειτουργιών" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Ροή ειδήσεων" @@ -4262,36 +4047,27 @@ msgstr "Το προφίλ σας επιτρέπει σε άλλους χρήστ msgid "Change details" msgstr "Τροποποίηση λεπτομερειών" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Όνομα χρήστη" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Πλήρες όνομα" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "π.χ Θοδωρής Παπαδόπουλος" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "π.χ. thodoris@example.gr" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Λίγα λόγια για εσάς..." -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Εγγραφείτε στο e-mail ειδοποιήσεων" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" @@ -4524,15 +4300,15 @@ msgstr "Δε μεταφορτώθηκε ακόμα" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Ο πόρος \"{0}\" δεν βρέθηκε." @@ -4540,6 +4316,14 @@ msgstr "Ο πόρος \"{0}\" δεν βρέθηκε." msgid "User {0} not authorized to update resource {1}" msgstr "Ο χρήστης {0} δεν έχει δικαίωμα επεξεργασίας του πόρου {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4566,6 +4350,10 @@ msgstr "Κωδικός Χώρας" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4583,64 +4371,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4700,7 +4448,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Συνολικός αριθμός Συνόλων Δεδομένων" @@ -4728,33 +4475,27 @@ msgstr "Νέα σύνολα δεδομένων" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Δημοφιλή Σύνολα Δεδομένων" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Μέση βαθμολογία" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Πλήθος αξιολογήσεων" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Χωρίς αξιολόγηση" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Περισσότερο επεξεργασμένα σύνολα δεδομένων" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Πλήθος επεξεργασιών" @@ -4764,12 +4505,10 @@ msgstr "Δεν υπάρχουν επεξεργασμένα σύνολα" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Μεγαλύτερες Ομάδες" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Αριθμός Συνόλων Δεδομένων" @@ -4779,7 +4518,6 @@ msgstr "Δεν υπάρχουν Ομάδες" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Κορυφαίες ετικέτες" @@ -4794,8 +4532,8 @@ msgstr "Αριθμός Συνόλων Δεδομένων" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Χρήστες που κατέχουν τα περισσότερα σύνολα δεδομένων" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4805,42 +4543,16 @@ msgstr "Στατιστικά στοιχεία" msgid "Total Number of Datasets" msgstr "Συνολικός αριθμός Συνόλων Δεδομένων" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Στατιστικά στοιχεία" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Εκδόσεις Συνόλων Δεδομένων ανά εβδομάδα" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Χρήστες που κατέχουν τα περισσότερα σύνολα δεδομένων" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Τελευταία ενημέρωση της σελίδας:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Πίνακας κατάταξης-Στατιστικά" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Πίνακας κατάταξης συνόλου δεδομένων" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Επιλέξτε μια ιδιότητα ενός συνόλου δεδομένων και μάθετε ποιες κατηγορίες στον τομέα αυτό έχουν τα περισσότερα σύνολα δεδομένων. Π.χ. ετικέτες, ομάδες, άδεια, res_format, χώρα." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Επιλέξτε τομέα" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/en_AU/LC_MESSAGES/ckan.mo b/ckan/i18n/en_AU/LC_MESSAGES/ckan.mo index fc14871f3ba..0cfe2c33ab8 100644 Binary files a/ckan/i18n/en_AU/LC_MESSAGES/ckan.mo and b/ckan/i18n/en_AU/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/en_AU/LC_MESSAGES/ckan.po b/ckan/i18n/en_AU/LC_MESSAGES/ckan.po index 0e7e2ea9939..1b1d0715c8a 100644 --- a/ckan/i18n/en_AU/LC_MESSAGES/ckan.po +++ b/ckan/i18n/en_AU/LC_MESSAGES/ckan.po @@ -3,258 +3,260 @@ # This file is distributed under the same license as the ckan project. # # Translators: +# Adrià Mercader , 2015 # darwinp , 2013 # Sean Hammond , 2013 +# Steven De Costa , 2015 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:20+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: English (Australia) (http://www.transifex.com/projects/p/ckan/language/en_AU/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 21:50+0000\n" +"Last-Translator: Steven De Costa \n" +"Language-Team: English (Australia) (http://www.transifex.com/okfn/ckan/language/en_AU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: en_AU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" -msgstr "Authorization function not found: %s" +msgstr "Authorisation function not found: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Admin" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Editor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Member" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Need to be system administrator to administer" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Site Title" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Style" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Site Tag Line" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Site Tag Logo" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "About" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "About page text" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Intro Text" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Text on home page" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Custom CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Customisable css inserted into the page header" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" -msgstr "" +msgstr "Homepage" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Cannot purge package %s as associated revision %s includes non-deleted packages %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problem purging revision %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Purge complete" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Action not implemented." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" -msgstr "Not authorized to see this page" +msgstr "Not authorised to see this page" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Access denied" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Not found" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Bad request" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Action name not known: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON Error: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Bad request data: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Cannot list entity of this type: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Cannot read entity of this type: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Cannot create new entity of this type: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Unable to add package to search index" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Cannot update entity of this type: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Unable to update search index" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Cannot delete entity of this type: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "No revision specified" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "There is no revision with id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Could not read parameters: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Bad search option: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Unknown register: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" -msgstr "" +msgstr "Malformed qjson value: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Request params must be in form of a json encoded dictionary." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Group not found" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Organisation not found" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" -msgstr "" +msgstr "Incorrect group type" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" -msgstr "Unauthorized to read group %s" +msgstr "Unauthorised to read group %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -265,23 +267,23 @@ msgstr "Unauthorized to read group %s" msgid "Organizations" msgstr "Organisations" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Groups" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -289,394 +291,303 @@ msgstr "Groups" msgid "Tags" msgstr "Tags" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formats" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" -msgstr "" +msgstr "Licenses" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" -msgstr "" +msgstr "Not authorised to perform bulk update" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" -msgstr "Unauthorized to create a group" +msgstr "Unauthorised to create a group" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" -msgstr "User %r not authorized to edit %s" +msgstr "User %r not authorised to edit %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Integrity Error" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" -msgstr "User %r not authorized to edit %s authorizations" +msgstr "User %r not authorised to edit %s authorisations" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" -msgstr "Unauthorized to delete group %s" +msgstr "Unauthorised to delete group %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organisation has been deleted." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Group has been deleted." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s has been deleted." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" -msgstr "Unauthorized to add member to group %s" +msgstr "Unauthorised to add member to group %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" -msgstr "Unauthorized to delete group %s members" +msgstr "Unauthorised to delete group %s members" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Group member has been deleted." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Select two revisions before doing the comparison." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" -msgstr "User %r not authorized to edit %r" +msgstr "User %r not authorised to edit %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN Group Revision History" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Recent changes to CKAN Group: " -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Log message: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" -msgstr "Unauthorized to read group {group_id}" +msgstr "Unauthorised to read group {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "You are now following {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "You are no longer following {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" -msgstr "Unauthorized to view followers %s" +msgstr "Unauthorised to view followers %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "This site is currently off-line. Database is not initialised." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Please update your profile and add your email address and your full name. {site} uses your email address if you need to reset your password." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Please update your profile and add your email address. " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s uses your email address if you need to reset your password." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Please update your profile and add your full name." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +msgstr "Parameter \"{parameter_name}\" is not an integer" + +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Dataset not found" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" -msgstr "Unauthorized to read package %s" +msgstr "Unauthorised to read package %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Invalid revision format: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." -msgstr "" +msgstr "Viewing {package_type} datasets in {format} format is not supported (template file {file} not found)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN Dataset Revision History" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Recent changes to CKAN Dataset: " -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" -msgstr "Unauthorized to create a package" +msgstr "Unauthorised to create a package" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" -msgstr "Unauthorized to edit this resource" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +msgstr "Unauthorised to edit this resource" + +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Resource not found" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" -msgstr "Unauthorized to update dataset" +msgstr "Unauthorised to update dataset" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." -msgstr "" +msgstr "The dataset {id} could not be found." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "You must add at least one data resource" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Error" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" -msgstr "Unauthorized to create a resource" +msgstr "Unauthorised to create a resource" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "Unauthorised to create a resource for this package" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Unable to add package to search index." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Unable to update search index." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Unauthorized to delete package %s" - -#: ckan/controllers/package.py:1061 +#: ckan/controllers/package.py:1036 msgid "Dataset has been deleted." msgstr "Dataset has been deleted." -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Unauthorised to delete package %s" + +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Resource has been deleted." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" -msgstr "Unauthorized to delete resource %s" +msgstr "Unauthorised to delete resource %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" -msgstr "Unauthorized to read dataset %s" +msgstr "Unauthorised to read dataset %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "Resource view not found" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" -msgstr "Unauthorized to read resource %s" +msgstr "Unauthorised to read resource %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" -msgstr "" +msgstr "Resource data not found" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "No download is available" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Unauthorised to edit resource" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "View not found" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "Unauthorised to view View %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "View Type Not found" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Bad resource view data" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Unauthorised to read resource view %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "Resource view not supplied" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "No preview has been defined." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Most viewed" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Most Viewed" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Least Viewed" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Newest" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Oldest" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "The requested related item was not found" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Related item not found" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Not authorized" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Package not found" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Related item was successfully created" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Related item was successfully updated" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Related item has been deleted." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Unauthorized to delete related item %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Application" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idea" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "News Article" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Paper" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Post" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualization" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN Repository Revision History" @@ -702,43 +613,43 @@ msgstr "Other" msgid "Tag not found" msgstr "Tag not found" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "User not found" #: ckan/controllers/user.py:149 msgid "Unauthorized to register as a user." -msgstr "" +msgstr "Unauthorised to register as a user." #: ckan/controllers/user.py:166 msgid "Unauthorized to create a user" -msgstr "Unauthorized to create a user" +msgstr "Unauthorised to create a user" #: ckan/controllers/user.py:197 msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" +msgstr "Unauthorised to delete user with id \"{user_id}\"." #: ckan/controllers/user.py:211 ckan/controllers/user.py:270 msgid "No user specified" msgstr "No user specified" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" -msgstr "Unauthorized to edit user %s" +msgstr "Unauthorised to edit user %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profile updated" #: ckan/controllers/user.py:232 #, python-format msgid "Unauthorized to create user %s" -msgstr "Unauthorized to create user %s" +msgstr "Unauthorised to create user %s" #: ckan/controllers/user.py:238 msgid "Bad Captcha. Please try again." @@ -753,77 +664,89 @@ msgstr "User \"%s\" is now registered but you are still logged in as \"%s\" from #: ckan/controllers/user.py:276 msgid "Unauthorized to edit a user." -msgstr "" +msgstr "Unauthorised to edit a user." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" -msgstr "User %s not authorized to edit %s" +msgstr "User %s not authorised to edit %s" + +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Password entered was incorrect" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Old Password" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "incorrect password" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Login failed. Bad username or password." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." -msgstr "" +msgstr "Unauthorised to request reset password." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" matched several users" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "No such user: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Please check your inbox for a reset code." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Could not send reset link: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." -msgstr "" +msgstr "Unauthorised to reset password." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Invalid reset key. Please try again." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Your password has been reset." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Your password must be 4 characters or longer." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "The passwords you entered do not match." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "You must provide a password" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Follow item not found" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} not found" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" -msgstr "Unauthorized to read {0} {1}" +msgstr "Unauthorised to read {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Everything" @@ -833,7 +756,7 @@ msgstr "Missing Value" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Redirecting to external site is not allowed." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" @@ -866,11 +789,11 @@ msgstr "{actor} updated their profile" #: ckan/lib/activity_streams.py:86 msgid "" "{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" +msgstr "{actor} updated the {related_type} {related_item} of the dataset {dataset}" #: ckan/lib/activity_streams.py:89 msgid "{actor} updated the {related_type} {related_item}" -msgstr "" +msgstr "{actor} updated the {related_type} {related_item}" #: ckan/lib/activity_streams.py:92 msgid "{actor} deleted the group {group}" @@ -939,13 +862,13 @@ msgstr "{actor} started following {group}" #: ckan/lib/activity_streams.py:142 msgid "" "{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" +msgstr "{actor} added the {related_type} {related_item} to the dataset {dataset}" #: ckan/lib/activity_streams.py:145 msgid "{actor} added the {related_type} {related_item}" -msgstr "" +msgstr "{actor} added the {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -953,9 +876,9 @@ msgid "View" msgstr "View" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "1 new activity from {site_title}" +msgstr[0] "{n} new activity from {site_title}" msgstr[1] "{n} new activities from {site_title}" #: ckan/lib/formatters.py:17 @@ -1006,135 +929,135 @@ msgstr "November" msgid "December" msgstr "December" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Just now" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} minute ago" msgstr[1] "{mins} minutes ago" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} hour ago" msgstr[1] "{hours} hours ago" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} day ago" msgstr[1] "{days} days ago" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{months} month ago" +msgstr[1] "{months} months ago" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "over {years} year ago" +msgstr[1] "over {years} years ago" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{day} {month}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Update your avatar at gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Unknown" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" -msgstr "" +msgstr "Unnamed resource" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Created new dataset." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Edited resources." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Edited settings." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} view" msgstr[1] "{number} views" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} recent view" @@ -1161,16 +1084,16 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "You have requested your password on {site_title} to be reset.\n\nPlease click the following link to confirm this request:\n\n {reset_link}\n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n\nTo accept this invite, please reset your password at:\n\n {reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1179,7 +1102,7 @@ msgstr "Reset your password" #: ckan/lib/mailer.py:151 msgid "Invite for {site_title}" -msgstr "" +msgstr "Invite for {site_title}" #: ckan/lib/navl/dictization_functions.py:11 #: ckan/lib/navl/dictization_functions.py:13 @@ -1190,7 +1113,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Missing value" @@ -1203,7 +1126,7 @@ msgstr "The input field %(name)s was not expected." msgid "Please enter an integer value" msgstr "Please enter an integer value" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1213,11 +1136,11 @@ msgstr "Please enter an integer value" msgid "Resources" msgstr "Resources" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Package resource(s) invalid" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Extras" @@ -1227,425 +1150,413 @@ msgstr "Extras" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Tag vocabulary \"%s\" does not exist" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "User" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Dataset" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Group" #: ckan/logic/converters.py:178 msgid "Could not parse as valid JSON" -msgstr "" +msgstr "Could not parse as valid JSON" #: ckan/logic/validators.py:30 ckan/logic/validators.py:39 msgid "A organization must be supplied" msgstr "A organisation must be supplied" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organisation does not exist" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "You cannot add a dataset to this organisation" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Invalid integer" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" -msgstr "" +msgstr "Must be a natural number" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" -msgstr "" +msgstr "Must be a postive integer" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Date format incorrect" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "No links are allowed in the log_message." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "Dataset id already exists" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Resource" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Related" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "That group name or ID does not exist." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Activity type" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" -msgstr "" +msgstr "Names must be strings" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "That name cannot be used" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Must be at least %s characters long" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Name must be a maximum of %i characters long" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "Must be purely lowercase alphanumeric (ascii) characters and these symbols: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "That URL is already in use." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Name \"%s\" length is less than minimum %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Name \"%s\" length is more than maximum %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Version must be a maximum of %i characters long" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Duplicate key \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Group name already exists in database" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Tag \"%s\" length is less than minimum %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Tag \"%s\" length is more than maximum %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Tag \"%s\" must be alphanumeric characters or symbols: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Tag \"%s\" must not be uppercase" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" -msgstr "" +msgstr "User names must be strings" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "That login name is not available." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Please enter both passwords" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" -msgstr "" +msgstr "Passwords must be strings" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Your password must be 4 characters or longer" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "The passwords you entered do not match" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Edit not allowed as it looks like spam. Please avoid links in your description." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Name must be at least %s characters long" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "That vocabulary name is already in use." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Cannot change value of key from %s to %s. This key is read-only" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Tag vocabulary was not found." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Tag %s does not belong to vocabulary %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "No tag name" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Tag %s already belongs to vocabulary %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Please provide a valid URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "role does not exist." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." -msgstr "" +msgstr "Datasets with no organisation can't be private." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" -msgstr "" +msgstr "Not a list" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" -msgstr "" +msgstr "Not a string" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" -msgstr "" +msgstr "This parent would create a loop in the hierarchy" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "\"filter_fields\" and \"filter_values\" should have the same length" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +msgstr "\"filter_fields\" is required when \"filter_values\" is filled" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "\"filter_values\" is required when \"filter_fields\" is filled" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "There is a schema field with the same name" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Create object %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Create package relationship: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Create member object %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Trying to create an organisation as a group" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "You must supply a package id or name (parameter \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "You must supply a rating (parameter \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Rating must be an integer value." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Rating must be between %i and %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "You must be logged in to follow users" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "You cannot follow yourself" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "You are already following {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "You must be logged in to follow a dataset." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." -msgstr "" +msgstr "User {username} does not exist." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "You must be logged in to follow a group." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Delete Package: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Delete %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Delete Member: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id not in data" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Could not find vocabulary \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Could not find tag \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "You must be logged in to unfollow something." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "You are not following {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Resource was not found." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Do not specify if using \"query\" parameter" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Must be : pair(s)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Field \"{field}\" not recognised in resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "unknown user:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Item was not found." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Package was not found." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Update object %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Update package relationship: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus was not found." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organisation was not found." #: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 #, python-format msgid "User %s not authorized to create packages" -msgstr "User %s not authorized to create packages" +msgstr "User %s not authorised to create packages" #: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 #, python-format msgid "User %s not authorized to edit these groups" -msgstr "User %s not authorized to edit these groups" +msgstr "User %s not authorised to edit these groups" #: ckan/logic/auth/create.py:36 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "" +msgstr "User %s not authorised to add dataset to this organisation" #: ckan/logic/auth/create.py:58 msgid "You must be a sysadmin to create a featured related item" @@ -1657,9 +1568,9 @@ msgstr "You must be logged in to add a related item" #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "No dataset id provided, cannot check auth." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "No package found for this resource, cannot check auth." @@ -1667,139 +1578,143 @@ msgstr "No package found for this resource, cannot check auth." #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "User %s not authorised to create resources on dataset %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" -msgstr "User %s not authorized to edit these packages" +msgstr "User %s not authorised to edit these packages" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" -msgstr "User %s not authorized to create groups" +msgstr "User %s not authorised to create groups" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" -msgstr "User %s not authorized to create organisations" +msgstr "User %s not authorised to create organisations" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" -msgstr "" +msgstr "User {user} not authorised to create users via the API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" -msgstr "" +msgstr "Not authorised to create users" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Group was not found." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Valid API key needed to create a package" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Valid API key needed to create a group" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" -msgstr "User %s not authorized to add members" +msgstr "User %s not authorised to add members" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" -msgstr "User %s not authorized to edit group %s" +msgstr "User %s not authorised to edit group %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" -msgstr "User %s not authorized to delete resource %s" +msgstr "User %s not authorised to delete resource %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "Resource view not found, cannot check auth." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Only the owner can delete a related item" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" -msgstr "User %s not authorized to delete relationship %s" +msgstr "User %s not authorised to delete relationship %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" -msgstr "User %s not authorized to delete groups" +msgstr "User %s not authorised to delete groups" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" -msgstr "User %s not authorized to delete group %s" +msgstr "User %s not authorised to delete group %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" -msgstr "User %s not authorized to delete organisations" +msgstr "User %s not authorised to delete organisations" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" -msgstr "User %s not authorized to delete organisation %s" +msgstr "User %s not authorised to delete organisation %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" -msgstr "User %s not authorized to delete task_status" +msgstr "User %s not authorised to delete task_status" + +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Not authorised" #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" -msgstr "User %s not authorized to read these packages" +msgstr "User %s not authorised to read these packages" #: ckan/logic/auth/get.py:119 #, python-format msgid "User %s not authorized to read package %s" -msgstr "User %s not authorized to read package %s" +msgstr "User %s not authorised to read package %s" #: ckan/logic/auth/get.py:141 #, python-format msgid "User %s not authorized to read resource %s" -msgstr "User %s not authorized to read resource %s" +msgstr "User %s not authorised to read resource %s" #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "User %s not authorised to read group %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "You must be logged in to access your dashboard." #: ckan/logic/auth/update.py:37 #, python-format msgid "User %s not authorized to edit package %s" -msgstr "User %s not authorized to edit package %s" +msgstr "User %s not authorised to edit package %s" #: ckan/logic/auth/update.py:69 #, python-format msgid "User %s not authorized to edit resource %s" -msgstr "User %s not authorized to edit resource %s" +msgstr "User %s not authorised to edit resource %s" #: ckan/logic/auth/update.py:98 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "User %s not authorized to change state of package %s" +msgstr "User %s not authorised to change state of package %s" #: ckan/logic/auth/update.py:126 #, python-format msgid "User %s not authorized to edit organization %s" -msgstr "User %s not authorized to edit organisation %s" +msgstr "User %s not authorised to edit organisation %s" #: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 msgid "Only the owner can update a related item" @@ -1812,40 +1727,40 @@ msgstr "You must be a sysadmin to change a related item's featured field." #: ckan/logic/auth/update.py:165 #, python-format msgid "User %s not authorized to change state of group %s" -msgstr "User %s not authorized to change state of group %s" +msgstr "User %s not authorised to change state of group %s" #: ckan/logic/auth/update.py:182 #, python-format msgid "User %s not authorized to edit permissions of group %s" -msgstr "User %s not authorized to edit permissions of group %s" +msgstr "User %s not authorised to edit permissions of group %s" #: ckan/logic/auth/update.py:209 msgid "Have to be logged in to edit user" -msgstr "" +msgstr "Have to be logged in to edit user" #: ckan/logic/auth/update.py:217 #, python-format msgid "User %s not authorized to edit user %s" -msgstr "User %s not authorized to edit user %s" +msgstr "User %s not authorised to edit user %s" #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "User {0} not authorised to update user {1}" #: ckan/logic/auth/update.py:236 #, python-format msgid "User %s not authorized to change state of revision" -msgstr "User %s not authorized to change state of revision" +msgstr "User %s not authorised to change state of revision" #: ckan/logic/auth/update.py:245 #, python-format msgid "User %s not authorized to update task_status table" -msgstr "User %s not authorized to update task_status table" +msgstr "User %s not authorised to update task_status table" #: ckan/logic/auth/update.py:259 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "User %s not authorized to update term_translation table" +msgstr "User %s not authorised to update term_translation table" #: ckan/logic/auth/update.py:281 msgid "Valid API key needed to edit a package" @@ -1855,63 +1770,63 @@ msgstr "Valid API key needed to edit a package" msgid "Valid API key needed to edit a group" msgstr "Valid API key needed to edit a group" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "License not specified" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Other (Open)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Other (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Other (Attribution)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Other (Non-Commercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Other (Not Open)" @@ -2018,8 +1933,6 @@ msgstr "Confirm" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Cancel" @@ -2039,27 +1952,28 @@ msgstr "Upload" #: ckan/public/base/javascript/modules/image-upload.js:16 msgid "Link" -msgstr "" +msgstr "Link" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Remove" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Image" #: ckan/public/base/javascript/modules/image-upload.js:19 msgid "Upload a file on your computer" -msgstr "" +msgstr "Upload a file on your computer" #: ckan/public/base/javascript/modules/image-upload.js:20 msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" +msgstr "Link to a URL on the internet (you can also link to an API)" #: ckan/public/base/javascript/modules/related-item.js:25 msgid "show more" @@ -2071,17 +1985,17 @@ msgstr "show less" #: ckan/public/base/javascript/modules/resource-reorder.js:8 msgid "Reorder resources" -msgstr "" +msgstr "Reorder resources" #: ckan/public/base/javascript/modules/resource-reorder.js:9 #: ckan/public/base/javascript/modules/resource-view-reorder.js:9 msgid "Save order" -msgstr "" +msgstr "Save order" #: ckan/public/base/javascript/modules/resource-reorder.js:10 #: ckan/public/base/javascript/modules/resource-view-reorder.js:10 msgid "Saving..." -msgstr "" +msgstr "Saving..." #: ckan/public/base/javascript/modules/resource-upload-field.js:25 msgid "Upload a file" @@ -2111,18 +2025,17 @@ msgstr "Unable to get data for uploaded file" msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" -msgstr "" +msgstr "You are uploading a file. Are you sure you want to navigate away and stop this upload?" #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Reorder resource view" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2136,7 +2049,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Edit" @@ -2175,34 +2087,42 @@ msgstr "Powered by Site Title: This is the title of this CKAN instance It " @@ -2300,7 +2217,7 @@ msgid "" "target=\"_blank\">reading the documentation.

" "

Homepage: This is for choosing a predefined layout for " "the modules that appear on your homepage.

" -msgstr "" +msgstr "

Site Title: This is the title of this CKAN instance It appears in various places throughout CKAN.

Style: Choose from a list of simple variations of the main colour scheme to get a very quick custom theme working.

Site Tag Logo: This is the logo that appears in the header of all the CKAN instance templates.

About: This text will appear on this CKAN instances about page.

Intro Text: This text will appear on this CKAN instances home page as a welcome to visitors.

Custom CSS: This is a block of CSS that appears in <head> tag of every page. If you wish to customise the templates more fully we recommend reading the documentation.

Homepage: This is for choosing a predefined layout for the modules that appear on your homepage.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2309,7 +2226,7 @@ msgstr "Confirm Reset" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Administer CKAN" #: ckan/templates/admin/index.html:20 #, python-format @@ -2317,85 +2234,84 @@ msgid "" "

As a sysadmin user you have full control over this CKAN instance. " "Proceed with care!

For guidance on using sysadmin features, see the " "CKAN sysadmin guide

" -msgstr "" +msgstr "

As a sysadmin user you have full control over this CKAN instance. Proceed with care!

For guidance on using sysadmin features, see the CKAN sysadmin guide

" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Purge" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "

Purge deleted datasets forever and irreversibly.

" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" -msgstr "" +msgstr "CKAN Data API" #: ckan/templates/ajax_snippets/api_info.html:23 msgid "Access resource data via a web API with powerful query support" -msgstr "" +msgstr "Access resource data via a web API with powerful query support" #: ckan/templates/ajax_snippets/api_info.html:24 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +msgstr " Further information in the main CKAN Data API and DataStore documentation.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" -msgstr "" +msgstr "Endpoints" #: ckan/templates/ajax_snippets/api_info.html:37 msgid "" "The Data API can be accessed via the following actions of the CKAN action " "API." -msgstr "" +msgstr "The Data API can be accessed via the following actions of the CKAN action API." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Create" #: ckan/templates/ajax_snippets/api_info.html:46 msgid "Update / Insert" -msgstr "" +msgstr "Update / Insert" #: ckan/templates/ajax_snippets/api_info.html:50 msgid "Query" -msgstr "" +msgstr "Query" #: ckan/templates/ajax_snippets/api_info.html:54 msgid "Query (via SQL)" -msgstr "" +msgstr "Query (via SQL)" #: ckan/templates/ajax_snippets/api_info.html:66 msgid "Querying" -msgstr "" +msgstr "Querying" #: ckan/templates/ajax_snippets/api_info.html:70 msgid "Query example (first 5 results)" -msgstr "" +msgstr "Query example (first 5 results)" #: ckan/templates/ajax_snippets/api_info.html:75 msgid "Query example (results containing 'jones')" -msgstr "" +msgstr "Query example (results containing 'jones')" #: ckan/templates/ajax_snippets/api_info.html:81 msgid "Query example (via SQL statement)" -msgstr "" +msgstr "Query example (via SQL statement)" #: ckan/templates/ajax_snippets/api_info.html:93 msgid "Example: Javascript" -msgstr "" +msgstr "Example: Javascript" #: ckan/templates/ajax_snippets/api_info.html:97 msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" +msgstr "A simple ajax (JSONP) request to the data API using jQuery." #: ckan/templates/ajax_snippets/api_info.html:118 msgid "Example: Python" -msgstr "" +msgstr "Example: Python" #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." @@ -2420,7 +2336,7 @@ msgstr "Your browser does not support iframes." #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." -msgstr "" +msgstr "No preview available." #: ckan/templates/dataviewer/snippets/no_preview.html:5 msgid "More details..." @@ -2505,7 +2421,7 @@ msgstr "Select" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2538,8 +2454,6 @@ msgstr "Group Form" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Confirm Delete" @@ -2557,12 +2471,12 @@ msgstr "Are you sure you want to delete member - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 msgid "Manage" -msgstr "" +msgstr "Manage" #: ckan/templates/group/edit.html:12 msgid "Edit Group" @@ -2600,7 +2514,7 @@ msgstr "Add Group" #: ckan/templates/group/index.html:20 msgid "Search groups..." -msgstr "" +msgstr "Search groups..." #: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 #: ckan/templates/organization/bulk_process.html:97 @@ -2656,27 +2570,27 @@ msgstr "Add Member" #: ckan/templates/group/member_new.html:18 #: ckan/templates/organization/member_new.html:20 msgid "Existing User" -msgstr "" +msgstr "Existing User" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:23 msgid "If you wish to add an existing user, search for their username below." -msgstr "" +msgstr "If you wish to add an existing user, search for their username below." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:40 msgid "or" -msgstr "" +msgstr "or" #: ckan/templates/group/member_new.html:42 #: ckan/templates/organization/member_new.html:44 msgid "New User" -msgstr "" +msgstr "New User" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:47 msgid "If you wish to invite a new user, enter their email address." -msgstr "" +msgstr "If you wish to invite a new user, enter their email address." #: ckan/templates/group/member_new.html:55 #: ckan/templates/group/members.html:18 @@ -2702,14 +2616,12 @@ msgstr "Are you sure you want to delete this member?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Delete" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Save" @@ -2723,7 +2635,7 @@ msgid "" "

Admin: Can edit group information, as well as manage " "organization members.

Member: Can add/remove " "datasets from groups

" -msgstr "" +msgstr "

Admin: Can edit group information, as well as manage organisation members.

Member: Can add/remove datasets from groups

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -2767,7 +2679,7 @@ msgstr "Popular" #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." -msgstr "" +msgstr "Search datasets..." #: ckan/templates/group/snippets/feeds.html:3 msgid "Datasets in group: {group}" @@ -2797,7 +2709,6 @@ msgstr "my-group" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Description" @@ -2836,7 +2747,7 @@ msgstr "View {name}" #: ckan/templates/group/snippets/group_item.html:43 msgid "Remove dataset from this group" -msgstr "" +msgstr "Remove dataset from this group" #: ckan/templates/group/snippets/helper.html:4 msgid "What are Groups?" @@ -2848,17 +2759,17 @@ msgid "" "could be to catalogue datasets for a particular project or team, or on a " "particular theme, or as a very simple way to help people find and search " "your own published datasets. " -msgstr "" +msgstr " You can use CKAN Groups to create and manage collections of datasets. This could be to catalogue datasets for a particular project or team, or on a particular theme, or as a very simple way to help people find and search your own published datasets. " #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 msgid "Compare" -msgstr "" +msgstr "Compare" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2944,51 +2855,43 @@ msgstr "This is a featured section" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "E.g. environment" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "Search data" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Popular tags" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" -msgstr "" +msgstr "{0} statistics" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "dataset" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "datasets" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" -msgstr "" +msgstr "organisation" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" -msgstr "" +msgstr "organisations" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" -msgstr "" +msgstr "group" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" +msgstr "groups" #: ckan/templates/macros/form.html:126 #, python-format @@ -2996,37 +2899,35 @@ msgid "" "You can use Markdown formatting here" -msgstr "" +msgstr "You can use Markdown formatting here" #: ckan/templates/macros/form.html:265 msgid "This field is required" -msgstr "" +msgstr "This field is required" #: ckan/templates/macros/form.html:265 msgid "Custom" msgstr "Custom" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "The form contains invalid entries:" #: ckan/templates/macros/form.html:395 msgid "Required field" -msgstr "" +msgstr "Required field" #: ckan/templates/macros/form.html:410 msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "Image URL" #: ckan/templates/macros/form.html:424 msgid "Clear Upload" -msgstr "" +msgstr "Clear Upload" #: ckan/templates/organization/base_form_page.html:5 msgid "Organization Form" @@ -3035,15 +2936,15 @@ msgstr "Organisation Form" #: ckan/templates/organization/bulk_process.html:3 #: ckan/templates/organization/bulk_process.html:11 msgid "Edit datasets" -msgstr "" +msgstr "Edit datasets" #: ckan/templates/organization/bulk_process.html:6 msgid "Add dataset" -msgstr "" +msgstr "Add dataset" #: ckan/templates/organization/bulk_process.html:16 msgid " found for \"{query}\"" -msgstr "" +msgstr " found for \"{query}\"" #: ckan/templates/organization/bulk_process.html:18 msgid "Sorry no datasets found for \"{query}\"" @@ -3051,11 +2952,11 @@ msgstr "Sorry no datasets found for \"{query}\"" #: ckan/templates/organization/bulk_process.html:37 msgid "Make public" -msgstr "" +msgstr "Make public" #: ckan/templates/organization/bulk_process.html:41 msgid "Make private" -msgstr "" +msgstr "Make private" #: ckan/templates/organization/bulk_process.html:70 #: ckan/templates/package/read.html:18 @@ -3065,7 +2966,7 @@ msgstr "Draft" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3074,7 +2975,7 @@ msgstr "Private" #: ckan/templates/organization/bulk_process.html:88 msgid "This organization has no datasets associated to it" -msgstr "" +msgstr "This organisation has no datasets associated to it" #: ckan/templates/organization/confirm_delete.html:11 msgid "Are you sure you want to delete organization - {name}?" @@ -3093,15 +2994,29 @@ msgstr "Add Organisation" #: ckan/templates/organization/index.html:20 msgid "Search organizations..." -msgstr "" +msgstr "Search organisations..." #: ckan/templates/organization/index.html:29 msgid "There are currently no organizations for this site" msgstr "There are currently no organisations for this site" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Username" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email address" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" -msgstr "" +msgstr "Update Member" #: ckan/templates/organization/member_new.html:82 msgid "" @@ -3135,7 +3050,7 @@ msgstr "Add Dataset" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "Datasets in organisation: {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 @@ -3150,14 +3065,14 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "" +msgstr "

Organisations act like publishing departments for datasets (for example, the Department of Health). This means that datasets can be published by and belong to a department instead of an individual user.

Within organisations, admins can assign roles and authorise its members, giving individual users the right to publish datasets from that particular organisation (e.g. Office of National Statistics).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" " CKAN Organizations are used to create, manage and publish collections of " "datasets. Users can have different roles within an Organization, depending " "on their level of authorisation to create, edit and publish. " -msgstr "" +msgstr " CKAN Organisations are used to create, manage and publish collections of datasets. Users can have different roles within an Organisation, depending on their level of authorisation to create, edit and publish. " #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3175,7 +3090,7 @@ msgstr "A little information about my organisation..." msgid "" "Are you sure you want to delete this Organization? This will delete all the " "public and private datasets belonging to this organization." -msgstr "" +msgstr "Are you sure you want to delete this Organisation? This will delete all the public and private datasets belonging to this organisation." #: ckan/templates/organization/snippets/organization_form.html:64 msgid "Save Organization" @@ -3184,7 +3099,7 @@ msgstr "Save Organisation" #: ckan/templates/organization/snippets/organization_item.html:37 #: ckan/templates/organization/snippets/organization_item.html:38 msgid "View {organization_name}" -msgstr "" +msgstr "View {organization_name}" #: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 #: ckan/templates/package/snippets/new_package_breadcrumb.html:2 @@ -3200,7 +3115,7 @@ msgid "" " A CKAN Dataset is a collection of data resources (such as files), together " "with a description and other information, at a fixed URL. Datasets are what " "users see when searching for data. " -msgstr "" +msgstr " A CKAN Dataset is a collection of data resources (such as files), together with a description and other information, at a fixed URL. Datasets are what users see when searching for data. " #: ckan/templates/package/confirm_delete.html:11 msgid "Are you sure you want to delete dataset - {name}?" @@ -3216,14 +3131,14 @@ msgstr "View dataset" #: ckan/templates/package/edit_base.html:20 msgid "Edit metadata" -msgstr "" +msgstr "Edit metadata" #: ckan/templates/package/edit_view.html:3 #: ckan/templates/package/edit_view.html:4 #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Edit view" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3233,21 +3148,20 @@ msgid "Preview" msgstr "Preview" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Update" #: ckan/templates/package/group_list.html:14 msgid "Associate this group with this dataset" -msgstr "" +msgstr "Associate this group with this dataset" #: ckan/templates/package/group_list.html:14 msgid "Add to group" -msgstr "" +msgstr "Add to group" #: ckan/templates/package/group_list.html:23 msgid "There are no groups associated with this dataset" -msgstr "" +msgstr "There are no groups associated with this dataset" #: ckan/templates/package/new_package_form.html:15 msgid "Update Dataset" @@ -3265,18 +3179,18 @@ msgstr "Add New Resource" #: ckan/templates/package/new_resource_not_draft.html:3 #: ckan/templates/package/new_resource_not_draft.html:4 msgid "Add resource" -msgstr "" +msgstr "Add resource" #: ckan/templates/package/new_resource_not_draft.html:16 msgid "New resource" -msgstr "" +msgstr "New resource" #: ckan/templates/package/new_view.html:3 #: ckan/templates/package/new_view.html:4 #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Add view" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3285,14 +3199,14 @@ msgid "" "href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-" "structured-data-the-data-explorer' target='_blank'>Data Explorer " "documentation. " -msgstr "" +msgstr " Data Explorer views may be slow and unreliable unless the DataStore extension is enabled. For more information, please see the Data Explorer documentation. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" msgstr "Add" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3313,45 +3227,49 @@ msgstr "Add Related Item" #: ckan/templates/package/resource_data.html:12 msgid "Upload to DataStore" -msgstr "" +msgstr "Upload to DataStore" #: ckan/templates/package/resource_data.html:19 msgid "Upload error:" -msgstr "" +msgstr "Upload error:" #: ckan/templates/package/resource_data.html:25 #: ckan/templates/package/resource_data.html:27 msgid "Error:" msgstr "Error:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "Error traceback:" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" -msgstr "" +msgstr "Status" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Last updated" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" -msgstr "" +msgstr "Never" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" -msgstr "" +msgstr "Upload Log" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" -msgstr "" +msgstr "Details" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" -msgstr "" +msgstr "End of log" #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" -msgstr "" +msgstr "All resources" #: ckan/templates/package/resource_edit_base.html:19 msgid "View resource" @@ -3360,15 +3278,15 @@ msgstr "View resource" #: ckan/templates/package/resource_edit_base.html:24 #: ckan/templates/package/resource_edit_base.html:32 msgid "Edit resource" -msgstr "" +msgstr "Edit resource" #: ckan/templates/package/resource_edit_base.html:26 msgid "DataStore" -msgstr "" +msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Views" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" @@ -3377,7 +3295,7 @@ msgstr "API Endpoint" #: ckan/templates/package/resource_read.html:41 #: ckan/templates/package/snippets/resource_item.html:48 msgid "Go to resource" -msgstr "" +msgstr "Go to resource" #: ckan/templates/package/resource_read.html:43 #: ckan/templates/package/snippets/resource_item.html:45 @@ -3400,30 +3318,30 @@ msgstr "Source: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "There are no views created for this resource yet." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "Not seeing the views you were expecting?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +msgstr "Here are some reasons you may not be seeing expected views:" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "" +msgstr "No view has been created that is suitable for this resource" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +msgstr "The site administrators may not have enabled the relevant view plugins" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "" +msgstr "If a view requires the DataStore, the DataStore plugin may not be enabled, or the data may not have been pushed to the DataStore, or the DataStore hasn't finished processing the data yet" #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" @@ -3449,7 +3367,7 @@ msgid "unknown" msgstr "unknown" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Created" @@ -3467,15 +3385,15 @@ msgstr "License" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "New view" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "This resource has no views" #: ckan/templates/package/resources.html:8 msgid "Add new resource" -msgstr "" +msgstr "Add new resource" #: ckan/templates/package/resources.html:19 #: ckan/templates/package/snippets/resources_list.html:25 @@ -3483,7 +3401,11 @@ msgstr "" msgid "" "

This dataset has no data, why not " "add some?

" -msgstr "" +msgstr "

This dataset has no data, why not add some?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" #: ckan/templates/package/search.html:53 msgid "API Docs" @@ -3509,15 +3431,15 @@ msgstr " You can also access this registry using the %(api_link)s (see %(api_doc #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "All views" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "View view" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "View preview" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 @@ -3541,14 +3463,14 @@ msgid "Version" msgstr "Version" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "State" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "Last Updated" #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" @@ -3556,7 +3478,6 @@ msgstr "Data API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Title" @@ -3576,32 +3497,32 @@ msgstr "eg. Some useful notes about the data" msgid "eg. economy, mental health, government" msgstr "eg. economy, mental health, government" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr " License definitions and additional information can be found at opendefinition.org " -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" -msgstr "" +msgstr "No organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Visibility" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Public" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" -msgstr "" +msgstr "Active" #: ckan/templates/package/snippets/package_form.html:28 msgid "" @@ -3610,7 +3531,7 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "" +msgstr "The data license you select above only applies to the contents of any resource files that you add to this dataset. By submitting this form, you agree to release the metadata values that you enter into the form under the Open Database License." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -3622,11 +3543,11 @@ msgstr "Next: Add Data" #: ckan/templates/package/snippets/package_metadata_fields.html:6 msgid "http://example.com/dataset.json" -msgstr "" +msgstr "http://example.com/dataset.json" #: ckan/templates/package/snippets/package_metadata_fields.html:10 msgid "1.0" -msgstr "" +msgstr "1.0" #: ckan/templates/package/snippets/package_metadata_fields.html:14 #: ckan/templates/package/snippets/package_metadata_fields.html:20 @@ -3654,7 +3575,7 @@ msgstr "Update Resource" #: ckan/templates/package/snippets/resource_form.html:24 msgid "File" -msgstr "" +msgstr "File" #: ckan/templates/package/snippets/resource_form.html:28 msgid "eg. January 2011 Gold Prices" @@ -3670,7 +3591,7 @@ msgstr "eg. CSV, XML or JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" +msgstr "This will be guessed automatically. Leave blank if you wish" #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" @@ -3724,33 +3645,33 @@ msgstr "Explore" #: ckan/templates/package/snippets/resource_item.html:36 msgid "More information" -msgstr "" +msgstr "More information" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Embed" #: ckan/templates/package/snippets/resource_view.html:24 msgid "This resource view is not available at the moment." -msgstr "" +msgstr "This resource view is not available at the moment." #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "" +msgstr "Embed resource view" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "" +msgstr "You can copy and paste the embed code into a CMS or blog software that supports raw HTML" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Width" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Height" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" @@ -3758,7 +3679,7 @@ msgstr "Code" #: ckan/templates/package/snippets/resource_views_list.html:8 msgid "Resource Preview" -msgstr "" +msgstr "Resource Preview" #: ckan/templates/package/snippets/resources_list.html:13 msgid "Data and Resources" @@ -3766,7 +3687,7 @@ msgstr "Data and Resources" #: ckan/templates/package/snippets/resources_list.html:29 msgid "This dataset has no data" -msgstr "" +msgstr "This dataset has no data" #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format @@ -3786,173 +3707,40 @@ msgstr "Add data" #: ckan/templates/package/snippets/view_form.html:8 msgid "eg. My View" -msgstr "" +msgstr "eg. My View" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "" +msgstr "eg. Information about my view" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "" +msgstr "Add Filter" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "Remove Filter" #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" -msgstr "" +msgstr "Filters" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "" +msgstr "What's a view?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Related Form" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "What are related items?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Related Media is any app, article, visualisation or idea related to this dataset.

For example, it could be a custom visualisation, pictograph or bar chart, an app using all or part of the data or even a news story that references this dataset.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Are you sure you want to delete related item - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Apps & Ideas" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Showing items %(first)s - %(last)s of %(item_count)s related items found

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s related items found

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "There have been no apps submitted yet." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "What are applications?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr " These are applications built with the datasets as well as ideas for things that could be done with them. " - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filter Results" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filter by type" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "All" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Sort by" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Default" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Only show featured items" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Apply" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Edit related item" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Edit Related" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Edit Related Item" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Create a related item" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Create Related" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Create Related Item" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "My Related Item" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "A little information about the item..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Type" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Are you sure you want to delete this related item?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" +msgstr "A view is a representation of the data held against a resource" #: ckan/templates/revision/diff.html:6 msgid "Differences" -msgstr "" +msgstr "Differences" #: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 #: ckan/templates/revision/diff.html:23 msgid "Revision Differences" -msgstr "" +msgstr "Revision Differences" #: ckan/templates/revision/diff.html:44 msgid "Difference" @@ -3960,7 +3748,7 @@ msgstr "Difference" #: ckan/templates/revision/diff.html:54 msgid "No Differences" -msgstr "" +msgstr "No Differences" #: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 #: ckan/templates/revision/list.html:10 @@ -4013,7 +3801,7 @@ msgstr "Height:" #: ckan/templates/snippets/datapusher_status.html:8 msgid "Datapusher status: {status}." -msgstr "" +msgstr "Datapusher status: {status}." #: ckan/templates/snippets/disqus_trackback.html:2 msgid "Trackback URL" @@ -4021,18 +3809,17 @@ msgstr "Trackback URL" #: ckan/templates/snippets/facet_list.html:80 msgid "Show More {facet_type}" -msgstr "" +msgstr "Show More {facet_type}" #: ckan/templates/snippets/facet_list.html:83 msgid "Show Only Popular {facet_type}" -msgstr "" +msgstr "Show Only Popular {facet_type}" #: ckan/templates/snippets/facet_list.html:87 msgid "There are no {facet_type} that match this search" -msgstr "" +msgstr "There are no {facet_type} that match this search" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Home" @@ -4041,7 +3828,7 @@ msgid "Language" msgstr "Language" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4073,21 +3860,25 @@ msgstr "No apps, ideas, news stories or images have been related to this dataset msgid "Add Item" msgstr "Add Item" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Submit" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Order by" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filter Results" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Please try another search.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4101,7 +3892,7 @@ msgstr[1] "{number} datasets found for \"{query}\"" #: ckan/templates/snippets/search_result_text.html:16 msgid "No datasets found for \"{query}\"" -msgstr "" +msgstr "No datasets found for \"{query}\"" #: ckan/templates/snippets/search_result_text.html:17 msgid "{number} dataset found" @@ -4111,7 +3902,7 @@ msgstr[1] "{number} datasets found" #: ckan/templates/snippets/search_result_text.html:18 msgid "No datasets found" -msgstr "" +msgstr "No datasets found" #: ckan/templates/snippets/search_result_text.html:21 msgid "{number} group found for \"{query}\"" @@ -4121,7 +3912,7 @@ msgstr[1] "{number} groups found for \"{query}\"" #: ckan/templates/snippets/search_result_text.html:22 msgid "No groups found for \"{query}\"" -msgstr "" +msgstr "No groups found for \"{query}\"" #: ckan/templates/snippets/search_result_text.html:23 msgid "{number} group found" @@ -4131,27 +3922,27 @@ msgstr[1] "{number} groups found" #: ckan/templates/snippets/search_result_text.html:24 msgid "No groups found" -msgstr "" +msgstr "No groups found" #: ckan/templates/snippets/search_result_text.html:27 msgid "{number} organization found for \"{query}\"" msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "{number} organization found for \"{query}\"" +msgstr[0] "{number} organisation found for \"{query}\"" msgstr[1] "{number} organisations found for \"{query}\"" #: ckan/templates/snippets/search_result_text.html:28 msgid "No organizations found for \"{query}\"" -msgstr "" +msgstr "No organisations found for \"{query}\"" #: ckan/templates/snippets/search_result_text.html:29 msgid "{number} organization found" msgid_plural "{number} organizations found" -msgstr[0] "{number} organization found" +msgstr[0] "{number} organisation found" msgstr[1] "{number} organisations found" #: ckan/templates/snippets/search_result_text.html:30 msgid "No organizations found" -msgstr "" +msgstr "No organisations found" #: ckan/templates/snippets/social.html:5 msgid "Social" @@ -4162,7 +3953,7 @@ msgid "Subscribe" msgstr "Subscribe" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4179,11 +3970,7 @@ msgstr "Edits" #: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Dashboard" +msgstr "Search Tags" #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" @@ -4197,16 +3984,16 @@ msgstr "My Datasets" #: ckan/templates/user/dashboard.html:21 #: ckan/templates/user/dashboard_organizations.html:12 msgid "My Organizations" -msgstr "" +msgstr "My Organisations" #: ckan/templates/user/dashboard.html:22 #: ckan/templates/user/dashboard_groups.html:12 msgid "My Groups" -msgstr "" +msgstr "My Groups" #: ckan/templates/user/dashboard.html:39 msgid "Activity from items that I'm following" -msgstr "" +msgstr "Activity from items that I'm following" #: ckan/templates/user/dashboard_datasets.html:17 #: ckan/templates/user/read.html:14 @@ -4222,11 +4009,11 @@ msgstr "Create one now?" #: ckan/templates/user/dashboard_groups.html:20 msgid "You are not a member of any groups." -msgstr "" +msgstr "You are not a member of any groups." #: ckan/templates/user/dashboard_organizations.html:20 msgid "You are not a member of any organizations." -msgstr "" +msgstr "You are not a member of any organisations." #: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 @@ -4246,40 +4033,31 @@ msgstr " Your profile lets other CKAN users know about who you are and what you #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Username" +msgstr "Change details" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Full name" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "eg. Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "eg. joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "A little information about yourself" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Subscribe to notification emails" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" -msgstr "" +msgstr "Change password" #: ckan/templates/user/edit_user_form.html:29 #: ckan/templates/user/logout_first.html:12 @@ -4295,15 +4073,15 @@ msgstr "Confirm Password" #: ckan/templates/user/edit_user_form.html:37 msgid "Are you sure you want to delete this User?" -msgstr "" +msgstr "Are you sure you want to delete this User?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "Are you sure you want to regenerate the API key?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Regenerate API Key" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" @@ -4334,7 +4112,7 @@ msgstr "Create an Account" #: ckan/templates/user/login.html:42 msgid "Forgotten your password?" -msgstr "" +msgstr "Forgotten your password?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." @@ -4395,7 +4173,7 @@ msgstr "Create datasets, groups and other exciting things" #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "username" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" @@ -4457,11 +4235,11 @@ msgstr "API Key" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Password reset" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Request reset" #: ckan/templates/user/request_reset.html:34 msgid "" @@ -4492,47 +4270,55 @@ msgstr "Search Users" #: ckanext/datapusher/helpers.py:19 msgid "Complete" -msgstr "" +msgstr "Complete" #: ckanext/datapusher/helpers.py:20 msgid "Pending" -msgstr "" +msgstr "Pending" #: ckanext/datapusher/helpers.py:21 msgid "Submitting" -msgstr "" +msgstr "Submitting" #: ckanext/datapusher/helpers.py:27 msgid "Not Uploaded Yet" -msgstr "" +msgstr "Not Uploaded Yet" #: ckanext/datastore/controller.py:31 msgid "DataStore resource not found" -msgstr "" +msgstr "DataStore resource not found" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "The data was invalid (for example: a numeric value is out of range or was inserted into a text field)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Resource \"{0}\" was not found." #: ckanext/datastore/logic/auth.py:16 msgid "User {0} not authorized to update resource {1}" -msgstr "User {0} not authorized to update resource {1}" +msgstr "User {0} not authorised to update resource {1}" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datasets per page" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Test conf" #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "Custom Field Ascending" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "Custom Field Descending" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 @@ -4550,7 +4336,11 @@ msgstr "Country Code" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" -msgstr "" +msgstr "custom resource text" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "This is an untranslated string" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 @@ -4559,134 +4349,93 @@ msgstr "This group has no description" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "CKAN's data previewing tool has many powerful features" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "Image url" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +msgstr "eg. http://example.com/image.jpg (if blank uses resource url)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" -msgstr "" +msgstr "Data Explorer" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "Table" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Graph" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" +msgstr "Map" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "This compiled version of SlickGrid has been obtained with the Google Closure\nCompiler, using the following command:\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nThere are two other files required for the SlickGrid view to work properly:\n\n * jquery-ui-1.8.16.custom.min.js \n * jquery.event.drag-2.0.min.js\n\nThese are included in the Recline source, but have not been included in the\nbuilt file to make easier to handle compatibility problems.\n\nPlease check SlickGrid license in the included MIT-LICENSE.txt file.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "error loading view" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "Row offset" -msgstr "" +msgstr "Row offset" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "eg: 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Number of rows" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "eg: 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Graph type" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Group (Axis 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Series (Axis 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "Field type" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" -msgstr "" +msgstr "Latitude field" #: ckanext/reclineview/theme/templates/recline_map_form.html:8 msgid "Longitude field" -msgstr "" +msgstr "Longitude field" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "GeoJSON field" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" -msgstr "" +msgstr "Auto zoom to features" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "Cluster markers" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Total number of Datasets" @@ -4714,33 +4463,27 @@ msgstr "New datasets" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Top Rated Datasets" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Average rating" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Number of ratings" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "No ratings" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Most Edited Datasets" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Number of edits" @@ -4750,12 +4493,10 @@ msgstr "No edited datasets" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Largest Groups" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Number of datasets" @@ -4765,7 +4506,6 @@ msgstr "No groups" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Top Tags" @@ -4780,8 +4520,8 @@ msgstr "Number of Datasets" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" +msgstr "Users Creating Most Datasets" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4791,49 +4531,23 @@ msgstr "Statistics Menu" msgid "Total Number of Datasets" msgstr "Total Number of Datasets" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistics" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Revisions to Datasets per week" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Users owning most datasets" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Page last updated:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Leaderboard - Stats" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Dataset Leaderboard" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Text" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Choose a dataset attribute and find out which categories in that area have the most datasets. E.g. tags, groups, license, res_format, country." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "An error occurred: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Website" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "Web Page url" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "eg. http://example.com (if blank uses resource url)" diff --git a/ckan/i18n/en_CA/LC_MESSAGES/ckan.mo b/ckan/i18n/en_CA/LC_MESSAGES/ckan.mo deleted file mode 100644 index 7b31e62042b..00000000000 Binary files a/ckan/i18n/en_CA/LC_MESSAGES/ckan.mo and /dev/null differ diff --git a/ckan/i18n/en_CA/LC_MESSAGES/ckan.po b/ckan/i18n/en_CA/LC_MESSAGES/ckan.po deleted file mode 100644 index 4b3457914d3..00000000000 --- a/ckan/i18n/en_CA/LC_MESSAGES/ckan.po +++ /dev/null @@ -1,4837 +0,0 @@ -# Translations template for ckan. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the ckan project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: CKAN\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: English (Canada) (http://www.transifex.com/projects/p/ckan/language/en_CA/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: en_CA\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ckan/new_authz.py:178 -#, python-format -msgid "Authorization function not found: %s" -msgstr "" - -#: ckan/new_authz.py:190 -msgid "Admin" -msgstr "" - -#: ckan/new_authz.py:194 -msgid "Editor" -msgstr "" - -#: ckan/new_authz.py:198 -msgid "Member" -msgstr "" - -#: ckan/controllers/admin.py:27 -msgid "Need to be system administrator to administer" -msgstr "" - -#: ckan/controllers/admin.py:43 -msgid "Site Title" -msgstr "" - -#: ckan/controllers/admin.py:44 -msgid "Style" -msgstr "" - -#: ckan/controllers/admin.py:45 -msgid "Site Tag Line" -msgstr "" - -#: ckan/controllers/admin.py:46 -msgid "Site Tag Logo" -msgstr "" - -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 -#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 -#: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 -#: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 -#: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 -msgid "About" -msgstr "" - -#: ckan/controllers/admin.py:47 -msgid "About page text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Intro Text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Text on home page" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Custom CSS" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Customisable css inserted into the page header" -msgstr "" - -#: ckan/controllers/admin.py:50 -msgid "Homepage" -msgstr "" - -#: ckan/controllers/admin.py:131 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" -msgstr "" - -#: ckan/controllers/admin.py:153 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "" - -#: ckan/controllers/admin.py:155 -msgid "Purge complete" -msgstr "" - -#: ckan/controllers/admin.py:157 -msgid "Action not implemented." -msgstr "" - -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 -#: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 -msgid "Not authorized to see this page" -msgstr "" - -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 -msgid "Access denied" -msgstr "" - -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 -#: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 -msgid "Not found" -msgstr "" - -#: ckan/controllers/api.py:130 -msgid "Bad request" -msgstr "" - -#: ckan/controllers/api.py:164 -#, python-format -msgid "Action name not known: %s" -msgstr "" - -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 -#, python-format -msgid "JSON Error: %s" -msgstr "" - -#: ckan/controllers/api.py:190 -#, python-format -msgid "Bad request data: %s" -msgstr "" - -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:318 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:357 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:389 -msgid "Unable to add package to search index" -msgstr "" - -#: ckan/controllers/api.py:419 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:442 -msgid "Unable to update search index" -msgstr "" - -#: ckan/controllers/api.py:466 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:489 -msgid "No revision specified" -msgstr "" - -#: ckan/controllers/api.py:493 -#, python-format -msgid "There is no revision with id: %s" -msgstr "" - -#: ckan/controllers/api.py:503 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" - -#: ckan/controllers/api.py:513 -#, python-format -msgid "Could not read parameters: %r" -msgstr "" - -#: ckan/controllers/api.py:574 -#, python-format -msgid "Bad search option: %s" -msgstr "" - -#: ckan/controllers/api.py:577 -#, python-format -msgid "Unknown register: %s" -msgstr "" - -#: ckan/controllers/api.py:586 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "" - -#: ckan/controllers/api.py:596 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" - -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 -msgid "Group not found" -msgstr "" - -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 -msgid "Organization not found" -msgstr "" - -#: ckan/controllers/group.py:172 -msgid "Incorrect group type" -msgstr "" - -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 -#, python-format -msgid "Unauthorized to read group %s" -msgstr "" - -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "" - -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 -#: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 -#: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 -#: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 -#: ckan/templates/group/read_base.html:6 -#: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "" - -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "" - -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 -msgid "Formats" -msgstr "" - -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 -msgid "Licenses" -msgstr "" - -#: ckan/controllers/group.py:429 -msgid "Not authorized to perform bulk update" -msgstr "" - -#: ckan/controllers/group.py:446 -msgid "Unauthorized to create a group" -msgstr "" - -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "" - -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 -msgid "Integrity Error" -msgstr "" - -#: ckan/controllers/group.py:586 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "" - -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "" - -#: ckan/controllers/group.py:609 -msgid "Organization has been deleted." -msgstr "" - -#: ckan/controllers/group.py:611 -msgid "Group has been deleted." -msgstr "" - -#: ckan/controllers/group.py:677 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "" - -#: ckan/controllers/group.py:694 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "" - -#: ckan/controllers/group.py:700 -msgid "Group member has been deleted." -msgstr "" - -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 -msgid "Select two revisions before doing the comparison." -msgstr "" - -#: ckan/controllers/group.py:741 -#, python-format -msgid "User %r not authorized to edit %r" -msgstr "" - -#: ckan/controllers/group.py:748 -msgid "CKAN Group Revision History" -msgstr "" - -#: ckan/controllers/group.py:751 -msgid "Recent changes to CKAN Group: " -msgstr "" - -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 -msgid "Log message: " -msgstr "" - -#: ckan/controllers/group.py:798 -msgid "Unauthorized to read group {group_id}" -msgstr "" - -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 -msgid "You are now following {0}" -msgstr "" - -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 -msgid "You are no longer following {0}" -msgstr "" - -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "" - -#: ckan/controllers/home.py:37 -msgid "This site is currently off-line. Database is not initialised." -msgstr "" - -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" - -#: ckan/controllers/home.py:105 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "" - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 -msgid "Dataset not found" -msgstr "" - -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "" - -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 -#, python-format -msgid "Invalid revision format: %r" -msgstr "" - -#: ckan/controllers/package.py:427 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" - -#: ckan/controllers/package.py:472 -msgid "CKAN Dataset Revision History" -msgstr "" - -#: ckan/controllers/package.py:475 -msgid "Recent changes to CKAN Dataset: " -msgstr "" - -#: ckan/controllers/package.py:532 -msgid "Unauthorized to create a package" -msgstr "" - -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 -msgid "Unauthorized to edit this resource" -msgstr "" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 -msgid "Resource not found" -msgstr "" - -#: ckan/controllers/package.py:682 -msgid "Unauthorized to update dataset" -msgstr "" - -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 -msgid "The dataset {id} could not be found." -msgstr "" - -#: ckan/controllers/package.py:688 -msgid "You must add at least one data resource" -msgstr "" - -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 -msgid "Error" -msgstr "" - -#: ckan/controllers/package.py:714 -msgid "Unauthorized to create a resource" -msgstr "" - -#: ckan/controllers/package.py:750 -msgid "Unauthorized to create a resource for this package" -msgstr "" - -#: ckan/controllers/package.py:973 -msgid "Unable to add package to search index." -msgstr "" - -#: ckan/controllers/package.py:1020 -msgid "Unable to update search index." -msgstr "" - -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "" - -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1088 -msgid "Resource has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1093 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "" - -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "" - -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 -msgid "Resource view not found" -msgstr "" - -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "" - -#: ckan/controllers/package.py:1193 -msgid "Resource data not found" -msgstr "" - -#: ckan/controllers/package.py:1201 -msgid "No download is available" -msgstr "" - -#: ckan/controllers/package.py:1523 -msgid "Unauthorized to edit resource" -msgstr "" - -#: ckan/controllers/package.py:1541 -msgid "View not found" -msgstr "" - -#: ckan/controllers/package.py:1543 -#, python-format -msgid "Unauthorized to view View %s" -msgstr "" - -#: ckan/controllers/package.py:1549 -msgid "View Type Not found" -msgstr "" - -#: ckan/controllers/package.py:1609 -msgid "Bad resource view data" -msgstr "" - -#: ckan/controllers/package.py:1618 -#, python-format -msgid "Unauthorized to read resource view %s" -msgstr "" - -#: ckan/controllers/package.py:1621 -msgid "Resource view not supplied" -msgstr "" - -#: ckan/controllers/package.py:1650 -msgid "No preview has been defined." -msgstr "" - -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - -#: ckan/controllers/revision.py:42 -msgid "CKAN Repository Revision History" -msgstr "" - -#: ckan/controllers/revision.py:44 -msgid "Recent changes to the CKAN repository." -msgstr "" - -#: ckan/controllers/revision.py:108 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "" - -#: ckan/controllers/revision.py:188 -msgid "Revision updated" -msgstr "" - -#: ckan/controllers/tag.py:56 -msgid "Other" -msgstr "" - -#: ckan/controllers/tag.py:70 -msgid "Tag not found" -msgstr "" - -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 -msgid "User not found" -msgstr "" - -#: ckan/controllers/user.py:149 -msgid "Unauthorized to register as a user." -msgstr "" - -#: ckan/controllers/user.py:166 -msgid "Unauthorized to create a user" -msgstr "" - -#: ckan/controllers/user.py:197 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" - -#: ckan/controllers/user.py:211 ckan/controllers/user.py:270 -msgid "No user specified" -msgstr "" - -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "" - -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 -msgid "Profile updated" -msgstr "" - -#: ckan/controllers/user.py:232 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "" - -#: ckan/controllers/user.py:238 -msgid "Bad Captcha. Please try again." -msgstr "" - -#: ckan/controllers/user.py:255 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "" - -#: ckan/controllers/user.py:276 -msgid "Unauthorized to edit a user." -msgstr "" - -#: ckan/controllers/user.py:302 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "" - -#: ckan/controllers/user.py:383 -msgid "Login failed. Bad username or password." -msgstr "" - -#: ckan/controllers/user.py:417 -msgid "Unauthorized to request reset password." -msgstr "" - -#: ckan/controllers/user.py:446 -#, python-format -msgid "\"%s\" matched several users" -msgstr "" - -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 -#, python-format -msgid "No such user: %s" -msgstr "" - -#: ckan/controllers/user.py:455 -msgid "Please check your inbox for a reset code." -msgstr "" - -#: ckan/controllers/user.py:459 -#, python-format -msgid "Could not send reset link: %s" -msgstr "" - -#: ckan/controllers/user.py:474 -msgid "Unauthorized to reset password." -msgstr "" - -#: ckan/controllers/user.py:486 -msgid "Invalid reset key. Please try again." -msgstr "" - -#: ckan/controllers/user.py:498 -msgid "Your password has been reset." -msgstr "" - -#: ckan/controllers/user.py:519 -msgid "Your password must be 4 characters or longer." -msgstr "" - -#: ckan/controllers/user.py:522 -msgid "The passwords you entered do not match." -msgstr "" - -#: ckan/controllers/user.py:525 -msgid "You must provide a password" -msgstr "" - -#: ckan/controllers/user.py:589 -msgid "Follow item not found" -msgstr "" - -#: ckan/controllers/user.py:593 -msgid "{0} not found" -msgstr "" - -#: ckan/controllers/user.py:595 -msgid "Unauthorized to read {0} {1}" -msgstr "" - -#: ckan/controllers/user.py:610 -msgid "Everything" -msgstr "" - -#: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 -msgid "Missing Value" -msgstr "" - -#: ckan/controllers/util.py:21 -msgid "Redirecting to external site is not allowed." -msgstr "" - -#: ckan/lib/activity_streams.py:64 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:67 -msgid "{actor} updated the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:70 -msgid "{actor} updated the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:73 -msgid "{actor} updated the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:76 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:79 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:82 -msgid "{actor} updated their profile" -msgstr "" - -#: ckan/lib/activity_streams.py:86 -msgid "" -"{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:89 -msgid "{actor} updated the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:92 -msgid "{actor} deleted the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:95 -msgid "{actor} deleted the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:98 -msgid "{actor} deleted the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:101 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:104 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:108 -msgid "{actor} created the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:111 -msgid "{actor} created the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:114 -msgid "{actor} created the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:117 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:120 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:123 -msgid "{actor} signed up" -msgstr "" - -#: ckan/lib/activity_streams.py:126 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:129 -msgid "{actor} deleted the related item {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:132 -msgid "{actor} started following {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:135 -msgid "{actor} started following {user}" -msgstr "" - -#: ckan/lib/activity_streams.py:138 -msgid "{actor} started following {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:142 -msgid "" -"{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:145 -msgid "{actor} added the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "" - -#: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:17 -msgid "January" -msgstr "" - -#: ckan/lib/formatters.py:21 -msgid "February" -msgstr "" - -#: ckan/lib/formatters.py:25 -msgid "March" -msgstr "" - -#: ckan/lib/formatters.py:29 -msgid "April" -msgstr "" - -#: ckan/lib/formatters.py:33 -msgid "May" -msgstr "" - -#: ckan/lib/formatters.py:37 -msgid "June" -msgstr "" - -#: ckan/lib/formatters.py:41 -msgid "July" -msgstr "" - -#: ckan/lib/formatters.py:45 -msgid "August" -msgstr "" - -#: ckan/lib/formatters.py:49 -msgid "September" -msgstr "" - -#: ckan/lib/formatters.py:53 -msgid "October" -msgstr "" - -#: ckan/lib/formatters.py:57 -msgid "November" -msgstr "" - -#: ckan/lib/formatters.py:61 -msgid "December" -msgstr "" - -#: ckan/lib/formatters.py:109 -msgid "Just now" -msgstr "" - -#: ckan/lib/formatters.py:111 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:114 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:120 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:123 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:125 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" - -#: ckan/lib/formatters.py:142 -msgid "{month} {day}, {year}" -msgstr "" - -#: ckan/lib/formatters.py:158 -msgid "{bytes} bytes" -msgstr "" - -#: ckan/lib/formatters.py:160 -msgid "{kibibytes} KiB" -msgstr "" - -#: ckan/lib/formatters.py:162 -msgid "{mebibytes} MiB" -msgstr "" - -#: ckan/lib/formatters.py:164 -msgid "{gibibytes} GiB" -msgstr "" - -#: ckan/lib/formatters.py:166 -msgid "{tebibytes} TiB" -msgstr "" - -#: ckan/lib/formatters.py:178 -msgid "{n}" -msgstr "" - -#: ckan/lib/formatters.py:180 -msgid "{k}k" -msgstr "" - -#: ckan/lib/formatters.py:182 -msgid "{m}M" -msgstr "" - -#: ckan/lib/formatters.py:184 -msgid "{g}G" -msgstr "" - -#: ckan/lib/formatters.py:186 -msgid "{t}T" -msgstr "" - -#: ckan/lib/formatters.py:188 -msgid "{p}P" -msgstr "" - -#: ckan/lib/formatters.py:190 -msgid "{e}E" -msgstr "" - -#: ckan/lib/formatters.py:192 -msgid "{z}Z" -msgstr "" - -#: ckan/lib/formatters.py:194 -msgid "{y}Y" -msgstr "" - -#: ckan/lib/helpers.py:858 -msgid "Update your avatar at gravatar.com" -msgstr "" - -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 -msgid "Unknown" -msgstr "" - -#: ckan/lib/helpers.py:1117 -msgid "Unnamed resource" -msgstr "" - -#: ckan/lib/helpers.py:1164 -msgid "Created new dataset." -msgstr "" - -#: ckan/lib/helpers.py:1166 -msgid "Edited resources." -msgstr "" - -#: ckan/lib/helpers.py:1168 -msgid "Edited settings." -msgstr "" - -#: ckan/lib/helpers.py:1431 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/helpers.py:1433 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/mailer.py:25 -#, python-format -msgid "Dear %s," -msgstr "" - -#: ckan/lib/mailer.py:38 -#, python-format -msgid "%s <%s>" -msgstr "" - -#: ckan/lib/mailer.py:99 -msgid "No recipient email address available!" -msgstr "" - -#: ckan/lib/mailer.py:104 -msgid "" -"You have requested your password on {site_title} to be reset.\n" -"\n" -"Please click the following link to confirm this request:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:119 -msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" -"\n" -"To accept this invite, please reset your password at:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "" - -#: ckan/lib/mailer.py:151 -msgid "Invite for {site_title}" -msgstr "" - -#: ckan/lib/navl/dictization_functions.py:11 -#: ckan/lib/navl/dictization_functions.py:13 -#: ckan/lib/navl/dictization_functions.py:15 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:19 -#: ckan/lib/navl/dictization_functions.py:21 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 -#: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 -msgid "Missing value" -msgstr "" - -#: ckan/lib/navl/validators.py:64 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "" - -#: ckan/lib/navl/validators.py:116 -msgid "Please enter an integer value" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -msgid "Package resource(s) invalid" -msgstr "" - -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 -msgid "Extras" -msgstr "" - -#: ckan/logic/converters.py:72 ckan/logic/converters.py:87 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" - -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "" - -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Dataset" -msgstr "" - -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Group" -msgstr "" - -#: ckan/logic/converters.py:178 -msgid "Could not parse as valid JSON" -msgstr "" - -#: ckan/logic/validators.py:30 ckan/logic/validators.py:39 -msgid "A organization must be supplied" -msgstr "" - -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 -msgid "Organization does not exist" -msgstr "" - -#: ckan/logic/validators.py:53 -msgid "You cannot add a dataset to this organization" -msgstr "" - -#: ckan/logic/validators.py:93 -msgid "Invalid integer" -msgstr "" - -#: ckan/logic/validators.py:98 -msgid "Must be a natural number" -msgstr "" - -#: ckan/logic/validators.py:104 -msgid "Must be a postive integer" -msgstr "" - -#: ckan/logic/validators.py:122 -msgid "Date format incorrect" -msgstr "" - -#: ckan/logic/validators.py:131 -msgid "No links are allowed in the log_message." -msgstr "" - -#: ckan/logic/validators.py:151 -msgid "Dataset id already exists" -msgstr "" - -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 -msgid "Resource" -msgstr "" - -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 -#: ckan/templates/snippets/related.html:2 -msgid "Related" -msgstr "" - -#: ckan/logic/validators.py:260 -msgid "That group name or ID does not exist." -msgstr "" - -#: ckan/logic/validators.py:274 -msgid "Activity type" -msgstr "" - -#: ckan/logic/validators.py:349 -msgid "Names must be strings" -msgstr "" - -#: ckan/logic/validators.py:353 -msgid "That name cannot be used" -msgstr "" - -#: ckan/logic/validators.py:356 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:361 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" - -#: ckan/logic/validators.py:379 -msgid "That URL is already in use." -msgstr "" - -#: ckan/logic/validators.py:384 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:388 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "" - -#: ckan/logic/validators.py:394 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:412 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "" - -#: ckan/logic/validators.py:428 -msgid "Group name already exists in database" -msgstr "" - -#: ckan/logic/validators.py:434 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:438 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" - -#: ckan/logic/validators.py:446 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" - -#: ckan/logic/validators.py:454 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "" - -#: ckan/logic/validators.py:563 -msgid "User names must be strings" -msgstr "" - -#: ckan/logic/validators.py:579 -msgid "That login name is not available." -msgstr "" - -#: ckan/logic/validators.py:588 -msgid "Please enter both passwords" -msgstr "" - -#: ckan/logic/validators.py:596 -msgid "Passwords must be strings" -msgstr "" - -#: ckan/logic/validators.py:600 -msgid "Your password must be 4 characters or longer" -msgstr "" - -#: ckan/logic/validators.py:608 -msgid "The passwords you entered do not match" -msgstr "" - -#: ckan/logic/validators.py:624 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" - -#: ckan/logic/validators.py:633 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:641 -msgid "That vocabulary name is already in use." -msgstr "" - -#: ckan/logic/validators.py:647 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" - -#: ckan/logic/validators.py:656 -msgid "Tag vocabulary was not found." -msgstr "" - -#: ckan/logic/validators.py:669 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:675 -msgid "No tag name" -msgstr "" - -#: ckan/logic/validators.py:688 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:711 -msgid "Please provide a valid URL" -msgstr "" - -#: ckan/logic/validators.py:725 -msgid "role does not exist." -msgstr "" - -#: ckan/logic/validators.py:754 -msgid "Datasets with no organization can't be private." -msgstr "" - -#: ckan/logic/validators.py:760 -msgid "Not a list" -msgstr "" - -#: ckan/logic/validators.py:763 -msgid "Not a string" -msgstr "" - -#: ckan/logic/validators.py:795 -msgid "This parent would create a loop in the hierarchy" -msgstr "" - -#: ckan/logic/validators.py:805 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" - -#: ckan/logic/validators.py:816 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" - -#: ckan/logic/validators.py:819 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" - -#: ckan/logic/validators.py:833 -msgid "There is a schema field with the same name" -msgstr "" - -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 -#, python-format -msgid "REST API: Create object %s" -msgstr "" - -#: ckan/logic/action/create.py:517 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/create.py:558 -#, python-format -msgid "REST API: Create member object %s" -msgstr "" - -#: ckan/logic/action/create.py:772 -msgid "Trying to create an organization as a group" -msgstr "" - -#: ckan/logic/action/create.py:859 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" - -#: ckan/logic/action/create.py:862 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "" - -#: ckan/logic/action/create.py:867 -msgid "Rating must be an integer value." -msgstr "" - -#: ckan/logic/action/create.py:871 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "" - -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 -msgid "You must be logged in to follow users" -msgstr "" - -#: ckan/logic/action/create.py:1236 -msgid "You cannot follow yourself" -msgstr "" - -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 -msgid "You are already following {0}" -msgstr "" - -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 -msgid "You must be logged in to follow a dataset." -msgstr "" - -#: ckan/logic/action/create.py:1335 -msgid "User {username} does not exist." -msgstr "" - -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 -msgid "You must be logged in to follow a group." -msgstr "" - -#: ckan/logic/action/delete.py:68 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "" - -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 -#, python-format -msgid "REST API: Delete %s" -msgstr "" - -#: ckan/logic/action/delete.py:270 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "" - -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 -msgid "id not in data" -msgstr "" - -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:501 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 -msgid "You must be logged in to unfollow something." -msgstr "" - -#: ckan/logic/action/delete.py:542 -msgid "You are not following {0}." -msgstr "" - -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 -msgid "Resource was not found." -msgstr "" - -#: ckan/logic/action/get.py:1851 -msgid "Do not specify if using \"query\" parameter" -msgstr "" - -#: ckan/logic/action/get.py:1860 -msgid "Must be : pair(s)" -msgstr "" - -#: ckan/logic/action/get.py:1892 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" - -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 -msgid "Item was not found." -msgstr "" - -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 -msgid "Package was not found." -msgstr "" - -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 -#, python-format -msgid "REST API: Update object %s" -msgstr "" - -#: ckan/logic/action/update.py:437 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/update.py:789 -msgid "TaskStatus was not found." -msgstr "" - -#: ckan/logic/action/update.py:1180 -msgid "Organization was not found." -msgstr "" - -#: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 -#, python-format -msgid "User %s not authorized to create packages" -msgstr "" - -#: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "" - -#: ckan/logic/auth/create.py:36 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" - -#: ckan/logic/auth/create.py:58 -msgid "You must be a sysadmin to create a featured related item" -msgstr "" - -#: ckan/logic/auth/create.py:62 -msgid "You must be logged in to add a related item" -msgstr "" - -#: ckan/logic/auth/create.py:77 -msgid "No dataset id provided, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 -#: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 -msgid "No package found for this resource, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:92 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" - -#: ckan/logic/auth/create.py:115 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "" - -#: ckan/logic/auth/create.py:126 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "" - -#: ckan/logic/auth/create.py:136 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "" - -#: ckan/logic/auth/create.py:152 -msgid "User {user} not authorized to create users via the API" -msgstr "" - -#: ckan/logic/auth/create.py:155 -msgid "Not authorized to create users" -msgstr "" - -#: ckan/logic/auth/create.py:198 -msgid "Group was not found." -msgstr "" - -#: ckan/logic/auth/create.py:218 -msgid "Valid API key needed to create a package" -msgstr "" - -#: ckan/logic/auth/create.py:226 -msgid "Valid API key needed to create a group" -msgstr "" - -#: ckan/logic/auth/create.py:246 -#, python-format -msgid "User %s not authorized to add members" -msgstr "" - -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:34 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "" - -#: ckan/logic/auth/delete.py:50 -msgid "Resource view not found, cannot check auth." -msgstr "" - -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 -msgid "Only the owner can delete a related item" -msgstr "" - -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "" - -#: ckan/logic/auth/delete.py:95 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "" - -#: ckan/logic/auth/delete.py:99 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:116 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "" - -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "" - -#: ckan/logic/auth/delete.py:133 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "" - -#: ckan/logic/auth/get.py:97 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "" - -#: ckan/logic/auth/get.py:119 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" - -#: ckan/logic/auth/get.py:141 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "" - -#: ckan/logic/auth/get.py:166 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" - -#: ckan/logic/auth/get.py:234 -msgid "You must be logged in to access your dashboard." -msgstr "" - -#: ckan/logic/auth/update.py:37 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "" - -#: ckan/logic/auth/update.py:69 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "" - -#: ckan/logic/auth/update.py:98 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "" - -#: ckan/logic/auth/update.py:126 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "" - -#: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 -msgid "Only the owner can update a related item" -msgstr "" - -#: ckan/logic/auth/update.py:148 -msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" - -#: ckan/logic/auth/update.py:165 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:182 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:209 -msgid "Have to be logged in to edit user" -msgstr "" - -#: ckan/logic/auth/update.py:217 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "" - -#: ckan/logic/auth/update.py:228 -msgid "User {0} not authorized to update user {1}" -msgstr "" - -#: ckan/logic/auth/update.py:236 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "" - -#: ckan/logic/auth/update.py:245 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "" - -#: ckan/logic/auth/update.py:259 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" - -#: ckan/logic/auth/update.py:281 -msgid "Valid API key needed to edit a package" -msgstr "" - -#: ckan/logic/auth/update.py:291 -msgid "Valid API key needed to edit a group" -msgstr "" - -#: ckan/model/license.py:177 -msgid "License not specified" -msgstr "" - -#: ckan/model/license.py:187 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" - -#: ckan/model/license.py:197 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" - -#: ckan/model/license.py:207 -msgid "Open Data Commons Attribution License" -msgstr "" - -#: ckan/model/license.py:218 -msgid "Creative Commons CCZero" -msgstr "" - -#: ckan/model/license.py:227 -msgid "Creative Commons Attribution" -msgstr "" - -#: ckan/model/license.py:237 -msgid "Creative Commons Attribution Share-Alike" -msgstr "" - -#: ckan/model/license.py:246 -msgid "GNU Free Documentation License" -msgstr "" - -#: ckan/model/license.py:256 -msgid "Other (Open)" -msgstr "" - -#: ckan/model/license.py:266 -msgid "Other (Public Domain)" -msgstr "" - -#: ckan/model/license.py:276 -msgid "Other (Attribution)" -msgstr "" - -#: ckan/model/license.py:288 -msgid "UK Open Government Licence (OGL)" -msgstr "" - -#: ckan/model/license.py:296 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "" - -#: ckan/model/license.py:304 -msgid "Other (Non-Commercial)" -msgstr "" - -#: ckan/model/license.py:312 -msgid "Other (Not Open)" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "depends on %s" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "is a dependency of %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "derives from %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "has derivation %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "links to %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is linked from %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a child of %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a parent of %s" -msgstr "" - -#: ckan/model/package_relationship.py:59 -#, python-format -msgid "has sibling %s" -msgstr "" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:12 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "" - -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:14 -#: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 -msgid "Cancel" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:15 -msgid "Upload" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Link" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:17 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 -msgid "Remove" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 -msgid "Image" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:19 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:20 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:25 -msgid "show more" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:26 -msgid "show less" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 -msgid "URL" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 -msgid "Edit" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "" - -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "" - -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "" - -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "" - -#: ckan/templates/footer.html:16 -msgid "Open Knowledge Foundation" -msgstr "" - -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" - -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "" - -#: ckan/templates/header.html:18 -msgid "View profile" -msgstr "" - -#: ckan/templates/header.html:25 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "" - -#: ckan/templates/header.html:40 -msgid "Log out" -msgstr "" - -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "" - -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "" - -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "" - -#: ckan/templates/header.html:112 -msgid "Search Datasets" -msgstr "" - -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 -#: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 -msgid "Search" -msgstr "" - -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "" - -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "" - -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "" - -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "" - -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "" - -#: ckan/templates/admin/config.html:11 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "" - -#: ckan/templates/admin/config.html:12 -msgid "Reset" -msgstr "" - -#: ckan/templates/admin/config.html:13 -msgid "Update Config" -msgstr "" - -#: ckan/templates/admin/config.html:22 -msgid "CKAN config options" -msgstr "" - -#: ckan/templates/admin/config.html:29 -#, python-format -msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " -"Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" -"

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" -msgstr "" - -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "" - -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "" - -#: ckan/templates/admin/index.html:20 -#, python-format -msgid "" -"

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" -msgstr "" - -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" - -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:12 -#, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "" - -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "" - -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "" - -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "" - -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "" - -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "" - -#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 -#: ckan/templates/organization/admins.html:3 -#: ckan/templates/organization/admins.html:6 -msgid "Administrators" -msgstr "" - -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "" - -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 -msgid "Confirm Delete" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "" - -#: ckan/templates/group/confirm_delete_member.html:11 -#: ckan/templates/organization/confirm_delete_member.html:11 -msgid "Are you sure you want to delete member - {name}?" -msgstr "" - -#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:11 -#: ckan/templates/group/read_base.html:12 -#: ckan/templates/organization/edit_base.html:11 -#: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "" - -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "" - -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 -#: ckan/templates/organization/edit_base.html:24 -#: ckan/templates/organization/members.html:3 -msgid "Members" -msgstr "" - -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "" - -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "" - -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "" - -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "" - -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -msgid "Edit Member" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "" - -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "" - -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "" - -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "" - -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" - -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "" - -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "" - -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:38 -msgid "Delete" -msgstr "" - -#: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 -msgid "Save" -msgstr "" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "" - -#: ckan/templates/group/member_new.html:81 -msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " -"datasets from groups

" -msgstr "" - -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "" - -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 -msgid "Description" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:8 -msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " -msgstr "" - -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "" - -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "" - -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "" - -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "" - -#: ckan/templates/home/snippets/about_text.html:1 -msgid "" -"

CKAN is the world’s leading open-source data portal platform.

" -"

CKAN is a complete out-of-the-box software solution that makes data " -"accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " -"government portals, as well as city and municipal sites in the US, UK, " -"Argentina, Finland and elsewhere.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features " -"overview: http://ckan.org/features/

" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:10 -msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "" - -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" - -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" - -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "dataset" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "datasets" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organization" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organizations" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "group" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "" - -#: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 -msgid "The form contains invalid entries:" -msgstr "" - -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "" - -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "" - -#: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 -msgid "Image URL" -msgstr "" - -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "" - -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "" - -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "" - -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" -msgstr "" - -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "" - -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "" - -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "" - -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "" - -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

Admin: Can add/edit and delete datasets, as well as " -"manage organization members.

Editor: Can add and " -"edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" -msgstr "" - -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "" - -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "" - -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:7 -msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" -msgstr "" - -#: ckan/templates/organization/snippets/helper.html:8 -msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "" - -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "" - -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "" - -#: ckan/templates/package/base_form_page.html:25 -msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " -msgstr "" - -#: ckan/templates/package/confirm_delete.html:11 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" - -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "" - -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "" - -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "" - -#: ckan/templates/package/edit_view.html:3 -#: ckan/templates/package/edit_view.html:4 -#: ckan/templates/package/edit_view.html:8 -#: ckan/templates/package/edit_view.html:12 -msgid "Edit view" -msgstr "" - -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "" - -#: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 -msgid "Update" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "" - -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "" - -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "" - -#: ckan/templates/package/new_view.html:3 -#: ckan/templates/package/new_view.html:4 -#: ckan/templates/package/new_view.html:8 -#: ckan/templates/package/new_view.html:12 -msgid "Add view" -msgstr "" - -#: ckan/templates/package/new_view.html:19 -msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " -msgstr "" - -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "" - -#: ckan/templates/package/read_base.html:38 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" - -#: ckan/templates/package/related_list.html:7 -msgid "Related Media for {dataset}" -msgstr "" - -#: ckan/templates/package/related_list.html:12 -msgid "No related items" -msgstr "" - -#: ckan/templates/package/related_list.html:17 -msgid "Add Related Item" -msgstr "" - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:45 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:49 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "" - -#: ckan/templates/package/resource_data.html:53 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:59 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:71 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:78 -msgid "End of log" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "" - -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "" - -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "" - -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "" - -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "" - -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" - -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" - -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" - -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" - -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "" - -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "" - -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "" - -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "" - -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 -msgid "Created" -msgstr "" - -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "" - -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "" - -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" - -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" - -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "" - -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

This dataset has no data, why not " -"add some?

" -msgstr "" - -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "" - -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "" - -#: ckan/templates/package/search.html:56 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" - -#: ckan/templates/package/search.html:60 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " -msgstr "" - -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:37 -#: ckan/templates/package/snippets/additional_info.html:42 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -msgid "Maintainer" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" - -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 -msgid "Title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:40 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:69 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:73 -msgid "No organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:88 -msgid "Visibility" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:91 -msgid "Public" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:110 -msgid "Active" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:28 -msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -#: ckan/templates/user/new_user_form.html:6 -msgid "Joe Bloggs" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -#: ckan/templates/user/new_user_form.html:7 -msgid "joe@example.com" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "" - -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "File" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:10 -msgid "Embed" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "" - -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "" - -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:30 -#: ckan/templates/package/snippets/stages.html:34 -#: ckan/templates/package/snippets/stages.html:36 -msgid "Add data" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "" - -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "" - -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "" - -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "" - -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "" - -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "" - -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "" - -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "" - -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "" - -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 -msgid "Home" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "" - -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "" - -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" - -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "" - -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "" - -#: ckan/templates/snippets/related.html:15 -msgid "" -"No apps, ideas, news stories or images have been related to this dataset " -"yet." -msgstr "" - -#: ckan/templates/snippets/related.html:18 -msgid "Add Item" -msgstr "" - -#: ckan/templates/snippets/search_form.html:16 -msgid "Submit" -msgstr "" - -#: ckan/templates/snippets/search_form.html:31 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "" - -#: ckan/templates/snippets/search_form.html:77 -msgid "

Please try another search.

" -msgstr "" - -#: ckan/templates/snippets/search_form.html:83 -msgid "" -"

There was an error while searching. Please try " -"again.

" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:15 -msgid "{number} dataset found for \"{query}\"" -msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:21 -msgid "{number} group found for \"{query}\"" -msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:27 -msgid "{number} organization found for \"{query}\"" -msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "" - -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 -#: ckan/templates/user/new_user_form.html:7 -#: ckan/templates/user/read_base.html:82 -msgid "Email" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "" - -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "" - -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "" - -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "" - -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "" - -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "" - -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "" - -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "" - -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "" - -#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 -#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 -#: ckan/templates/user/snippets/user_search.html:2 -msgid "Users" -msgstr "" - -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "" - -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" - -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "Full name" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "eg. Joe Bloggs" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:13 -msgid "eg. joe@example.com" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:15 -msgid "A little information about yourself" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:18 -msgid "Subscribe to notification emails" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:27 -msgid "Change password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:29 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:31 -msgid "Confirm Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:37 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:43 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:44 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:48 -msgid "Update Profile" -msgstr "" - -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "" - -#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 -#: ckan/templates/user/login.html:12 -#: ckan/templates/user/snippets/login_form.html:28 -msgid "Login" -msgstr "" - -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "" - -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "" - -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "" - -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "" - -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" - -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "" - -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "" - -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "" - -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "" - -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:19 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:20 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:27 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:31 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:652 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:16 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "Custom Text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" - -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" - -#: ckanext/reclineview/plugin.py:82 -msgid "Data Explorer" -msgstr "" - -#: ckanext/reclineview/plugin.py:106 -msgid "Table" -msgstr "" - -#: ckanext/reclineview/plugin.py:149 -msgid "Graph" -msgstr "" - -#: ckanext/reclineview/plugin.py:207 -msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 -msgid "Total number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 -msgid "Top Rated Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Average rating" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 -msgid "No ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 -msgid "Most Edited Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Number of edits" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 -msgid "Largest Groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Number of datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 -msgid "Top Tags" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "" - -#: ckanext/webpageview/plugin.py:24 -msgid "Website" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" diff --git a/ckan/i18n/en_GB/LC_MESSAGES/ckan.mo b/ckan/i18n/en_GB/LC_MESSAGES/ckan.mo index bb5bfec57fd..edc771f214f 100644 Binary files a/ckan/i18n/en_GB/LC_MESSAGES/ckan.mo and b/ckan/i18n/en_GB/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/en_GB/LC_MESSAGES/ckan.po b/ckan/i18n/en_GB/LC_MESSAGES/ckan.po index 24d997b021a..db21168f558 100644 --- a/ckan/i18n/en_GB/LC_MESSAGES/ckan.po +++ b/ckan/i18n/en_GB/LC_MESSAGES/ckan.po @@ -3,258 +3,261 @@ # This file is distributed under the same license as the ckan project. # # Translators: +# Adrià Mercader , 2015 # darwinp , 2013 +# dread , 2015 # Sean Hammond , 2013 +# Steven De Costa , 2015 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:23+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/ckan/language/en_GB/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-27 09:46+0000\n" +"Last-Translator: dread \n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/okfn/ckan/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" -msgstr "Authorization function not found: %s" +msgstr "Authorisation function not found: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Admin" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Editor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Member" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Need to be system administrator to administer" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Site Title" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Style" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Site Tag Line" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Site Tag Logo" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "About" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "About page text" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Intro Text" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Text on home page" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Custom CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Customisable css inserted into the page header" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" -msgstr "" +msgstr "Homepage" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Cannot purge package %s as associated revision %s includes non-deleted packages %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problem purging revision %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Purge complete" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Action not implemented." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" -msgstr "Not authorized to see this page" +msgstr "Not authorised to see this page" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Access denied" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Not found" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Bad request" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Action name not known: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON Error: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Bad request data: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Cannot list entity of this type: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Cannot read entity of this type: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Cannot create new entity of this type: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Unable to add package to search index" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Cannot update entity of this type: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Unable to update search index" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Cannot delete entity of this type: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "No revision specified" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "There is no revision with id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Could not read parameters: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Bad search option: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Unknown register: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" -msgstr "" +msgstr "Malformed qjson value: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Request params must be in form of a json encoded dictionary." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Group not found" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Organisation not found" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" -msgstr "" +msgstr "Incorrect group type" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" -msgstr "Unauthorized to read group %s" +msgstr "Unauthorised to read group %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -265,23 +268,23 @@ msgstr "Unauthorized to read group %s" msgid "Organizations" msgstr "Organisations" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Groups" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -289,394 +292,303 @@ msgstr "Groups" msgid "Tags" msgstr "Tags" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formats" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" -msgstr "" +msgstr "Licenses" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" -msgstr "" +msgstr "Not authorised to perform bulk update" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" -msgstr "Unauthorized to create a group" +msgstr "Unauthorised to create a group" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" -msgstr "User %r not authorized to edit %s" +msgstr "User %r not authorised to edit %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Integrity Error" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" -msgstr "User %r not authorized to edit %s authorizations" +msgstr "User %r not authorised to edit %s authorisations" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" -msgstr "Unauthorized to delete group %s" +msgstr "Unauthorised to delete group %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organisation has been deleted." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Group has been deleted." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s has been deleted." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" -msgstr "Unauthorized to add member to group %s" +msgstr "Unauthorised to add member to group %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" -msgstr "Unauthorized to delete group %s members" +msgstr "Unauthorised to delete group %s members" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Group member has been deleted." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Select two revisions before doing the comparison." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" -msgstr "User %r not authorized to edit %r" +msgstr "User %r not authorised to edit %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN Group Revision History" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Recent changes to CKAN Group: " -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Log message: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" -msgstr "Unauthorized to read group {group_id}" +msgstr "Unauthorised to read group {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "You are now following {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "You are no longer following {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" -msgstr "Unauthorized to view followers %s" +msgstr "Unauthorised to view followers %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "This site is currently off-line. Database is not initialised." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Please update your profile and add your email address and your full name. {site} uses your email address if you need to reset your password." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Please update your profile and add your email address. " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s uses your email address if you need to reset your password." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Please update your profile and add your full name." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +msgstr "Parameter \"{parameter_name}\" is not an integer" + +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Dataset not found" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" -msgstr "Unauthorized to read package %s" +msgstr "Unauthorised to read package %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Invalid revision format: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." -msgstr "" +msgstr "Viewing {package_type} datasets in {format} format is not supported (template file {file} not found)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN Dataset Revision History" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Recent changes to CKAN Dataset: " -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" -msgstr "Unauthorized to create a package" +msgstr "Unauthorised to create a package" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" -msgstr "Unauthorized to edit this resource" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +msgstr "Unauthorised to edit this resource" + +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Resource not found" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" -msgstr "Unauthorized to update dataset" +msgstr "Unauthorised to update dataset" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." -msgstr "" +msgstr "The dataset {id} could not be found." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "You must add at least one data resource" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Error" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" -msgstr "Unauthorized to create a resource" +msgstr "Unauthorised to create a resource" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "Unauthorised to create a resource for this package" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Unable to add package to search index." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Unable to update search index." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "Unauthorized to delete package %s" - -#: ckan/controllers/package.py:1061 +#: ckan/controllers/package.py:1036 msgid "Dataset has been deleted." msgstr "Dataset has been deleted." -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Unauthorised to delete package %s" + +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Resource has been deleted." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" -msgstr "Unauthorized to delete resource %s" +msgstr "Unauthorised to delete resource %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" -msgstr "Unauthorized to read dataset %s" +msgstr "Unauthorised to read dataset %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "Resource view not found" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" -msgstr "Unauthorized to read resource %s" +msgstr "Unauthorised to read resource %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" -msgstr "" +msgstr "Resource data not found" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "No download is available" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Unauthorised to edit resource" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "View not found" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "Unauthorised to view View %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "View Type Not found" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Bad resource view data" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Unauthorised to read resource view %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "Resource view not supplied" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "No preview has been defined." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Most viewed" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Most Viewed" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Least Viewed" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Newest" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Oldest" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "The requested related item was not found" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Related item not found" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Not authorized" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Package not found" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Related item was successfully created" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Related item was successfully updated" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Related item has been deleted." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Unauthorized to delete related item %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Application" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idea" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "News Article" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Paper" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Post" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualization" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN Repository Revision History" @@ -702,43 +614,43 @@ msgstr "Other" msgid "Tag not found" msgstr "Tag not found" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "User not found" #: ckan/controllers/user.py:149 msgid "Unauthorized to register as a user." -msgstr "" +msgstr "Unauthorised to register as a user." #: ckan/controllers/user.py:166 msgid "Unauthorized to create a user" -msgstr "Unauthorized to create a user" +msgstr "Unauthorised to create a user" #: ckan/controllers/user.py:197 msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" +msgstr "Unauthorised to delete user with id \"{user_id}\"." #: ckan/controllers/user.py:211 ckan/controllers/user.py:270 msgid "No user specified" msgstr "No user specified" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" -msgstr "Unauthorized to edit user %s" +msgstr "Unauthorised to edit user %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profile updated" #: ckan/controllers/user.py:232 #, python-format msgid "Unauthorized to create user %s" -msgstr "Unauthorized to create user %s" +msgstr "Unauthorised to create user %s" #: ckan/controllers/user.py:238 msgid "Bad Captcha. Please try again." @@ -753,77 +665,89 @@ msgstr "User \"%s\" is now registered but you are still logged in as \"%s\" from #: ckan/controllers/user.py:276 msgid "Unauthorized to edit a user." -msgstr "" +msgstr "Unauthorised to edit a user." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" -msgstr "User %s not authorized to edit %s" +msgstr "User %s not authorised to edit %s" + +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Password entered was incorrect" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Old Password" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "incorrect password" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Login failed. Bad username or password." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." -msgstr "" +msgstr "Unauthorised to request reset password." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" matched several users" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "No such user: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Please check your inbox for a reset code." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Could not send reset link: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." -msgstr "" +msgstr "Unauthorised to reset password." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Invalid reset key. Please try again." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Your password has been reset." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Your password must be 4 characters or longer." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "The passwords you entered do not match." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "You must provide a password" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Follow item not found" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} not found" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" -msgstr "Unauthorized to read {0} {1}" +msgstr "Unauthorised to read {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Everything" @@ -833,7 +757,7 @@ msgstr "Missing Value" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Redirecting to external site is not allowed." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" @@ -866,11 +790,11 @@ msgstr "{actor} updated their profile" #: ckan/lib/activity_streams.py:86 msgid "" "{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" +msgstr "{actor} updated the {related_type} {related_item} of the dataset {dataset}" #: ckan/lib/activity_streams.py:89 msgid "{actor} updated the {related_type} {related_item}" -msgstr "" +msgstr "{actor} updated the {related_type} {related_item}" #: ckan/lib/activity_streams.py:92 msgid "{actor} deleted the group {group}" @@ -939,13 +863,13 @@ msgstr "{actor} started following {group}" #: ckan/lib/activity_streams.py:142 msgid "" "{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" +msgstr "{actor} added the {related_type} {related_item} to the dataset {dataset}" #: ckan/lib/activity_streams.py:145 msgid "{actor} added the {related_type} {related_item}" -msgstr "" +msgstr "{actor} added the {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -953,9 +877,9 @@ msgid "View" msgstr "View" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "1 new activity from {site_title}" +msgstr[0] "{n} new activity from {site_title}" msgstr[1] "{n} new activities from {site_title}" #: ckan/lib/formatters.py:17 @@ -1006,135 +930,135 @@ msgstr "November" msgid "December" msgstr "December" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Just now" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} minute ago" msgstr[1] "{mins} minutes ago" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} hour ago" msgstr[1] "{hours} hours ago" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} day ago" msgstr[1] "{days} days ago" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{months} month ago" +msgstr[1] "{months} months ago" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "over {years} year ago" +msgstr[1] "over {years} years ago" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{day} {month} {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Update your avatar at gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Unknown" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" -msgstr "" +msgstr "Unnamed resource" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Created new dataset." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Edited resources." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Edited settings." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} view" msgstr[1] "{number} views" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} recent view" @@ -1161,16 +1085,16 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "You have requested your password on {site_title} to be reset.\n\nPlease click the following link to confirm this request:\n\n {reset_link}\n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n\nTo accept this invite, please reset your password at:\n\n {reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1179,7 +1103,7 @@ msgstr "Reset your password" #: ckan/lib/mailer.py:151 msgid "Invite for {site_title}" -msgstr "" +msgstr "Invite for {site_title}" #: ckan/lib/navl/dictization_functions.py:11 #: ckan/lib/navl/dictization_functions.py:13 @@ -1190,7 +1114,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Missing value" @@ -1203,7 +1127,7 @@ msgstr "The input field %(name)s was not expected." msgid "Please enter an integer value" msgstr "Please enter an integer value" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1213,11 +1137,11 @@ msgstr "Please enter an integer value" msgid "Resources" msgstr "Resources" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Package resource(s) invalid" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Extras" @@ -1227,425 +1151,413 @@ msgstr "Extras" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Tag vocabulary \"%s\" does not exist" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "User" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Dataset" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Group" #: ckan/logic/converters.py:178 msgid "Could not parse as valid JSON" -msgstr "" +msgstr "Could not parse as valid JSON" #: ckan/logic/validators.py:30 ckan/logic/validators.py:39 msgid "A organization must be supplied" msgstr "A organisation must be supplied" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organisation does not exist" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "You cannot add a dataset to this organisation" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Invalid integer" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" -msgstr "" +msgstr "Must be a natural number" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" -msgstr "" +msgstr "Must be a postive integer" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Date format incorrect" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "No links are allowed in the log_message." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "Dataset id already exists" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Resource" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Related" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "That group name or ID does not exist." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Activity type" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" -msgstr "" +msgstr "Names must be strings" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "That name cannot be used" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Must be at least %s characters long" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Name must be a maximum of %i characters long" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "Must be purely lowercase alphanumeric (ascii) characters and these symbols: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "That URL is already in use." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Name \"%s\" length is less than minimum %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Name \"%s\" length is more than maximum %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Version must be a maximum of %i characters long" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Duplicate key \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Group name already exists in database" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Tag \"%s\" length is less than minimum %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Tag \"%s\" length is more than maximum %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Tag \"%s\" must be alphanumeric characters or symbols: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Tag \"%s\" must not be uppercase" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" -msgstr "" +msgstr "User names must be strings" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "That login name is not available." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Please enter both passwords" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" -msgstr "" +msgstr "Passwords must be strings" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Your password must be 4 characters or longer" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "The passwords you entered do not match" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Edit not allowed as it looks like spam. Please avoid links in your description." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Name must be at least %s characters long" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "That vocabulary name is already in use." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Cannot change value of key from %s to %s. This key is read-only" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Tag vocabulary was not found." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Tag %s does not belong to vocabulary %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "No tag name" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Tag %s already belongs to vocabulary %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Please provide a valid URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "role does not exist." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." -msgstr "" +msgstr "Datasets with no organisation can't be private." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" -msgstr "" +msgstr "Not a list" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" -msgstr "" +msgstr "Not a string" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" -msgstr "" +msgstr "This parent would create a loop in the hierarchy" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "\"filter_fields\" and \"filter_values\" should have the same length" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +msgstr "\"filter_fields\" is required when \"filter_values\" is filled" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "\"filter_values\" is required when \"filter_fields\" is filled" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "There is a schema field with the same name" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Create object %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Create package relationship: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Create member object %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Trying to create an organisation as a group" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "You must supply a package id or name (parameter \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "You must supply a rating (parameter \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Rating must be an integer value." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Rating must be between %i and %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "You must be logged in to follow users" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "You cannot follow yourself" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "You are already following {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "You must be logged in to follow a dataset." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." -msgstr "" +msgstr "User {username} does not exist." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "You must be logged in to follow a group." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Delete Package: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Delete %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Delete Member: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id not in data" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Could not find vocabulary \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Could not find tag \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "You must be logged in to unfollow something." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "You are not following {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Resource was not found." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Do not specify if using \"query\" parameter" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Must be : pair(s)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Field \"{field}\" not recognised in resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "unknown user:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Item was not found." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Package was not found." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Update object %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Update package relationship: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus was not found." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organisation was not found." #: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 #, python-format msgid "User %s not authorized to create packages" -msgstr "User %s not authorized to create packages" +msgstr "User %s not authorised to create packages" #: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 #, python-format msgid "User %s not authorized to edit these groups" -msgstr "User %s not authorized to edit these groups" +msgstr "User %s not authorised to edit these groups" #: ckan/logic/auth/create.py:36 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "" +msgstr "User %s not authorised to add dataset to this organisation" #: ckan/logic/auth/create.py:58 msgid "You must be a sysadmin to create a featured related item" @@ -1657,9 +1569,9 @@ msgstr "You must be logged in to add a related item" #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "No dataset id provided, cannot check auth." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "No package found for this resource, cannot check auth." @@ -1667,139 +1579,143 @@ msgstr "No package found for this resource, cannot check auth." #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "User %s not authorised to create resources on dataset %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" -msgstr "User %s not authorized to edit these packages" +msgstr "User %s not authorised to edit these packages" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" -msgstr "User %s not authorized to create groups" +msgstr "User %s not authorised to create groups" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" -msgstr "User %s not authorized to create organisations" +msgstr "User %s not authorised to create organisations" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" -msgstr "" +msgstr "User {user} not authorised to create users via the API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" -msgstr "" +msgstr "Not authorised to create users" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Group was not found." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Valid API key needed to create a package" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Valid API key needed to create a group" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" -msgstr "User %s not authorized to add members" +msgstr "User %s not authorised to add members" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" -msgstr "User %s not authorized to edit group %s" +msgstr "User %s not authorised to edit group %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" -msgstr "User %s not authorized to delete resource %s" +msgstr "User %s not authorised to delete resource %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "Resource view not found, cannot check auth." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Only the owner can delete a related item" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" -msgstr "User %s not authorized to delete relationship %s" +msgstr "User %s not authorised to delete relationship %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" -msgstr "User %s not authorized to delete groups" +msgstr "User %s not authorised to delete groups" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" -msgstr "User %s not authorized to delete group %s" +msgstr "User %s not authorised to delete group %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" -msgstr "User %s not authorized to delete organisations" +msgstr "User %s not authorised to delete organisations" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" -msgstr "User %s not authorized to delete organisation %s" +msgstr "User %s not authorised to delete organisation %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" -msgstr "User %s not authorized to delete task_status" +msgstr "User %s not authorised to delete task_status" + +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Not authorised" #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" -msgstr "User %s not authorized to read these packages" +msgstr "User %s not authorised to read these packages" #: ckan/logic/auth/get.py:119 #, python-format msgid "User %s not authorized to read package %s" -msgstr "User %s not authorized to read package %s" +msgstr "User %s not authorised to read package %s" #: ckan/logic/auth/get.py:141 #, python-format msgid "User %s not authorized to read resource %s" -msgstr "User %s not authorized to read resource %s" +msgstr "User %s not authorised to read resource %s" #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "User %s not authorised to read group %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "You must be logged in to access your dashboard." #: ckan/logic/auth/update.py:37 #, python-format msgid "User %s not authorized to edit package %s" -msgstr "User %s not authorized to edit package %s" +msgstr "User %s not authorised to edit package %s" #: ckan/logic/auth/update.py:69 #, python-format msgid "User %s not authorized to edit resource %s" -msgstr "User %s not authorized to edit resource %s" +msgstr "User %s not authorised to edit resource %s" #: ckan/logic/auth/update.py:98 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "User %s not authorized to change state of package %s" +msgstr "User %s not authorised to change state of package %s" #: ckan/logic/auth/update.py:126 #, python-format msgid "User %s not authorized to edit organization %s" -msgstr "User %s not authorized to edit organisation %s" +msgstr "User %s not authorised to edit organisation %s" #: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 msgid "Only the owner can update a related item" @@ -1812,40 +1728,40 @@ msgstr "You must be a sysadmin to change a related item's featured field." #: ckan/logic/auth/update.py:165 #, python-format msgid "User %s not authorized to change state of group %s" -msgstr "User %s not authorized to change state of group %s" +msgstr "User %s not authorised to change state of group %s" #: ckan/logic/auth/update.py:182 #, python-format msgid "User %s not authorized to edit permissions of group %s" -msgstr "User %s not authorized to edit permissions of group %s" +msgstr "User %s not authorised to edit permissions of group %s" #: ckan/logic/auth/update.py:209 msgid "Have to be logged in to edit user" -msgstr "" +msgstr "Have to be logged in to edit user" #: ckan/logic/auth/update.py:217 #, python-format msgid "User %s not authorized to edit user %s" -msgstr "User %s not authorized to edit user %s" +msgstr "User %s not authorised to edit user %s" #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "User {0} not authorised to update user {1}" #: ckan/logic/auth/update.py:236 #, python-format msgid "User %s not authorized to change state of revision" -msgstr "User %s not authorized to change state of revision" +msgstr "User %s not authorised to change state of revision" #: ckan/logic/auth/update.py:245 #, python-format msgid "User %s not authorized to update task_status table" -msgstr "User %s not authorized to update task_status table" +msgstr "User %s not authorised to update task_status table" #: ckan/logic/auth/update.py:259 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "User %s not authorized to update term_translation table" +msgstr "User %s not authorised to update term_translation table" #: ckan/logic/auth/update.py:281 msgid "Valid API key needed to edit a package" @@ -1855,63 +1771,63 @@ msgstr "Valid API key needed to edit a package" msgid "Valid API key needed to edit a group" msgstr "Valid API key needed to edit a group" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "License not specified" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Other (Open)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Other (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Other (Attribution)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Other (Non-Commercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Other (Not Open)" @@ -2018,8 +1934,6 @@ msgstr "Confirm" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Cancel" @@ -2039,27 +1953,28 @@ msgstr "Upload" #: ckan/public/base/javascript/modules/image-upload.js:16 msgid "Link" -msgstr "" +msgstr "Link" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Remove" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Image" #: ckan/public/base/javascript/modules/image-upload.js:19 msgid "Upload a file on your computer" -msgstr "" +msgstr "Upload a file on your computer" #: ckan/public/base/javascript/modules/image-upload.js:20 msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" +msgstr "Link to a URL on the internet (you can also link to an API)" #: ckan/public/base/javascript/modules/related-item.js:25 msgid "show more" @@ -2071,17 +1986,17 @@ msgstr "show less" #: ckan/public/base/javascript/modules/resource-reorder.js:8 msgid "Reorder resources" -msgstr "" +msgstr "Reorder resources" #: ckan/public/base/javascript/modules/resource-reorder.js:9 #: ckan/public/base/javascript/modules/resource-view-reorder.js:9 msgid "Save order" -msgstr "" +msgstr "Save order" #: ckan/public/base/javascript/modules/resource-reorder.js:10 #: ckan/public/base/javascript/modules/resource-view-reorder.js:10 msgid "Saving..." -msgstr "" +msgstr "Saving..." #: ckan/public/base/javascript/modules/resource-upload-field.js:25 msgid "Upload a file" @@ -2111,18 +2026,17 @@ msgstr "Unable to get data for uploaded file" msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" -msgstr "" +msgstr "You are uploading a file. Are you sure you want to navigate away and stop this upload?" #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Reorder resource view" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2136,7 +2050,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Edit" @@ -2175,34 +2088,42 @@ msgstr "Powered by Site Title: This is the title of this CKAN instance It " @@ -2300,7 +2218,7 @@ msgid "" "target=\"_blank\">reading the documentation.

" "

Homepage: This is for choosing a predefined layout for " "the modules that appear on your homepage.

" -msgstr "" +msgstr "

Site Title: This is the title of this CKAN instance It appears in various places throughout CKAN.

Style: Choose from a list of simple variations of the main colour scheme to get a very quick custom theme working.

Site Tag Logo: This is the logo that appears in the header of all the CKAN instance templates.

About: This text will appear on this CKAN instances about page.

Intro Text: This text will appear on this CKAN instances home page as a welcome to visitors.

Custom CSS: This is a block of CSS that appears in <head> tag of every page. If you wish to customise the templates more fully we recommend reading the documentation.

Homepage: This is for choosing a predefined layout for the modules that appear on your homepage.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2309,7 +2227,7 @@ msgstr "Confirm Reset" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Administer CKAN" #: ckan/templates/admin/index.html:20 #, python-format @@ -2317,85 +2235,84 @@ msgid "" "

As a sysadmin user you have full control over this CKAN instance. " "Proceed with care!

For guidance on using sysadmin features, see the " "CKAN sysadmin guide

" -msgstr "" +msgstr "

As a sysadmin user you have full control over this CKAN instance. Proceed with care!

For guidance on using sysadmin features, see the CKAN sysadmin guide

" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Purge" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "

Purge deleted datasets forever and irreversibly.

" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" -msgstr "" +msgstr "CKAN Data API" #: ckan/templates/ajax_snippets/api_info.html:23 msgid "Access resource data via a web API with powerful query support" -msgstr "" +msgstr "Access resource data via a web API with powerful query support" #: ckan/templates/ajax_snippets/api_info.html:24 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +msgstr " Further information in the main CKAN Data API and DataStore documentation.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" -msgstr "" +msgstr "Endpoints" #: ckan/templates/ajax_snippets/api_info.html:37 msgid "" "The Data API can be accessed via the following actions of the CKAN action " "API." -msgstr "" +msgstr "The Data API can be accessed via the following actions of the CKAN action API." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Create" #: ckan/templates/ajax_snippets/api_info.html:46 msgid "Update / Insert" -msgstr "" +msgstr "Update / Insert" #: ckan/templates/ajax_snippets/api_info.html:50 msgid "Query" -msgstr "" +msgstr "Query" #: ckan/templates/ajax_snippets/api_info.html:54 msgid "Query (via SQL)" -msgstr "" +msgstr "Query (via SQL)" #: ckan/templates/ajax_snippets/api_info.html:66 msgid "Querying" -msgstr "" +msgstr "Querying" #: ckan/templates/ajax_snippets/api_info.html:70 msgid "Query example (first 5 results)" -msgstr "" +msgstr "Query example (first 5 results)" #: ckan/templates/ajax_snippets/api_info.html:75 msgid "Query example (results containing 'jones')" -msgstr "" +msgstr "Query example (results containing 'jones')" #: ckan/templates/ajax_snippets/api_info.html:81 msgid "Query example (via SQL statement)" -msgstr "" +msgstr "Query example (via SQL statement)" #: ckan/templates/ajax_snippets/api_info.html:93 msgid "Example: Javascript" -msgstr "" +msgstr "Example: Javascript" #: ckan/templates/ajax_snippets/api_info.html:97 msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" +msgstr "A simple ajax (JSONP) request to the data API using jQuery." #: ckan/templates/ajax_snippets/api_info.html:118 msgid "Example: Python" -msgstr "" +msgstr "Example: Python" #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." @@ -2420,7 +2337,7 @@ msgstr "Your browser does not support iframes." #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." -msgstr "" +msgstr "No preview available." #: ckan/templates/dataviewer/snippets/no_preview.html:5 msgid "More details..." @@ -2505,7 +2422,7 @@ msgstr "Select" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2538,8 +2455,6 @@ msgstr "Group Form" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Confirm Delete" @@ -2557,12 +2472,12 @@ msgstr "Are you sure you want to delete member - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 msgid "Manage" -msgstr "" +msgstr "Manage" #: ckan/templates/group/edit.html:12 msgid "Edit Group" @@ -2600,7 +2515,7 @@ msgstr "Add Group" #: ckan/templates/group/index.html:20 msgid "Search groups..." -msgstr "" +msgstr "Search groups..." #: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 #: ckan/templates/organization/bulk_process.html:97 @@ -2656,27 +2571,27 @@ msgstr "Add Member" #: ckan/templates/group/member_new.html:18 #: ckan/templates/organization/member_new.html:20 msgid "Existing User" -msgstr "" +msgstr "Existing User" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:23 msgid "If you wish to add an existing user, search for their username below." -msgstr "" +msgstr "If you wish to add an existing user, search for their username below." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:40 msgid "or" -msgstr "" +msgstr "or" #: ckan/templates/group/member_new.html:42 #: ckan/templates/organization/member_new.html:44 msgid "New User" -msgstr "" +msgstr "New User" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:47 msgid "If you wish to invite a new user, enter their email address." -msgstr "" +msgstr "If you wish to invite a new user, enter their email address." #: ckan/templates/group/member_new.html:55 #: ckan/templates/group/members.html:18 @@ -2702,14 +2617,12 @@ msgstr "Are you sure you want to delete this member?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Delete" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Save" @@ -2723,7 +2636,7 @@ msgid "" "

Admin: Can edit group information, as well as manage " "organization members.

Member: Can add/remove " "datasets from groups

" -msgstr "" +msgstr "

Admin: Can edit group information, as well as manage organisation members.

Member: Can add/remove datasets from groups

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -2767,7 +2680,7 @@ msgstr "Popular" #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." -msgstr "" +msgstr "Search datasets..." #: ckan/templates/group/snippets/feeds.html:3 msgid "Datasets in group: {group}" @@ -2797,7 +2710,6 @@ msgstr "my-group" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Description" @@ -2836,7 +2748,7 @@ msgstr "View {name}" #: ckan/templates/group/snippets/group_item.html:43 msgid "Remove dataset from this group" -msgstr "" +msgstr "Remove dataset from this group" #: ckan/templates/group/snippets/helper.html:4 msgid "What are Groups?" @@ -2848,17 +2760,17 @@ msgid "" "could be to catalogue datasets for a particular project or team, or on a " "particular theme, or as a very simple way to help people find and search " "your own published datasets. " -msgstr "" +msgstr "You can use CKAN Groups to create and manage collections of datasets. This could be to catalogue datasets for a particular project or team, or on a particular theme, or as a very simple way to help people find and search your own published datasets. " #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 msgid "Compare" -msgstr "" +msgstr "Compare" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2944,51 +2856,43 @@ msgstr "This is a featured section" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "E.g. environment" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "Search data" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Popular tags" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" -msgstr "" +msgstr "{0} statistics" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "dataset" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "datasets" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" -msgstr "" +msgstr "organisation" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" -msgstr "" +msgstr "organisations" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" -msgstr "" +msgstr "group" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" +msgstr "groups" #: ckan/templates/macros/form.html:126 #, python-format @@ -2996,37 +2900,35 @@ msgid "" "You can use Markdown formatting here" -msgstr "" +msgstr "You can use Markdown formatting here" #: ckan/templates/macros/form.html:265 msgid "This field is required" -msgstr "" +msgstr "This field is required" #: ckan/templates/macros/form.html:265 msgid "Custom" msgstr "Custom" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "The form contains invalid entries:" #: ckan/templates/macros/form.html:395 msgid "Required field" -msgstr "" +msgstr "Required field" #: ckan/templates/macros/form.html:410 msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "Image URL" #: ckan/templates/macros/form.html:424 msgid "Clear Upload" -msgstr "" +msgstr "Clear Upload" #: ckan/templates/organization/base_form_page.html:5 msgid "Organization Form" @@ -3035,15 +2937,15 @@ msgstr "Organisation Form" #: ckan/templates/organization/bulk_process.html:3 #: ckan/templates/organization/bulk_process.html:11 msgid "Edit datasets" -msgstr "" +msgstr "Edit datasets" #: ckan/templates/organization/bulk_process.html:6 msgid "Add dataset" -msgstr "" +msgstr "Add dataset" #: ckan/templates/organization/bulk_process.html:16 msgid " found for \"{query}\"" -msgstr "" +msgstr " found for \"{query}\"" #: ckan/templates/organization/bulk_process.html:18 msgid "Sorry no datasets found for \"{query}\"" @@ -3051,11 +2953,11 @@ msgstr "Sorry no datasets found for \"{query}\"" #: ckan/templates/organization/bulk_process.html:37 msgid "Make public" -msgstr "" +msgstr "Make public" #: ckan/templates/organization/bulk_process.html:41 msgid "Make private" -msgstr "" +msgstr "Make private" #: ckan/templates/organization/bulk_process.html:70 #: ckan/templates/package/read.html:18 @@ -3065,7 +2967,7 @@ msgstr "Draft" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3074,7 +2976,7 @@ msgstr "Private" #: ckan/templates/organization/bulk_process.html:88 msgid "This organization has no datasets associated to it" -msgstr "" +msgstr "This organisation has no datasets associated to it" #: ckan/templates/organization/confirm_delete.html:11 msgid "Are you sure you want to delete organization - {name}?" @@ -3093,15 +2995,29 @@ msgstr "Add Organisation" #: ckan/templates/organization/index.html:20 msgid "Search organizations..." -msgstr "" +msgstr "Search organisations..." #: ckan/templates/organization/index.html:29 msgid "There are currently no organizations for this site" msgstr "There are currently no organisations for this site" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Username" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email address" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" -msgstr "" +msgstr "Update Member" #: ckan/templates/organization/member_new.html:82 msgid "" @@ -3135,7 +3051,7 @@ msgstr "Add Dataset" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "Datasets in organisation: {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 @@ -3150,14 +3066,14 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "" +msgstr "

Organisations act like publishing departments for datasets (for example, the Department of Health). This means that datasets can be published by and belong to a department instead of an individual user.

Within organisations, admins can assign roles and authorise its members, giving individual users the right to publish datasets from that particular organisation (e.g. Office of National Statistics).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" " CKAN Organizations are used to create, manage and publish collections of " "datasets. Users can have different roles within an Organization, depending " "on their level of authorisation to create, edit and publish. " -msgstr "" +msgstr " CKAN Organisations are used to create, manage and publish collections of datasets. Users can have different roles within an Organisation, depending on their level of authorisation to create, edit and publish. " #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3175,7 +3091,7 @@ msgstr "A little information about my organisation..." msgid "" "Are you sure you want to delete this Organization? This will delete all the " "public and private datasets belonging to this organization." -msgstr "" +msgstr "Are you sure you want to delete this Organisation? This will delete all the public and private datasets belonging to this organisation." #: ckan/templates/organization/snippets/organization_form.html:64 msgid "Save Organization" @@ -3184,7 +3100,7 @@ msgstr "Save Organisation" #: ckan/templates/organization/snippets/organization_item.html:37 #: ckan/templates/organization/snippets/organization_item.html:38 msgid "View {organization_name}" -msgstr "" +msgstr "View {organization_name}" #: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 #: ckan/templates/package/snippets/new_package_breadcrumb.html:2 @@ -3200,7 +3116,7 @@ msgid "" " A CKAN Dataset is a collection of data resources (such as files), together " "with a description and other information, at a fixed URL. Datasets are what " "users see when searching for data. " -msgstr "" +msgstr " A CKAN Dataset is a collection of data resources (such as files), together with a description and other information, at a fixed URL. Datasets are what users see when searching for data. " #: ckan/templates/package/confirm_delete.html:11 msgid "Are you sure you want to delete dataset - {name}?" @@ -3216,14 +3132,14 @@ msgstr "View dataset" #: ckan/templates/package/edit_base.html:20 msgid "Edit metadata" -msgstr "" +msgstr "Edit metadata" #: ckan/templates/package/edit_view.html:3 #: ckan/templates/package/edit_view.html:4 #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Edit view" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3233,21 +3149,20 @@ msgid "Preview" msgstr "Preview" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Update" #: ckan/templates/package/group_list.html:14 msgid "Associate this group with this dataset" -msgstr "" +msgstr "Associate this group with this dataset" #: ckan/templates/package/group_list.html:14 msgid "Add to group" -msgstr "" +msgstr "Add to group" #: ckan/templates/package/group_list.html:23 msgid "There are no groups associated with this dataset" -msgstr "" +msgstr "There are no groups associated with this dataset" #: ckan/templates/package/new_package_form.html:15 msgid "Update Dataset" @@ -3265,18 +3180,18 @@ msgstr "Add New Resource" #: ckan/templates/package/new_resource_not_draft.html:3 #: ckan/templates/package/new_resource_not_draft.html:4 msgid "Add resource" -msgstr "" +msgstr "Add resource" #: ckan/templates/package/new_resource_not_draft.html:16 msgid "New resource" -msgstr "" +msgstr "New resource" #: ckan/templates/package/new_view.html:3 #: ckan/templates/package/new_view.html:4 #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Add view" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3285,14 +3200,14 @@ msgid "" "href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-" "structured-data-the-data-explorer' target='_blank'>Data Explorer " "documentation. " -msgstr "" +msgstr " Data Explorer views may be slow and unreliable unless the DataStore extension is enabled. For more information, please see the Data Explorer documentation. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" msgstr "Add" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3313,45 +3228,49 @@ msgstr "Add Related Item" #: ckan/templates/package/resource_data.html:12 msgid "Upload to DataStore" -msgstr "" +msgstr "Upload to DataStore" #: ckan/templates/package/resource_data.html:19 msgid "Upload error:" -msgstr "" +msgstr "Upload error:" #: ckan/templates/package/resource_data.html:25 #: ckan/templates/package/resource_data.html:27 msgid "Error:" msgstr "Error:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "Error traceback:" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" -msgstr "" +msgstr "Status" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Last updated" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" -msgstr "" +msgstr "Never" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" -msgstr "" +msgstr "Upload Log" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" -msgstr "" +msgstr "Details" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" -msgstr "" +msgstr "End of log" #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" -msgstr "" +msgstr "All resources" #: ckan/templates/package/resource_edit_base.html:19 msgid "View resource" @@ -3360,15 +3279,15 @@ msgstr "View resource" #: ckan/templates/package/resource_edit_base.html:24 #: ckan/templates/package/resource_edit_base.html:32 msgid "Edit resource" -msgstr "" +msgstr "Edit resource" #: ckan/templates/package/resource_edit_base.html:26 msgid "DataStore" -msgstr "" +msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Views" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" @@ -3377,7 +3296,7 @@ msgstr "API Endpoint" #: ckan/templates/package/resource_read.html:41 #: ckan/templates/package/snippets/resource_item.html:48 msgid "Go to resource" -msgstr "" +msgstr "Go to resource" #: ckan/templates/package/resource_read.html:43 #: ckan/templates/package/snippets/resource_item.html:45 @@ -3400,30 +3319,30 @@ msgstr "Source: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "There are no views created for this resource yet." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "Not seeing the views you were expecting?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +msgstr "Here are some reasons you may not be seeing expected views:" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "" +msgstr "No view has been created that is suitable for this resource" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +msgstr "The site administrators may not have enabled the relevant view plugins" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "" +msgstr "If a view requires the DataStore, the DataStore plugin may not be enabled, or the data may not have been pushed to the DataStore, or the DataStore hasn't finished processing the data yet" #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" @@ -3449,7 +3368,7 @@ msgid "unknown" msgstr "unknown" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Created" @@ -3467,15 +3386,15 @@ msgstr "License" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "New view" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "This resource has no views" #: ckan/templates/package/resources.html:8 msgid "Add new resource" -msgstr "" +msgstr "Add new resource" #: ckan/templates/package/resources.html:19 #: ckan/templates/package/snippets/resources_list.html:25 @@ -3483,7 +3402,11 @@ msgstr "" msgid "" "

This dataset has no data, why not " "add some?

" -msgstr "" +msgstr "

This dataset has no data, why not add some?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" #: ckan/templates/package/search.html:53 msgid "API Docs" @@ -3509,15 +3432,15 @@ msgstr " You can also access this registry using the %(api_link)s (see %(api_doc #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "All views" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "View view" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "View preview" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 @@ -3541,14 +3464,14 @@ msgid "Version" msgstr "Version" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "State" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "Last Updated" #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" @@ -3556,7 +3479,6 @@ msgstr "Data API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Title" @@ -3576,32 +3498,32 @@ msgstr "eg. Some useful notes about the data" msgid "eg. economy, mental health, government" msgstr "eg. economy, mental health, government" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr " License definitions and additional information can be found at opendefinition.org " -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" -msgstr "" +msgstr "No organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Visibility" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Public" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" -msgstr "" +msgstr "Active" #: ckan/templates/package/snippets/package_form.html:28 msgid "" @@ -3610,7 +3532,7 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "" +msgstr "The data license you select above only applies to the contents of any resource files that you add to this dataset. By submitting this form, you agree to release the metadata values that you enter into the form under the Open Database License." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -3622,11 +3544,11 @@ msgstr "Next: Add Data" #: ckan/templates/package/snippets/package_metadata_fields.html:6 msgid "http://example.com/dataset.json" -msgstr "" +msgstr "http://example.com/dataset.json" #: ckan/templates/package/snippets/package_metadata_fields.html:10 msgid "1.0" -msgstr "" +msgstr "1.0" #: ckan/templates/package/snippets/package_metadata_fields.html:14 #: ckan/templates/package/snippets/package_metadata_fields.html:20 @@ -3654,7 +3576,7 @@ msgstr "Update Resource" #: ckan/templates/package/snippets/resource_form.html:24 msgid "File" -msgstr "" +msgstr "File" #: ckan/templates/package/snippets/resource_form.html:28 msgid "eg. January 2011 Gold Prices" @@ -3670,7 +3592,7 @@ msgstr "eg. CSV, XML or JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" +msgstr "This will be guessed automatically. Leave blank if you wish" #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" @@ -3724,33 +3646,33 @@ msgstr "Explore" #: ckan/templates/package/snippets/resource_item.html:36 msgid "More information" -msgstr "" +msgstr "More information" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Embed" #: ckan/templates/package/snippets/resource_view.html:24 msgid "This resource view is not available at the moment." -msgstr "" +msgstr "This resource view is not available at the moment." #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "" +msgstr "Embed resource view" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "" +msgstr "You can copy and paste the embed code into a CMS or blog software that supports raw HTML" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Width" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Height" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" @@ -3758,7 +3680,7 @@ msgstr "Code" #: ckan/templates/package/snippets/resource_views_list.html:8 msgid "Resource Preview" -msgstr "" +msgstr "Resource Preview" #: ckan/templates/package/snippets/resources_list.html:13 msgid "Data and Resources" @@ -3766,7 +3688,7 @@ msgstr "Data and Resources" #: ckan/templates/package/snippets/resources_list.html:29 msgid "This dataset has no data" -msgstr "" +msgstr "This dataset has no data" #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format @@ -3786,173 +3708,40 @@ msgstr "Add data" #: ckan/templates/package/snippets/view_form.html:8 msgid "eg. My View" -msgstr "" +msgstr "eg. My View" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "" +msgstr "eg. Information about my view" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "" +msgstr "Add Filter" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "Remove Filter" #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" -msgstr "" +msgstr "Filters" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "" +msgstr "What's a view?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Related Form" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "What are related items?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Related Media is any app, article, visualisation or idea related to this dataset.

For example, it could be a custom visualisation, pictograph or bar chart, an app using all or part of the data or even a news story that references this dataset.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Are you sure you want to delete related item - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Apps & Ideas" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Showing items %(first)s - %(last)s of %(item_count)s related items found

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s related items found

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "There have been no apps submitted yet." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "What are applications?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr " These are applications built with the datasets as well as ideas for things that could be done with them. " - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filter Results" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filter by type" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "All" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Sort by" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Default" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Only show featured items" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Apply" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Edit related item" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Edit Related" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Edit Related Item" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Create a related item" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Create Related" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Create Related Item" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "My Related Item" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "A little information about the item..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Type" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Are you sure you want to delete this related item?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" +msgstr "A view is a representation of the data held against a resource" #: ckan/templates/revision/diff.html:6 msgid "Differences" -msgstr "" +msgstr "Differences" #: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 #: ckan/templates/revision/diff.html:23 msgid "Revision Differences" -msgstr "" +msgstr "Revision Differences" #: ckan/templates/revision/diff.html:44 msgid "Difference" @@ -3960,7 +3749,7 @@ msgstr "Difference" #: ckan/templates/revision/diff.html:54 msgid "No Differences" -msgstr "" +msgstr "No Differences" #: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 #: ckan/templates/revision/list.html:10 @@ -4013,7 +3802,7 @@ msgstr "Height:" #: ckan/templates/snippets/datapusher_status.html:8 msgid "Datapusher status: {status}." -msgstr "" +msgstr "Datapusher status: {status}." #: ckan/templates/snippets/disqus_trackback.html:2 msgid "Trackback URL" @@ -4021,18 +3810,17 @@ msgstr "Trackback URL" #: ckan/templates/snippets/facet_list.html:80 msgid "Show More {facet_type}" -msgstr "" +msgstr "Show More {facet_type}" #: ckan/templates/snippets/facet_list.html:83 msgid "Show Only Popular {facet_type}" -msgstr "" +msgstr "Show Only Popular {facet_type}" #: ckan/templates/snippets/facet_list.html:87 msgid "There are no {facet_type} that match this search" -msgstr "" +msgstr "There are no {facet_type} that match this search" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Home" @@ -4041,7 +3829,7 @@ msgid "Language" msgstr "Language" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4073,21 +3861,25 @@ msgstr "No apps, ideas, news stories or images have been related to this dataset msgid "Add Item" msgstr "Add Item" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Submit" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Order by" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filter Results" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Please try another search.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4101,7 +3893,7 @@ msgstr[1] "{number} datasets found for \"{query}\"" #: ckan/templates/snippets/search_result_text.html:16 msgid "No datasets found for \"{query}\"" -msgstr "" +msgstr "No datasets found for \"{query}\"" #: ckan/templates/snippets/search_result_text.html:17 msgid "{number} dataset found" @@ -4111,7 +3903,7 @@ msgstr[1] "{number} datasets found" #: ckan/templates/snippets/search_result_text.html:18 msgid "No datasets found" -msgstr "" +msgstr "No datasets found" #: ckan/templates/snippets/search_result_text.html:21 msgid "{number} group found for \"{query}\"" @@ -4121,7 +3913,7 @@ msgstr[1] "{number} groups found for \"{query}\"" #: ckan/templates/snippets/search_result_text.html:22 msgid "No groups found for \"{query}\"" -msgstr "" +msgstr "No groups found for \"{query}\"" #: ckan/templates/snippets/search_result_text.html:23 msgid "{number} group found" @@ -4131,7 +3923,7 @@ msgstr[1] "{number} groups found" #: ckan/templates/snippets/search_result_text.html:24 msgid "No groups found" -msgstr "" +msgstr "No groups found" #: ckan/templates/snippets/search_result_text.html:27 msgid "{number} organization found for \"{query}\"" @@ -4141,7 +3933,7 @@ msgstr[1] "{number} organisations found for \"{query}\"" #: ckan/templates/snippets/search_result_text.html:28 msgid "No organizations found for \"{query}\"" -msgstr "" +msgstr "No organisations found for \"{query}\"" #: ckan/templates/snippets/search_result_text.html:29 msgid "{number} organization found" @@ -4151,7 +3943,7 @@ msgstr[1] "{number} organisations found" #: ckan/templates/snippets/search_result_text.html:30 msgid "No organizations found" -msgstr "" +msgstr "No organisations found" #: ckan/templates/snippets/social.html:5 msgid "Social" @@ -4162,7 +3954,7 @@ msgid "Subscribe" msgstr "Subscribe" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4179,11 +3971,7 @@ msgstr "Edits" #: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Dashboard" +msgstr "Search Tags" #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" @@ -4197,16 +3985,16 @@ msgstr "My Datasets" #: ckan/templates/user/dashboard.html:21 #: ckan/templates/user/dashboard_organizations.html:12 msgid "My Organizations" -msgstr "" +msgstr "My Organisations" #: ckan/templates/user/dashboard.html:22 #: ckan/templates/user/dashboard_groups.html:12 msgid "My Groups" -msgstr "" +msgstr "My Groups" #: ckan/templates/user/dashboard.html:39 msgid "Activity from items that I'm following" -msgstr "" +msgstr "Activity from items that I'm following" #: ckan/templates/user/dashboard_datasets.html:17 #: ckan/templates/user/read.html:14 @@ -4222,11 +4010,11 @@ msgstr "Create one now?" #: ckan/templates/user/dashboard_groups.html:20 msgid "You are not a member of any groups." -msgstr "" +msgstr "You are not a member of any groups." #: ckan/templates/user/dashboard_organizations.html:20 msgid "You are not a member of any organizations." -msgstr "" +msgstr "You are not a member of any organisations." #: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 @@ -4246,40 +4034,31 @@ msgstr " Your profile lets other CKAN users know about who you are and what you #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Username" +msgstr "Change details" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Full name" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "eg. Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "eg. joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "A little information about yourself" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Subscribe to notification emails" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" -msgstr "" +msgstr "Change password" #: ckan/templates/user/edit_user_form.html:29 #: ckan/templates/user/logout_first.html:12 @@ -4295,15 +4074,15 @@ msgstr "Confirm Password" #: ckan/templates/user/edit_user_form.html:37 msgid "Are you sure you want to delete this User?" -msgstr "" +msgstr "Are you sure you want to delete this User?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "Are you sure you want to regenerate the API key?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Regenerate API Key" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" @@ -4334,7 +4113,7 @@ msgstr "Create an Account" #: ckan/templates/user/login.html:42 msgid "Forgotten your password?" -msgstr "" +msgstr "Forgotten your password?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." @@ -4395,7 +4174,7 @@ msgstr "Create datasets, groups and other exciting things" #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "username" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" @@ -4457,11 +4236,11 @@ msgstr "API Key" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Password reset" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Request reset" #: ckan/templates/user/request_reset.html:34 msgid "" @@ -4492,47 +4271,55 @@ msgstr "Search Users" #: ckanext/datapusher/helpers.py:19 msgid "Complete" -msgstr "" +msgstr "Complete" #: ckanext/datapusher/helpers.py:20 msgid "Pending" -msgstr "" +msgstr "Pending" #: ckanext/datapusher/helpers.py:21 msgid "Submitting" -msgstr "" +msgstr "Submitting" #: ckanext/datapusher/helpers.py:27 msgid "Not Uploaded Yet" -msgstr "" +msgstr "Not Uploaded Yet" #: ckanext/datastore/controller.py:31 msgid "DataStore resource not found" -msgstr "" +msgstr "DataStore resource not found" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "The data was invalid (for example: a numeric value is out of range or was inserted into a text field)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Resource \"{0}\" was not found." #: ckanext/datastore/logic/auth.py:16 msgid "User {0} not authorized to update resource {1}" -msgstr "User {0} not authorized to update resource {1}" +msgstr "User {0} not authorised to update resource {1}" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datasets per page" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Test conf" #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "Custom Field Ascending" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "Custom Field Descending" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 @@ -4550,7 +4337,11 @@ msgstr "Country Code" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" -msgstr "" +msgstr "custom resource text" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "This is an untranslated string" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 @@ -4559,134 +4350,93 @@ msgstr "This group has no description" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "CKAN's data previewing tool has many powerful features" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "Image url" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +msgstr "eg. http://example.com/image.jpg (if blank uses resource url)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" -msgstr "" +msgstr "Data Explorer" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "Table" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Graph" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" +msgstr "Map" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "This compiled version of SlickGrid has been obtained with the Google Closure\nCompiler, using the following command:\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nThere are two other files required for the SlickGrid view to work properly:\n\n * jquery-ui-1.8.16.custom.min.js \n * jquery.event.drag-2.0.min.js\n\nThese are included in the Recline source, but have not been included in the\nbuilt file to make easier to handle compatibility problems.\n\nPlease check SlickGrid license in the included MIT-LICENSE.txt file.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "error loading view" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "Row offset" -msgstr "" +msgstr "Row offset" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "eg: 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Number of rows" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "eg: 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Graph type" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Group (Axis 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Series (Axis 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "Field type" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" -msgstr "" +msgstr "Latitude field" #: ckanext/reclineview/theme/templates/recline_map_form.html:8 msgid "Longitude field" -msgstr "" +msgstr "Longitude field" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "GeoJSON field" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" -msgstr "" +msgstr "Auto zoom to features" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "Cluster markers" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Total number of Datasets" @@ -4714,33 +4464,27 @@ msgstr "New datasets" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Top Rated Datasets" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Average rating" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Number of ratings" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "No ratings" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Most Edited Datasets" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Number of edits" @@ -4750,12 +4494,10 @@ msgstr "No edited datasets" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Largest Groups" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Number of datasets" @@ -4765,7 +4507,6 @@ msgstr "No groups" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Top Tags" @@ -4780,8 +4521,8 @@ msgstr "Number of Datasets" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" +msgstr "Users Creating Most Datasets" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4791,49 +4532,23 @@ msgstr "Statistics Menu" msgid "Total Number of Datasets" msgstr "Total Number of Datasets" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistics" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Revisions to Datasets per week" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Users owning most datasets" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Page last updated:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Leaderboard - Stats" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Dataset Leaderboard" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Text" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Choose a dataset attribute and find out which categories in that area have the most datasets. E.g. tags, groups, license, res_format, country." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "An error occurred: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Website" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "Web Page url" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "eg. http://example.com (if blank uses resource url)" diff --git a/ckan/i18n/es/LC_MESSAGES/ckan.mo b/ckan/i18n/es/LC_MESSAGES/ckan.mo index a6a0cf6bef8..9b4d9089069 100644 Binary files a/ckan/i18n/es/LC_MESSAGES/ckan.mo and b/ckan/i18n/es/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/es/LC_MESSAGES/ckan.po b/ckan/i18n/es/LC_MESSAGES/ckan.po index e0db7a959f7..98eac43930e 100644 --- a/ckan/i18n/es/LC_MESSAGES/ckan.po +++ b/ckan/i18n/es/LC_MESSAGES/ckan.po @@ -3,8 +3,8 @@ # This file is distributed under the same license as the ckan project. # # Translators: -# Carlos Brys , 2013 -# Eduardo Bejar , 2013-2015 +# Adrià Mercader , 2015 +# Carlos Brys , 2013,2015 # Félix Pedrera , 2012 # , 2011 # Isabel Ruiz, 2013 @@ -12,256 +12,257 @@ # Jesús García <>, 2012 # Jesus Redondo , 2013 # Open Knowledge Foundation , 2011 +# urkonn , 2015 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-02-17 17:36+0000\n" -"Last-Translator: Eduardo Bejar \n" -"Language-Team: Spanish (http://www.transifex.com/projects/p/ckan/language/es/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-06 19:52+0000\n" +"Last-Translator: Carlos Brys \n" +"Language-Team: Spanish (http://www.transifex.com/okfn/ckan/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Función de autorización no encontrada: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Administrador" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Editor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Miembro" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Es necesario ser administrador del sistema para administrar" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Nombre del Sitio" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Estilo" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Lema del sitio" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Etiqueta del logo del sitio" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Acerca de" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Texto de la página de Acerca de" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Texto de introducción" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Texto en página principal" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "CSS Personalizado" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Hoja de estilo CSS personalizable insertada en la cabecera de la página" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Página de inicio" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "No se puede purgar el paquete %s ya que la revisión asociada %s incluye paquetes de datos no borrados %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problema al purgar la revisión %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Purga completada" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Acción no implementada" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "No estás autorizado para ver esta página" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Acceso denegado" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "No encontrado" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Solicitud incorrecta" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Nombre de la acción desconocida: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Error JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Solicitud de datos incorrecta: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "No se puede listar la entidad de este tipo: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "No se puede leer la entidad de este tipo: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "No se puede crear una entidad nueva de este tipo: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "No se puede agregar el paquete al índice de búsqueda" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "No se puede actualizar la entidad de este tipo: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "No se puede actualizar el índice de búsqueda" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "No se puede borrar la entidad de este tipo: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "No hay ninguna revisión especificada" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "No hay ninguna revisión con id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Término de búsqueda faltante ('since_id=UUID' o 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "No se pueden leer los parámetros: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Opción de búsqueda errónea: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Registro desconocido: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Valor de qjson malformado: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Los parámetros requeridos debe estar en forma de un diccionario en código json." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Grupo no encontrado" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "Organización no encontrada." -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Tipo de grupo incorrecto" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "No estás autorizado para leer el grupo %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -272,23 +273,23 @@ msgstr "No estás autorizado para leer el grupo %s" msgid "Organizations" msgstr "Organizaciones" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupos" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -296,394 +297,303 @@ msgstr "Grupos" msgid "Tags" msgstr "Etiquetas" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formatos" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licencias" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "No autorizado para llevar a cabo una actualización masiva." -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "No estás autorizado para crear un grupo" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "El usuario %r no está autorizado para editar %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Error de integridad" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "El usuario %r no está autorizado para editar %s autorizaciones" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "No estás autorizado para borrar el grupo %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "La Organización ha sido borrada." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "El grupo ha sido borrado." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s ha sido borrado." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "No estás autorizado para agregar miembros al grupo %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "No estás autorizado a borrar %s miembros del grupo" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Miembro de grupo ha sido borrado." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Selecciona dos revisiones antes de hacer la comparación." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "El usuario %r no está autorizado para editar %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Grupo CKAN Historial de Revisión" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Cambios recientes en el Grupo CKAN:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Mensaje del log:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "No estás autorizado a leer el grupo {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Estás siguiendo a {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Ya no estás siguiendo a {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "No estás autorizado para ver seguidores %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Este sitio está actualmente fuera de línea. La base de datos no está inicializada." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Por favor actualiza tu perfil y añade tu dirección de correo electrónico y tu nombre completo. {site} utiliza tu dirección de correo si necesitas resetear tu contraseña" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Por favor actualiza tu perfil y añade tu dirección de correo electrónico." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s utiliza tu correo electrónico si necesitas recuperar tu contraseña." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Por favor actualiza tu perfil y añade tu nombre completo." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Parámetro \"{parameter_name}\" no es un entero" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Conjunto de datos no encontrado" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "No estás autorizado a leer el paquete %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Formato de revisión no válido: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Ver conjuntos de datos {package_type} en formato {format} no es soportado (archivo de plantilla {file} no encontrado)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Historial de revisión del conjunto de datos CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Cambios recientes al conjunto de datos CKAN" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" -msgstr "No está autorizado a leer el paquete" +msgstr "No está autorizado a crear el paquete" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "No está autorizado a editar este recurso" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Recurso no encontrado" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "No estás autorizado para actualizar el conjunto de datos" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Conjunto de datos {id} no pudo ser encontrado." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Debe añadir al menos un recurso de datos" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Error" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "No está autorizado a crear un recurso" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "No está autorizado para crear un recurso para este paquete" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "No se puede agregar el paquete al índice de búsqueda" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "No se puede actualizar el índice de búsqueda." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "El conjunto de datos ha sido borrado" + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "No está autorizado a borrar el paquete %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "El conjunto de datos ha sido borrado" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "El recurso ha sido borrado" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "No está autorizado a borrar el recurso %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "No estás autorizado a leer el conjunto de datos %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "Vista de recurso no encontrada" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "No autorizado para leer el recurso %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Datos del recurso no encontrado" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "No hay descargas disponibles" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "No está autorizado para editar recurso" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "Vista no encontrada" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "No está autorizado para ver Vista %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "Tipo de Vista No encontrado" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "Datos de vista de recurso no adecuados" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "No está autorizado para leer recurso de vista %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "Vista de recurso no proporcionada" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "No se ha definido una previsualización" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Más vistos" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Más vistos" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Menos vistos" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "El más nuevo" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "El más antiguo" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "El elemento relacionado solicitado no se ha encontrado" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "No se ha encontrado el elemento relacionado" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "No estás autorizado" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Paquete no encontrado" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "El elemento relacionado se ha creado correctamente" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "El elemento relacionado se ha actualizado correctamente" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "El elemento relacionado se ha borrado correctamente" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "No está autorizado a borrar el elemento relacionado %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Aplicación" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idea" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Artículo de noticias" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Artículo" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Publicar" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualización" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Historial de revisiones del repositorio CKAN" @@ -709,10 +619,10 @@ msgstr "Otro" msgid "Tag not found" msgstr "Etiqueta no encontrada" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Usuario no encontrado" @@ -732,13 +642,13 @@ msgstr "No está autorizado a borrar el usuario con id \"{user_id}\"." msgid "No user specified" msgstr "No se ha especificado ningún usuario" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "No estás autorizado para editar el usuario %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Perfil actualizado" @@ -762,75 +672,87 @@ msgstr "El usuario \"%s\" ha sido registrado, pero aún tienes la sesión inicia msgid "Unauthorized to edit a user." msgstr "No estás autorizado para editar un usuario" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "El usuario %s no está autorizado para editar %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "La contraseña introducida no es correcta" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Contraseña anterior" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "Contraseña incorrecta" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "No se ha podido iniciar sesión. Nombre de usuario o contraseña incorrectos." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "No está autorizado a solicitar el reseteo de la clave." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" coincide con varios usuarios" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "No existe el usuario: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Por favor revise su bandeja de entrada para el código de restablecimiento." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "No se pudo enviar el enlace de restablecimiento: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "No está autorizado a resetear la clave." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Clave de restablecimiento no válida. Por favor, inténtalo de nuevo." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Se ha restablecido su contraseña." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Su contraseña debe tener 4 caracteres o más." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Las contraseñas introducidas no coinciden." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Debe proporcionar una contraseña" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Elemento siguiente no encontrado" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} no encontrado" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "No autorizado a leer {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Todo" @@ -952,7 +874,7 @@ msgstr "{actor} actualizó el {related_type} {related_item} del conjunto de dato msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} actualizó {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -960,10 +882,10 @@ msgid "View" msgstr "Ver" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "1 nueva actividad de {site_title}" -msgstr[1] "{n} nuevas actividades de {site_title}" +msgstr[0] "{n} nueva actividad en {site_title}" +msgstr[1] "{n} nuevas actividades en {site_title}" #: ckan/lib/formatters.py:17 msgid "January" @@ -1013,135 +935,135 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Justo ahora" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "hace {mins} minuto" msgstr[1] "hace {mins} minutos " -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "hace {hours} hora" msgstr[1] "hace {hours} horas" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "hace {days} día" msgstr[1] "hace {days} días" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "Hace {months} mes" msgstr[1] "Hace {months} meses" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "hace {years} año" msgstr[1] "hace {years} años" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{day} {month}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Actualiza tu avatar en gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Desconocido" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Recurso sin nombre" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Nuevo conjuto de datos creado." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Recursos editados." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Opciones editadas." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} vista" msgstr[1] "{number} vistas" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} vista reciente" @@ -1172,12 +1094,12 @@ msgstr "Ha requerido restablecer su clave en {site_title}.\n\nPor favor haga cli #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "Ha sido invitado a {site_title}. El siguiente nombre de usuario ha sido creado para usted {user_name}. Si desea, puede cambiarlo luego.\n\nPara aceptar esta invitación, por favor restablezca su clave en:\n\n{reset_link}\n" +msgstr "Has sido invitado a {site_title}. Un usuario ya se ha creado para ti con el nombre de usuario {user_name}. Puedes cambiarlo después\n\nPara aceptar esta invitación, por favor restablezca su contraseña en:\n\n{reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1197,7 +1119,7 @@ msgstr "Invitar a {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Falta el valor" @@ -1210,7 +1132,7 @@ msgstr "No se esperaba el campo %(name)s." msgid "Please enter an integer value" msgstr "Por favor introduce un valor entero" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1220,11 +1142,11 @@ msgstr "Por favor introduce un valor entero" msgid "Resources" msgstr "Recursos" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Recurso(s) del paquete invalido(s)" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Extras" @@ -1234,25 +1156,22 @@ msgstr "Extras" msgid "Tag vocabulary \"%s\" does not exist" msgstr "El vocabulario de etiquetas \"%s\" no existe" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Usuario" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Conjunto de datos" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grupo" @@ -1264,378 +1183,369 @@ msgstr "No se puede parsear como un JSON válido" msgid "A organization must be supplied" msgstr "Se debe proporcionar una organización" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "No puede borrar un conjunto de datos de una organización existente" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organización no existe" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "No es posible agregar un conjunto de datos a esta organización" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Entero no válido" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Debe ser un número entero" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Debe ser un número positivo" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Formato de fecha incorrecto" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "En el mnsaje de registro no están permitidos los enlaces." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "id del conjunto de datos ya existe" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Recurso" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Relacionados" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Nombre o identificador de grupo desconocido." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Tipo de actividad" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Los nombres deben ser cadenas de caracteres" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Este nombre no se puede usar" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "Debe tener al menos %s caracteres de longitud" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "El nonbre no puede tener más de %i caracteres de largo" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "Debe contener solamente caracteres alfanuméricos (ascii) en minúsculas y estos símbolos: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Ese URL ya esta siendo utilizado." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "El número de caracteres del nombre \"%s\" es menor al mínimo %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "El número de caracteres del nombre \"%s\" es mayor al máximo %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "La versión debe tener como máximo %i caracteres" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Clave duplicada \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Este nombre de grupo ya existe en la base de datos" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "La longitud de la etiqueta \"%s\" es menor que el mínimo %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "La etiqueta \"%s\" es más larga que el máximo permitido %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "La etiqueta \"%s\" debe contener caracteres alfanuméricos o símbolos: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "La etiqueta \"%s\" no debe estar en mayúsculas" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Los nombres de usuarios deben ser cadenas de caracteres" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Este nombre de inicio de sesión no está disponible." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Por favor, introduzca ambas contraseñas" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Las claves deben ser cadenas de caracteres" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "La contraseña debe tener 4 caracteres o más" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Las contraseñas introducidas no coinciden" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Edición no permitida porque parece spam. Por favor evita enlaces en tu descripción." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "El nombre debe contener al menos %s caracteres" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Este nombre de vocabulario ya está en uso." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "No se puede cambiar el valor de la clave de %s a %s. Esta clave es de solo lectura." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "No se ha encontrado el vocabulario de etiquetas." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "La etiqueta %s no pertenece al vocabulario %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Falta el nombre de la etiqueta" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "La etiqueta %s ya pertenece al vocabulario %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Por favor, proporcione una URL válida" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "rol no existe." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Los conjuntos de datos sin organización no pueden ser privados." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "No es una lista" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "No es una cadena" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Este padre crearía un lazo en la jerarquía" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "\"filter_fields\" y \"filter_values\" deben tener la misma longitud" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "\"filter_fields\" es requerido cuando se ingresa \"filter_values\"" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "\"filter_values\" es requerido cuando se ingresa \"filter_fields\"" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "Existe un campo de esquema con el mismo nombre" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Crear objeto %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Crear la relación de paquete: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "API REST: Crear objecto miembro %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Intentando crear una organización como un grupo" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Debe subministrar un identificador o nombre para el paquete (parámetro \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Debe suministrar una valoración (parámetro \"rating\")" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "La valoración debe ser un valor entero." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "La valoración debe ser entre %i y %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Debe haber iniciado sesión para seguir a usuarios" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Usted no puede seguirse a sí mismo" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Usted ya está siguiendo a {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Debes haber iniciado sesión para seguir a un conjunto de datos." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "El usuario {username} no existe." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Debe haber iniciado sesión para seguir a un grupo." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Borrar paquete: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Borrar %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Borrar Miembro: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id no presente en los datos" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "No se ha encontrado el vocabulario \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "No se ha encontrado la etiqueta \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Debe haber iniciado sesión para dejar de seguir algo" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Usted no está siguiendo a {0}" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "No se ha encontrado el recurso." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "No ha especificado si quiere usar el parámetro \"query\"" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Debe ser un par : " -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "El campo \"{field}\" no se ha reconocido en resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "Usuario desconocido:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "El elemento no se ha encontrado" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "No se ha encontrado el paquete." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: actualización de objeto %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Actualizar la relación de paquetes: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "No se ha encontrado TaskStatus." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organización no encontrada." @@ -1666,7 +1576,7 @@ msgstr "Debes haber iniciado sesión para añadir un elemento relacionado" msgid "No dataset id provided, cannot check auth." msgstr "No se ingresó id del conjunto de datos, no se puede comprobar autorización." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "No se ha encontrado ningún paquete para este recurso, no se puede comprobar la autoridad." @@ -1676,94 +1586,98 @@ msgstr "No se ha encontrado ningún paquete para este recurso, no se puede compr msgid "User %s not authorized to create resources on dataset %s" msgstr "El usuario %s no está autorizado para crear recursos en el conjunto de datos %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "El usuario %s no está autorizado para editar estos paquetes" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "El usuario %s no está autorizado para crear grupos" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "El usuario %s no está autorizado para crear organizaciones" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "El usuario {user} no está autorizado a crear usuarios a través de la API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "No está autorizado a crear usuarios" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "No se ha encontrado el grupo." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Es necesaria una clave de API válida para crear un paquete" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Es necesaria una clave de API válida para crear un grupo" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "El usuario %s no está autorizado para agregar miembros" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "El usuario %s no está autorizado para editar el grupo %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "El usuario %s no está autorizado para borrar el recurso %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "Vista de recurso no encontrada, no se puede comprobar autorización." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Solo el propietario puede eliminar un elemento relacionado " -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "El usuario %s no está autorizado para eliminar la relación %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "El usuario %s no está autorizado para eliminar grupos" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "El usuario %s no está autorizado para borrar el grupo %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "El usuario %s no está autorizado para eliminar organizaciones" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "El usuario %s no está autorizado para eliminar la organización %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Usuario %s no autorizado para borrar task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "No estás autorizado" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1784,7 +1698,7 @@ msgstr "El usuario %s no está autorizado para leer el recurso %s" msgid "User %s not authorized to read group %s" msgstr "El usuario %s no está autorizado para leer el grupo %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Debe haber iniciado sesión para acceder a su panel de control." @@ -1862,63 +1776,63 @@ msgstr "Es necesaria una clave de API válida para editar un paquete" msgid "Valid API key needed to edit a group" msgstr "Es necesaria una clave de API válida para editar un grupo" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "No se especificó la licencia" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Otra (Abierta)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Otra (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Otra (Atribución)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Cualquiera)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Otra (No comercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Otra (No abierta)" @@ -2025,8 +1939,6 @@ msgstr "Confirmar" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Cancelar" @@ -2051,12 +1963,13 @@ msgstr "Enlace" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Quitar" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Imagen" @@ -2129,7 +2042,6 @@ msgstr "Reordenar vista de recurso" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2143,7 +2055,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Editar" @@ -2182,34 +2093,42 @@ msgstr "Gestionado con Site Title: This is the title of this CKAN instance It " @@ -2360,7 +2276,6 @@ msgid "" msgstr "El API de Datos es accesible a través de las siguientes acciones de la API de acción de CKAN." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Crear" @@ -2512,7 +2427,7 @@ msgstr "Seleccionar" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2545,8 +2460,6 @@ msgstr "Formulario de Grupo" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Confirmar Borrado" @@ -2564,7 +2477,7 @@ msgstr "¿Está seguro de que desea eliminar al miembro - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2709,14 +2622,12 @@ msgstr "¿Está seguro de que desea eliminar a este miembro?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Borrar" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Guardar" @@ -2804,7 +2715,6 @@ msgstr "mi-grupo" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Descripción" @@ -2865,7 +2775,7 @@ msgstr "Comparar" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2965,38 +2875,30 @@ msgstr "Etiquetas populares" msgid "{0} statistics" msgstr "{0} estadísticas" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "conjunto de datos" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "conjuntos de datos" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organización" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "Organizaciones" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "grupo" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "grupos" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "Elemento relacionado" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "Elementos relacionados" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3014,7 +2916,6 @@ msgid "Custom" msgstr "Personalizado" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "El formulario contiene entradas no válidas:" @@ -3027,7 +2928,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://ejemplo.com/mi-imagen.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL de la imagen" @@ -3072,7 +2972,7 @@ msgstr "Borrador" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3106,6 +3006,20 @@ msgstr "Buscar organizaciones" msgid "There are currently no organizations for this site" msgstr "Actualmente no existen organizaciones para este sitio" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nombre de usuario" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Dirección de correo electrónico" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Actualizar miembro" @@ -3240,7 +3154,6 @@ msgid "Preview" msgstr "Previsualización" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Actualizar" @@ -3299,7 +3212,7 @@ msgstr "Las vistas de Data Explorer pueden ser lentas y no confiables a no ser q msgid "Add" msgstr "Añade" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3331,28 +3244,32 @@ msgstr "Error en la subida:" msgid "Error:" msgstr "Error:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "Rastro del error:" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Estado" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Última actualización" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Nunca" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Log de subida" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Detalles" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Fin del log" @@ -3456,7 +3373,7 @@ msgid "unknown" msgstr "desconocido" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Creado" @@ -3492,6 +3409,10 @@ msgid "" "add some?

" msgstr "

Este conjunto de datos no tiene datos, ¿por qué no añades alguno?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API Docs" @@ -3548,7 +3469,7 @@ msgid "Version" msgstr "Versión" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Estado" @@ -3563,7 +3484,6 @@ msgstr "API de datos" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Título" @@ -3583,30 +3503,30 @@ msgstr "ej. Algunas notas útiles sobre los datos" msgid "eg. economy, mental health, government" msgstr "ej. economía, salud mental, gobierno" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Definiciones de licencias e información adicional puede ser encontrada en opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organización" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Sin organización" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Visibilidad" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Público" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Activo" @@ -3733,7 +3653,7 @@ msgstr "Explorar" msgid "More information" msgstr "Más información" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Incrustar" @@ -3819,139 +3739,6 @@ msgstr "¿Qué es una vista?" msgid "A view is a representation of the data held against a resource" msgstr "Una vista es una representación de los datos que se tienen sobre un recurso" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Formulario Relacionado" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "¿Qué son los elementos relacionados?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Medio Relacionado es cualquier aplicación, artículo, visualización o idea relacionada a este conjunto de datos.

Por ejemplo, podría ser una visualización personalizada, pictograma o diagrama de barras, una aplicación que utiliza todos o parte de los datos o incluso una noticia que hace referencia a este conjunto de datos.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "¿Está seguro de que desea eliminar el elemento relacionado - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Aplicaciones e ideas" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Mostrando elementos %(first)s - %(last)s de %(item_count)s elementos relacionados encontrados

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s elementos relacionados encontrados

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "No se han enviado aplicaciones todavía." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "¿Qué son las aplicaciones?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Estas son aplicaciones creadas con los conjuntos de datos así como también ideas para cosas que se podrían hacer con estos." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filtrar Resultados" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtro por tipo" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Todos" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Ordenar por" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Por defecto" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Mostrar solamente elementos destacados" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Aplicar" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Editar elemento relacionado" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Editar Relacionado" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Editar elemento relacionado" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Crear un elemento relacionado" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Crear Relacionado" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Crear elemento relacionado" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Mi elemento relacionado" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://ejemplo.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://ejemplo.com/imagen.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Un poco de información acerca del elemento..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Tipo" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "¿Está seguro de que desea eliminar este elemento relacionado?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Ir a {related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "Diferencias" @@ -4039,7 +3826,6 @@ msgid "There are no {facet_type} that match this search" msgstr "No hay {facet_type} que coincidan con esta búsqueda" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Inicio" @@ -4048,7 +3834,7 @@ msgid "Language" msgstr "Idioma" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4080,21 +3866,25 @@ msgstr "Todavía no existen aplicaciones, ideas, noticias o imágenes que se hay msgid "Add Item" msgstr "Agregar Elemento" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Enviar" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Ordenar por" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtrar Resultados" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Por favor intente otra búsqueda.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4169,7 +3959,7 @@ msgid "Subscribe" msgstr "Suscribir" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4188,10 +3978,6 @@ msgstr "Cambios" msgid "Search Tags" msgstr "Buscar Etiquetas" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Pizarra" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Feed de Noticias" @@ -4255,36 +4041,27 @@ msgstr "Su perfil le permite a otros usuarios de CKAN conocer acerca de usted y msgid "Change details" msgstr "Cambie sus detalles" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nombre de usuario" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Nombre completo" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "ej: Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "ej: joe@ejemplo.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Un poco de información acerca de Usted" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Suscribirse a emails de notificación" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Cambia tu contraseña" @@ -4517,15 +4294,15 @@ msgstr "Sin actualizar aún" msgid "DataStore resource not found" msgstr "No se ha encontrado el recurso." -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "Los datos fueron inválidos (por ejemplo: un valor numérico estuvo fuera de rango o fue insertado en un campo de texto)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Recurso \"{0}\" no fue encontrado." @@ -4533,6 +4310,14 @@ msgstr "Recurso \"{0}\" no fue encontrado." msgid "User {0} not authorized to update resource {1}" msgstr "El usuario {0} no está autorizado para actualizar el recurso {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conjuntos de datos por página" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configuración de prueba" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "Campo Personalizado Ascendente" @@ -4559,6 +4344,10 @@ msgstr "Código de País" msgid "custom resource text" msgstr "texto personalizado de recurso" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Este texto no está traducido" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4574,67 +4363,27 @@ msgstr "URL de la imagen" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "ej: http://example.com/image.jpg (si el blanco utiliza la url del recurso)" +msgstr "ej: http://example.com/image.jpg (si está en blanco utiliza la url del recurso)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "Explorador de Datos" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "Tabla" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "Gráfico" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "Mapa" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Derechos Reservados (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid ⏎\n⏎\nSe autoriza por la presente, de forma gratuita, a cualquier⏎\npersona que haya obtenido una copia de este software y⏎\narchivos asociados de documentación (el \"Software\"), para tratar en el⏎\nSoftware sin restricción, incluyendo sin ninguna limitación en lo que concierne⏎\nlos derechos para usar, copiar, modificar, fusionar, publicar,⏎\ndistribuir, sublicenciar, y/o vender copias de este⏎\nSoftware, y para permitir a las personas a las que se les proporcione el Software para⏎\nhacer lo mismo, sujeto a las siguientes condiciones:⏎\n⏎\nEl aviso de copyright anterior y este aviso de permiso⏎\ntendrá que ser incluido en todas las copias o partes sustanciales de⏎\neste Software.⏎\n⏎\nEL SOFTWARE SE ENTREGA \"TAL CUAL\", SIN GARANTÍA DE NINGÚN⏎\nTIPO, EXPRESA O IMPLÍCITA, INCLUYENDO PERO SIN LIMITARSE A GARANTÍAS DE⏎\nMERCANTIBILIDAD, CAPACIDAD DE HACER Y DE NO INFRACCIÓN DE COPYRIGHT. EN NINGÚN⏎\nCASO LOS AUTORES O TITULARES DEL COPYRIGHT SERÁN RESPONSABLES DE⏎\nNINGUNA RECLAMACIÓN, DAÑOS U OTRAS RESPONSABILIDADES,⏎\nYA SEA EN UN LITIGIO, AGRAVIO O DE OTRO MODO,⏎\nDERIVADAS DE, OCASIONADAS POR CULPA DE O EN CONEXION CON EL⏎\nSOFTWARE O SU USO U OTRO TIPO DE ACCIONES EN EL SOFTWARE.⏎" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Esta versión compilada de SlickGrid se obtuvo con el Compilador Google⏎\nClosure, utilizando el siguiente comando:⏎\n⏎\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js⏎\n⏎\nExisten otros dos archivos requeridos para que la vista SlickGrid funcione adecuadamente:⏎\n⏎\n* jquery-ui-1.8.16.custom.min.js ⏎\n* jquery.event.drag-2.0.min.js⏎\n⏎\nEstos están incluidos en el código fuente Recline, pero no han sido incluidos en el⏎\narchivo creado para facilitar el manejo de problemas de compatibilidad.⏎\n⏎\nPor favor revise la licencia de SlickGrid incluida en el archivo MIT-LICENSE.txt.⏎\n⏎\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "error cargando la vista" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4693,7 +4442,6 @@ msgid "Cluster markers" msgstr "Marcadores de cluster" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Número total de conjuntos de datos" @@ -4721,33 +4469,27 @@ msgstr "Nuevos conjuntos de datos" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Conjuntos de datos mejor valorados" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Valoración promedio" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Número de valoraciones" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Ninguna valoración" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Conjuntos de datos más editados" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Número de ediciones" @@ -4757,12 +4499,10 @@ msgstr "No existen conjuntos de datos editados" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Grupos más grandes" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Número de conjuntos de datos" @@ -4772,7 +4512,6 @@ msgstr "No existen grupos" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Tags preferidos" @@ -4787,8 +4526,8 @@ msgstr "Número de Conjuntos de Datos" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Usuarios con más Conjuntos de Datos" +msgid "Users Creating Most Datasets" +msgstr "Usuarios que han creado más conjuntos de datos" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4798,42 +4537,16 @@ msgstr "Menú de Estadísticas" msgid "Total Number of Datasets" msgstr "Número Total de Conjuntos de Datos" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Estadísticas" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Revisiones a los conjuntos de datos por semana" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Usuarios con más conjuntos de datos" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Página actualizada por última vez:" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Texto" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Clasificación - Estadísticas" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Clasificación para el conjunto de datos" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Selecciona un atributo de los conjuntos de datos y descubre cuales son las categorias en este área que tienen el mayor número de conjuntos de datos. Por ejemplo: etiquetas, grupos, licencia, res_format, país." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Selecciona un área" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "Se ha producido un error: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "Sitio web" @@ -4843,4 +4556,4 @@ msgstr "Url de página web" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "ej: http://example.com (si el blanco usa la url del recurso)" +msgstr "ej: http://example.com (si está en blanco usa la url del recurso)" diff --git a/ckan/i18n/es_AR/LC_MESSAGES/ckan.mo b/ckan/i18n/es_AR/LC_MESSAGES/ckan.mo index f814482dae2..d75c3b26101 100644 Binary files a/ckan/i18n/es_AR/LC_MESSAGES/ckan.mo and b/ckan/i18n/es_AR/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/es_AR/LC_MESSAGES/ckan.po b/ckan/i18n/es_AR/LC_MESSAGES/ckan.po index 85071c1e59a..7dfbae45645 100644 --- a/ckan/i18n/es_AR/LC_MESSAGES/ckan.po +++ b/ckan/i18n/es_AR/LC_MESSAGES/ckan.po @@ -3,256 +3,259 @@ # This file is distributed under the same license as the ckan project. # # Translators: +# Carlos Brys , 2015 +# Nacho, 2015 +# Ignacio L'Episcopo, 2015 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/ckan/language/es_AR/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-10 14:30+0000\n" +"Last-Translator: Carlos Brys \n" +"Language-Team: Spanish (Argentina) (http://www.transifex.com/okfn/ckan/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" -msgstr "" +msgstr "Función de autorización no encontrada: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" -msgstr "" +msgstr "Administrador" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" -msgstr "" +msgstr "Editor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" -msgstr "" +msgstr "Miembro" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" -msgstr "" +msgstr "Se necesita ser administrador del sistema para administrar" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" -msgstr "" +msgstr "Título del Sitio" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" -msgstr "" +msgstr "Estilo" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" -msgstr "" +msgstr "Lema del sitio" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" -msgstr "" +msgstr "Etiqueta del logotipo del sitio" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" -msgstr "" +msgstr "Acerca de" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" -msgstr "" +msgstr "Texto de la página acerca de" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" -msgstr "" +msgstr "Texto introductorio" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" -msgstr "" +msgstr "Texto en la página principal" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" -msgstr "" +msgstr "CSS personalizado" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" -msgstr "" +msgstr "CSS personalizable insertado en el encabezado de la página" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" -msgstr "" +msgstr "Página de inicio" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" -msgstr "" +msgstr "No se puede purgar el paquete %s como revisión asociada %s incluye paquetes no eliminados %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" -msgstr "" +msgstr "Problema purgando la revisión %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" -msgstr "" +msgstr "Purga completa" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." -msgstr "" +msgstr "Acción no implementada." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" -msgstr "" +msgstr "No estás autorizado para ver esta página" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" -msgstr "" +msgstr "Acceso denegado" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" -msgstr "" +msgstr "No encontrado" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" -msgstr "" +msgstr "Solicitud incorrecta" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" -msgstr "" +msgstr "Nombre de la acción desconocida: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" -msgstr "" +msgstr "Error JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" -msgstr "" +msgstr "Solicitud de datos incorrecta: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" -msgstr "" +msgstr "No se puede listar la entidad de este tipo: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" -msgstr "" +msgstr "No se puede leer la entidad de este tipo: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" -msgstr "" +msgstr "No se puede crear una entidad nueva de este tipo: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" -msgstr "" +msgstr "No se puede agregar el paquete al índice de búsqueda" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" -msgstr "" +msgstr "No se puede actualizar la entidad de este tipo: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" -msgstr "" +msgstr "No se puede actualizar el índice de búsqueda" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" -msgstr "" +msgstr "No se puede eliminar la entidad de este tipo: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" -msgstr "" +msgstr "No hay una revisión especificada" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" -msgstr "" +msgstr "No hay ninguna revisión con la identificación: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" +msgstr "Término de búsqueda faltante ('since_id=UUID' o 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" -msgstr "" +msgstr "No se puede leer los parámetros: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" -msgstr "" +msgstr "Opción de búsqueda errónea: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" -msgstr "" +msgstr "Registro desconocido: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" -msgstr "" +msgstr "Valor de qjson malformado: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." -msgstr "" - -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +msgstr "Los parámetros requeridos deben estar en forma de un diccionario en código json." + +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" -msgstr "" +msgstr "Grupo no encontrado" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Organización no encontrada" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" -msgstr "" +msgstr "Tipo de grupo incorrecto" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" -msgstr "" +msgstr "No estás autorizado para leer el grupo %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -261,896 +264,817 @@ msgstr "" #: ckan/templates/organization/read_base.html:6 #: ckan/templates/package/base.html:14 msgid "Organizations" -msgstr "" +msgstr "Organizaciones" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" -msgstr "" +msgstr "Grupos" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 #: ckan/templates/tag/index.html:12 msgid "Tags" -msgstr "" +msgstr "Etiquetas" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" -msgstr "" +msgstr "Formatos" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" -msgstr "" +msgstr "Licencias" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" -msgstr "" +msgstr "No autorizado para realizar una actualización masiva" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" -msgstr "" +msgstr "No estás autorizado para crear un grupo" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" -msgstr "" +msgstr "El usuario %r no está autorizado para editar %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" -msgstr "" +msgstr "Error de integridad" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" -msgstr "" +msgstr "El usuario %r no está autorizado para editar %s autorizaciones" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" -msgstr "" +msgstr "No estás autorizado para eliminar el grupo %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." -msgstr "" +msgstr "La organización ha sido eliminada." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." -msgstr "" +msgstr "El grupo ha sido eliminado." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s ha sido eliminado." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" -msgstr "" +msgstr "No estás autorizado para agregar miembros al grupo %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" -msgstr "" +msgstr "No estás autorizado para eliminar miembros del grupo %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." -msgstr "" +msgstr "Miembro del grupo ha sido eliminado." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." -msgstr "" +msgstr "Selecciona dos revisiones antes de hacer la comparación." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" -msgstr "" +msgstr "El usuario %r no está autorizado para editar %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" -msgstr "" +msgstr "Historial de Revisión Grupo CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " -msgstr "" +msgstr "Cambios recientes al grupo CKAN:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " -msgstr "" +msgstr "Mensaje del log:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" -msgstr "" +msgstr "No estás autorizado a leer el grupo {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" -msgstr "" +msgstr "Ahora estás siguiendo a {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" -msgstr "" +msgstr "Ya no estás siguiendo a {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" -msgstr "" +msgstr "No estás autorizado para ver seguidores %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." -msgstr "" +msgstr "Este sitio actualmente está fuera de línea. La base de datos no está inicializada." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " -msgstr "" +msgstr "Actualiza tu perfil y añade tu dirección de correo electrónico." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "" +msgstr "%s utiliza tu correo electrónico si necesitas restablecer tu contraseña." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +msgstr "Parámetro \"{parameter_name}\" no es un entero" + +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" -msgstr "" +msgstr "No se encontró el conjunto de datos" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" -msgstr "" +msgstr "No estás autorizado a leer el paquete %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" -msgstr "" +msgstr "Formato de revisión inválido: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." -msgstr "" +msgstr "La visualización de los conjuntos de datos {package_type} en formato {format} no está soportada (No se encontró el archivo de plantilla {file})." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" -msgstr "" +msgstr "Historial de revisión del conjunto de datos CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " -msgstr "" +msgstr "Cambios recientes al conjunto de datos CKAN" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" -msgstr "" +msgstr "No estás autorizado para crear crear el paquete" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" -msgstr "" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +msgstr "No estás autorizado a editar este recurso" + +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" -msgstr "" +msgstr "No se encontró el recurso " -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" -msgstr "" +msgstr "No estás autorizado para actualizar el conjunto de datos" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." -msgstr "" +msgstr "El conjunto de datos {id} no pudo ser encontrado." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" -msgstr "" +msgstr "Debes añadir al menos un recurso de datos" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" -msgstr "" +msgstr "Error" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" -msgstr "" +msgstr "No estás autorizado a crear un recurso" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "No estás autorizado para crear un recurso para este paquete" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." -msgstr "" +msgstr "No se puede agregar el paquete al índice de búsqueda." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." -msgstr "" +msgstr "No se puede actualizar el índice de búsqueda." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "El conjunto de datos ha sido eliminado." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" -msgstr "" +msgstr "No estás autorizado a eliminar el paquete %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." -msgstr "" +msgstr "El recurso ha sido eliminado" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" -msgstr "" +msgstr "No estás autorizado a eliminar el recurso %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" -msgstr "" +msgstr "No estás autorizado a leer el conjunto de datos %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "No se encontró la vista del recurso" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" -msgstr "" +msgstr "No estás autorizado para leer el recurso %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" -msgstr "" +msgstr "No se encontraron los datos del recurso" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" -msgstr "" +msgstr "No hay descargas disponibles" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "No estás autorizado para editar recurso" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "No se encontró la vista" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "No estás autorizado para ver la Vista %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "No se encontró el tipo de Vista " -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Datos de vista de recurso no adecuados" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "No estás autorizado para leer recurso de vista %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "No se proporcionó la vista de recurso" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." -msgstr "" - -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" +msgstr "No se ha definido una previsualización." #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" -msgstr "" +msgstr "Historial de revisiones del repositorio CKAN" #: ckan/controllers/revision.py:44 msgid "Recent changes to the CKAN repository." -msgstr "" +msgstr "Cambios recientes del repositorio CKAN" #: ckan/controllers/revision.py:108 #, python-format msgid "Datasets affected: %s.\n" -msgstr "" +msgstr "Conjuntos de datos afectados: %s.\n" #: ckan/controllers/revision.py:188 msgid "Revision updated" -msgstr "" +msgstr "Revisión actualizada" #: ckan/controllers/tag.py:56 msgid "Other" -msgstr "" +msgstr "Otro" #: ckan/controllers/tag.py:70 msgid "Tag not found" -msgstr "" +msgstr "Etiqueta no encontrada" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" -msgstr "" +msgstr "Usuario no encontrado" #: ckan/controllers/user.py:149 msgid "Unauthorized to register as a user." -msgstr "" +msgstr "No estás autorizado para crear un usuario" #: ckan/controllers/user.py:166 msgid "Unauthorized to create a user" -msgstr "" +msgstr "No estás autorizado para crear un usuario" #: ckan/controllers/user.py:197 msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" +msgstr "No estás autorizado a eliminar el usuario con id \"{user_id}\"." #: ckan/controllers/user.py:211 ckan/controllers/user.py:270 msgid "No user specified" -msgstr "" +msgstr "No se ha especificado ningún usuario" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" -msgstr "" +msgstr "No estás autorizado para editar el usuario %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" -msgstr "" +msgstr "Perfil actualizado" #: ckan/controllers/user.py:232 #, python-format msgid "Unauthorized to create user %s" -msgstr "" +msgstr "No estás autorizado para crear el usuario %s" #: ckan/controllers/user.py:238 msgid "Bad Captcha. Please try again." -msgstr "" +msgstr "Captcha erróneo. Inténtalo de nuevo." #: ckan/controllers/user.py:255 #, python-format msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" -msgstr "" +msgstr "El usuario \"%s\" ha sido registrado, pero aún tienes la sesión iniciada como \"%s\"" #: ckan/controllers/user.py:276 msgid "Unauthorized to edit a user." -msgstr "" +msgstr "No estás autorizado para editar un usuario" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" -msgstr "" +msgstr "El usuario %s no está autorizado para editar %s" + +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "La contraseña introducida no es correcta" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Contraseña anterior" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "Contraseña incorrecta" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." -msgstr "" +msgstr "No se ha podido iniciar sesión. Nombre de usuario o contraseña incorrectos." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." -msgstr "" +msgstr "No estás autorizado a restablecer la contraseña." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" -msgstr "" +msgstr "\"%s\" coincide con varios usuarios" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" -msgstr "" +msgstr "No existe el usuario: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." -msgstr "" +msgstr "Revisa tu bandeja de entrada para el código de restablecimiento." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" -msgstr "" +msgstr "No se pudo enviar el enlace de restablecimiento: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." -msgstr "" +msgstr "No estás autorizado a restablecer la contraseña." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." -msgstr "" +msgstr "Clave de restablecimiento no válida. Inténtalo de nuevo." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." -msgstr "" +msgstr "Se ha restablecido tu contraseña." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." -msgstr "" +msgstr "La contraseña debe tener 4 caracteres o más." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." -msgstr "" +msgstr "Las contraseñas introducidas no coinciden." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" -msgstr "" +msgstr "Debes proporcionar una contraseña" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" -msgstr "" +msgstr "Elemento siguiente no encontrado" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" -msgstr "" +msgstr "{0} no encontrado" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" -msgstr "" +msgstr "No autorizado a leer {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" -msgstr "" +msgstr "Todo" #: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 msgid "Missing Value" -msgstr "" +msgstr "Falta el valor" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "No se permite redirección a sitio externo." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" +msgstr "{actor} ha añadido la etiqueta {tag} al conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:67 msgid "{actor} updated the group {group}" -msgstr "" +msgstr "{actor} actualizó el grupo {group}" #: ckan/lib/activity_streams.py:70 msgid "{actor} updated the organization {organization}" -msgstr "" +msgstr "{actor} actualizó la organización {organization}" #: ckan/lib/activity_streams.py:73 msgid "{actor} updated the dataset {dataset}" -msgstr "" +msgstr "{actor} actualizó el conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:76 msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" +msgstr "{actor} actualizó los extra {extra} del conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:79 msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" +msgstr "{actor} actualizó el recurso {resource} en el conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:82 msgid "{actor} updated their profile" -msgstr "" +msgstr "{actor} actualizó su perfil" #: ckan/lib/activity_streams.py:86 msgid "" "{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" +msgstr "{actor} actualizó el {related_type} {related_item} del conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:89 msgid "{actor} updated the {related_type} {related_item}" -msgstr "" +msgstr "{actor} actualizón {related_type} {related_item}" #: ckan/lib/activity_streams.py:92 msgid "{actor} deleted the group {group}" -msgstr "" +msgstr "{actor} borró el grupo {group}" #: ckan/lib/activity_streams.py:95 msgid "{actor} deleted the organization {organization}" -msgstr "" +msgstr "{actor} borró la organización {organization}" #: ckan/lib/activity_streams.py:98 msgid "{actor} deleted the dataset {dataset}" -msgstr "" +msgstr "{actor} borró el conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:101 msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" +msgstr "{actor} eliminó el extra {extra} del conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:104 msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" +msgstr "{actor} borró el recurso {resource} del conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:108 msgid "{actor} created the group {group}" -msgstr "" +msgstr "{actor} creó el grupo {group}" #: ckan/lib/activity_streams.py:111 msgid "{actor} created the organization {organization}" -msgstr "" +msgstr "{actor} creó la organización {organization}" #: ckan/lib/activity_streams.py:114 msgid "{actor} created the dataset {dataset}" -msgstr "" +msgstr "{actor} creó el conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:117 msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" +msgstr "{actor} agregó el extra {extra} al conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:120 msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" +msgstr "{actor} agregó el recurso {resource} al conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:123 msgid "{actor} signed up" -msgstr "" +msgstr "{actor} se registró" #: ckan/lib/activity_streams.py:126 msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" +msgstr "{actor} eliminó la etiqueta {tag} del conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:129 msgid "{actor} deleted the related item {related_item}" -msgstr "" +msgstr "{actor} eliminó el elemento relacionado {related_item}" #: ckan/lib/activity_streams.py:132 msgid "{actor} started following {dataset}" -msgstr "" +msgstr "{actor} comenzó a seguir {dataset}" #: ckan/lib/activity_streams.py:135 msgid "{actor} started following {user}" -msgstr "" +msgstr "{actor} comenzó a seguir a {user}" #: ckan/lib/activity_streams.py:138 msgid "{actor} started following {group}" -msgstr "" +msgstr "{actor} comenzó a seguir a {group}" #: ckan/lib/activity_streams.py:142 msgid "" "{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" +msgstr "{actor} actualizó el {related_type} {related_item} del conjunto de datos {dataset}" #: ckan/lib/activity_streams.py:145 msgid "{actor} added the {related_type} {related_item}" -msgstr "" +msgstr "{actor} actualizó {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 msgid "View" -msgstr "" +msgstr "Ver" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{n} nueva actividad en {site_title}" +msgstr[1] "{n} nuevas actividades en {site_title}" #: ckan/lib/formatters.py:17 msgid "January" -msgstr "" +msgstr "Enero" #: ckan/lib/formatters.py:21 msgid "February" -msgstr "" +msgstr "Febrero" #: ckan/lib/formatters.py:25 msgid "March" -msgstr "" +msgstr "Marzo" #: ckan/lib/formatters.py:29 msgid "April" -msgstr "" +msgstr "Abril" #: ckan/lib/formatters.py:33 msgid "May" -msgstr "" +msgstr "Mayo" #: ckan/lib/formatters.py:37 msgid "June" -msgstr "" +msgstr "Junio" #: ckan/lib/formatters.py:41 msgid "July" -msgstr "" +msgstr "Julio" #: ckan/lib/formatters.py:45 msgid "August" -msgstr "" +msgstr "Agosto" #: ckan/lib/formatters.py:49 msgid "September" -msgstr "" +msgstr "Septiembre" #: ckan/lib/formatters.py:53 msgid "October" -msgstr "" +msgstr "Octubre" #: ckan/lib/formatters.py:57 msgid "November" -msgstr "" +msgstr "Noviembre" #: ckan/lib/formatters.py:61 msgid "December" -msgstr "" +msgstr "Diciembre" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" -msgstr "" +msgstr "Justo ahora" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "hace {mins} minuto" +msgstr[1] "hace {mins} minutos " -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "hace {hours} hora" +msgstr[1] "hace {hours} horas" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "hace {days} día" +msgstr[1] "hace {days} días" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Hace {months} mes" +msgstr[1] "Hace {months} meses" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "hace {years} año" +msgstr[1] "hace {years} años" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" -msgstr "" +msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" -msgstr "" +msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" -msgstr "" +msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" -msgstr "" +msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" -msgstr "" +msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" -msgstr "" +msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" -msgstr "" +msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" -msgstr "" +msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" -msgstr "" +msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" -msgstr "" +msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" -msgstr "" +msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" -msgstr "" +msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" -msgstr "" +msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" -msgstr "" +msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" -msgstr "" +msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" -msgstr "" +msgstr "Actualiza tu avatar en gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" -msgstr "" +msgstr "Desconocido" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" -msgstr "" +msgstr "Recurso sin nombre" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." -msgstr "" +msgstr "Nuevo conjuto de datos creado." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." -msgstr "" +msgstr "Recursos editados." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." -msgstr "" +msgstr "Opciones editadas." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} vista" +msgstr[1] "{number} vistas" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} vista reciente" +msgstr[1] "{number} vistas recientes" #: ckan/lib/mailer.py:25 #, python-format msgid "Dear %s," -msgstr "" +msgstr "Estimad@ %s," #: ckan/lib/mailer.py:38 #, python-format msgid "%s <%s>" -msgstr "" +msgstr "%s <%s>" #: ckan/lib/mailer.py:99 msgid "No recipient email address available!" -msgstr "" +msgstr "¡No está disponible la dirección de correo electrónico del destinatario!" #: ckan/lib/mailer.py:104 msgid "" @@ -1159,25 +1083,25 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Has solicitado restablecer tu contraseña en {site_title}.\n\nHaz click en el siguiente enlace para confirmar esta solicitud:\n\n{reset_link}\n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Has sido invitado a {site_title}. Un usuario ya se ha creado para ti con el nombre de usuario {user_name}. Puedes cambiarlo después\n\nPara aceptar esta invitación, restablece tu contraseña en:\n\n{reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 msgid "Reset your password" -msgstr "" +msgstr "Restablecer tu contraseña" #: ckan/lib/mailer.py:151 msgid "Invite for {site_title}" -msgstr "" +msgstr "Invitar a {site_title}" #: ckan/lib/navl/dictization_functions.py:11 #: ckan/lib/navl/dictization_functions.py:13 @@ -1188,20 +1112,20 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" -msgstr "" +msgstr "Falta el valor" #: ckan/lib/navl/validators.py:64 #, python-format msgid "The input field %(name)s was not expected." -msgstr "" +msgstr "No se esperaba el campo %(name)s." #: ckan/lib/navl/validators.py:116 msgid "Please enter an integer value" -msgstr "" +msgstr "Introduce un valor entero" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1209,754 +1133,746 @@ msgstr "" #: ckan/templates/snippets/context/dataset.html:13 #: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 msgid "Resources" -msgstr "" +msgstr "Recursos" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" -msgstr "" +msgstr "Recurso(s) del paquete invalido(s)" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" -msgstr "" +msgstr "Extras" #: ckan/logic/converters.py:72 ckan/logic/converters.py:87 #, python-format msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" +msgstr "El vocabulario de etiquetas \"%s\" no existe" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" -msgstr "" +msgstr "Usuario" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" -msgstr "" +msgstr "Conjunto de datos" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" -msgstr "" +msgstr "Grupo" #: ckan/logic/converters.py:178 msgid "Could not parse as valid JSON" -msgstr "" +msgstr "No se puede parsear como un JSON válido" #: ckan/logic/validators.py:30 ckan/logic/validators.py:39 msgid "A organization must be supplied" -msgstr "" +msgstr "Se debe proporcionar una organización" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" -msgstr "" +msgstr "Organización no existe" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" -msgstr "" +msgstr "No es posible agregar un conjunto de datos a esta organización" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" -msgstr "" +msgstr "Entero no válido" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" -msgstr "" +msgstr "Debe ser un número entero" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" -msgstr "" +msgstr "Debe ser un número positivo" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" -msgstr "" +msgstr "Formato de fecha incorrecto" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." -msgstr "" +msgstr "En el log_message no están permitidos los enlaces." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "id del conjunto de datos ya existe" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" -msgstr "" +msgstr "Recurso" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" -msgstr "" +msgstr "Relacionados" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." -msgstr "" +msgstr "Nombre o identificador de grupo desconocido." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" -msgstr "" +msgstr "Tipo de actividad" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" -msgstr "" +msgstr "Los nombres deben ser cadenas de caracteres" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" -msgstr "" +msgstr "Este nombre no se puede usar" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Debe tener al menos %s caracteres de longitud" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" -msgstr "" +msgstr "El nonbre no puede tener más de %i caracteres de largo" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "Debe contener solamente caracteres alfanuméricos (ascii) en minúsculas y estos símbolos: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." -msgstr "" +msgstr "Ese URL ya esta siendo utilizado." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" -msgstr "" +msgstr "El número de caracteres del nombre \"%s\" es menor al mínimo %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" -msgstr "" +msgstr "El número de caracteres del nombre \"%s\" es mayor al máximo %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" -msgstr "" +msgstr "La versión debe tener como máximo %i caracteres" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" -msgstr "" +msgstr "Clave duplicada \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" -msgstr "" +msgstr "Este nombre de grupo ya existe en la base de datos" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" -msgstr "" +msgstr "La longitud de la etiqueta \"%s\" es menor que el mínimo %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" +msgstr "La etiqueta \"%s\" es más larga que el máximo permitido %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" +msgstr "La etiqueta \"%s\" debe contener caracteres alfanuméricos o símbolos: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" -msgstr "" +msgstr "La etiqueta \"%s\" no debe estar en mayúsculas" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" -msgstr "" +msgstr "Los nombres de usuarios deben ser cadenas de caracteres" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." -msgstr "" +msgstr "Este nombre de inicio de sesión no está disponible." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" -msgstr "" +msgstr "Introduce ambas contraseñas" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" -msgstr "" +msgstr "Las claves deben ser cadenas de caracteres" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" -msgstr "" +msgstr "La contraseña debe tener 4 caracteres o más" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" -msgstr "" +msgstr "Las contraseñas introducidas no coinciden" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." -msgstr "" +msgstr "Edición no permitida porque parece spam. Evita enlaces en tu descripción." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" -msgstr "" +msgstr "El nombre debe contener al menos %s caracteres" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." -msgstr "" +msgstr "Este nombre de vocabulario ya está en uso." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" +msgstr "No se puede cambiar el valor de la clave de %s a %s. Esta clave es de solo lectura." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." -msgstr "" +msgstr "No se ha encontrado el vocabulario de etiquetas." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" -msgstr "" +msgstr "La etiqueta %s no pertenece al vocabulario %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" -msgstr "" +msgstr "Falta el nombre de la etiqueta" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" -msgstr "" +msgstr "La etiqueta %s ya pertenece al vocabulario %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" -msgstr "" +msgstr "Proporciona una URL válida" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." -msgstr "" +msgstr "rol no existe." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." -msgstr "" +msgstr "Los conjuntos de datos sin organización no pueden ser privados." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" -msgstr "" +msgstr "No es una lista" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" -msgstr "" +msgstr "No es una cadena" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" -msgstr "" +msgstr "Este padre crearía un lazo en la jerarquía" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "\"filter_fields\" y \"filter_values\" deben tener la misma longitud" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +msgstr "\"filter_fields\" es requerido cuando se ingresa \"filter_values\"" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "\"filter_values\" es requerido cuando se ingresa \"filter_fields\"" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "Existe un campo de esquema con el mismo nombre" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" -msgstr "" +msgstr "REST API: Crear objeto %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" -msgstr "" +msgstr "REST API: Crear la relación de paquete: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" -msgstr "" +msgstr "API REST: Crear objecto miembro %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" -msgstr "" +msgstr "Intentando crear una organización como un grupo" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" +msgstr "Debe subministrar un identificador o nombre para el paquete (parámetro \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." -msgstr "" +msgstr "Debe suministrar una valoración (parámetro \"rating\")" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." -msgstr "" +msgstr "La valoración debe ser un valor entero." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." -msgstr "" +msgstr "La valoración debe ser entre %i y %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" -msgstr "" +msgstr "Debe haber iniciado sesión para seguir a usuarios" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" -msgstr "" +msgstr "No puedes seguirte a ti mismo" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" -msgstr "" +msgstr "Ya estás siguiendo a {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." -msgstr "" +msgstr "Debes haber iniciado sesión para seguir a un conjunto de datos." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." -msgstr "" +msgstr "El usuario {username} no existe." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." -msgstr "" +msgstr "Debe haber iniciado sesión para seguir a un grupo." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" -msgstr "" +msgstr "REST API: Eliminar paquete: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" -msgstr "" +msgstr "REST API: Eliminar %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" -msgstr "" +msgstr "REST API: Eliminar Miembro: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" -msgstr "" +msgstr "id no presente en los datos" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" -msgstr "" +msgstr "No se ha encontrado el vocabulario \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" -msgstr "" +msgstr "No se ha encontrado la etiqueta \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." -msgstr "" +msgstr "Debe haber iniciado sesión para dejar de seguir algo" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." -msgstr "" +msgstr "No estás siguiendo a {0}" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." -msgstr "" +msgstr "No se ha encontrado el recurso." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" -msgstr "" +msgstr "No ha especificado si quiere usar el parámetro \"query\"" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" -msgstr "" +msgstr "Debe ser un par : " -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" +msgstr "El campo \"{field}\" no se ha reconocido en resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." -msgstr "" +msgstr "El elemento no se ha encontrado" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." -msgstr "" +msgstr "No se ha encontrado el paquete." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" -msgstr "" +msgstr "REST API: actualización de objeto %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" -msgstr "" +msgstr "REST API: Actualizar la relación de paquetes: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." -msgstr "" +msgstr "No se ha encontrado TaskStatus." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." -msgstr "" +msgstr "Organización no encontrada." #: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 #, python-format msgid "User %s not authorized to create packages" -msgstr "" +msgstr "El usuario %s no está autorizado para crear paquetes" #: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 #, python-format msgid "User %s not authorized to edit these groups" -msgstr "" +msgstr "El usuario %s no está autorizado para editar estos grupos" #: ckan/logic/auth/create.py:36 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "" +msgstr "El usuario %s no está autorizado para crear conjuntos de datos en esta organización" #: ckan/logic/auth/create.py:58 msgid "You must be a sysadmin to create a featured related item" -msgstr "" +msgstr "Debe ser administrador para crear un elemento relacionado destacado" #: ckan/logic/auth/create.py:62 msgid "You must be logged in to add a related item" -msgstr "" +msgstr "Debes haber iniciado sesión para añadir un elemento relacionado" #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "No se ingresó id del conjunto de datos, no se puede comprobar autenticación." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." -msgstr "" +msgstr "No se ha encontrado ningún paquete para este recurso, no se puede comprobar la autenticación." #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "El usuario %s no está autorizado para crear recursos en el conjunto de datos %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" -msgstr "" +msgstr "El usuario %s no está autorizado para editar estos paquetes" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" -msgstr "" +msgstr "El usuario %s no está autorizado para crear grupos" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" -msgstr "" +msgstr "El usuario %s no está autorizado para crear organizaciones" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" -msgstr "" +msgstr "El usuario {user} no está autorizado a crear usuarios a través de la API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" -msgstr "" +msgstr "No está autorizado a crear usuarios" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." -msgstr "" +msgstr "No se ha encontrado el grupo." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" -msgstr "" +msgstr "Es necesaria una clave de API válida para crear un paquete" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" -msgstr "" +msgstr "Es necesaria una clave de API válida para crear un grupo" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" -msgstr "" +msgstr "El usuario %s no está autorizado para agregar miembros" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" -msgstr "" +msgstr "El usuario %s no está autorizado para editar el grupo %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" -msgstr "" +msgstr "El usuario %s no está autorizado para eliminar el recurso %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "Vista de recurso no encontrada, no se puede comprobar autorización." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" -msgstr "" +msgstr "Solo el propietario puede eliminar un elemento relacionado " -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" -msgstr "" +msgstr "El usuario %s no está autorizado para eliminar la relación %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" -msgstr "" +msgstr "El usuario %s no está autorizado para eliminar grupos" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" -msgstr "" +msgstr "El usuario %s no está autorizado para eliminar el grupo %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" -msgstr "" +msgstr "El usuario %s no está autorizado para eliminar organizaciones" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" -msgstr "" +msgstr "El usuario %s no está autorizado para eliminar la organización %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" -msgstr "" +msgstr "Usuario %s no autorizado para eliminar task_status" + +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "No estás autorizado" #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" -msgstr "" +msgstr "El usuario %s no está autorizado para leer estos paquetes" #: ckan/logic/auth/get.py:119 #, python-format msgid "User %s not authorized to read package %s" -msgstr "" +msgstr "El usuario %s no está autorizado para leer el paquete %s" #: ckan/logic/auth/get.py:141 #, python-format msgid "User %s not authorized to read resource %s" -msgstr "" +msgstr "El usuario %s no está autorizado para leer el recurso %s" #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "El usuario %s no está autorizado para leer el grupo %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." -msgstr "" +msgstr "Tenés que iniciar sesión para acceder a tu panel de control." #: ckan/logic/auth/update.py:37 #, python-format msgid "User %s not authorized to edit package %s" -msgstr "" +msgstr "El usuario %s no está autorizado para editar el paquete %s" #: ckan/logic/auth/update.py:69 #, python-format msgid "User %s not authorized to edit resource %s" -msgstr "" +msgstr "El usuario %s no está autorizado para editar el recurso %s" #: ckan/logic/auth/update.py:98 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "" +msgstr "El usuario %s no está autorizado para cambiar el estado del paquete %s" #: ckan/logic/auth/update.py:126 #, python-format msgid "User %s not authorized to edit organization %s" -msgstr "" +msgstr "El usuario %s no está autorizado para editar la organización %s" #: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 msgid "Only the owner can update a related item" -msgstr "" +msgstr "Solo el propietario puede actualizar un elemento relacionado " #: ckan/logic/auth/update.py:148 msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" +msgstr "Debes ser administrador para cambiar un campo relacionado destacado." #: ckan/logic/auth/update.py:165 #, python-format msgid "User %s not authorized to change state of group %s" -msgstr "" +msgstr "El usuario %s no está autorizado para cambiar el estado del grupo %s" #: ckan/logic/auth/update.py:182 #, python-format msgid "User %s not authorized to edit permissions of group %s" -msgstr "" +msgstr "El usuario %s no está autorizado para editar los permisos del grupo %s" #: ckan/logic/auth/update.py:209 msgid "Have to be logged in to edit user" -msgstr "" +msgstr "Tiene que estar conectado para editar un usuario" #: ckan/logic/auth/update.py:217 #, python-format msgid "User %s not authorized to edit user %s" -msgstr "" +msgstr "El usuario %s no está autorizado para editar el usuario %s" #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "El usuario {0} no autorizado para actualizar al usuario {1}" #: ckan/logic/auth/update.py:236 #, python-format msgid "User %s not authorized to change state of revision" -msgstr "" +msgstr "El usuario %s no está autorizado para cambiar el estado de la revisión" #: ckan/logic/auth/update.py:245 #, python-format msgid "User %s not authorized to update task_status table" -msgstr "" +msgstr "El usuario %s no esta autorizado para actualizar la tabla task_status" #: ckan/logic/auth/update.py:259 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "" +msgstr "El usuario %s no está autorizado a actualizar la tabla term_translation" #: ckan/logic/auth/update.py:281 msgid "Valid API key needed to edit a package" -msgstr "" +msgstr "Es necesaria una clave de API válida para editar un paquete" #: ckan/logic/auth/update.py:291 msgid "Valid API key needed to edit a group" -msgstr "" +msgstr "Es necesaria una clave de API válida para editar un grupo" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "No se especificó la licencia" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" -msgstr "" +msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" -msgstr "" +msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" -msgstr "" +msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" -msgstr "" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" -msgstr "" +msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" -msgstr "" +msgstr "Otra (Abierta)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" -msgstr "" +msgstr "Otra (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" -msgstr "" +msgstr "Otra (Atribución)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" -msgstr "" +msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" -msgstr "" +msgstr "Creative Commons Non-Commercial (Cualquiera)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" -msgstr "" +msgstr "Otra (No comercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" -msgstr "" +msgstr "Otra (No abierta)" #: ckan/model/package_relationship.py:52 #, python-format msgid "depends on %s" -msgstr "" +msgstr "depende de %s" #: ckan/model/package_relationship.py:52 #, python-format msgid "is a dependency of %s" -msgstr "" +msgstr "es dependiente de %s" #: ckan/model/package_relationship.py:53 #, python-format msgid "derives from %s" -msgstr "" +msgstr "deriva de %s" #: ckan/model/package_relationship.py:53 #, python-format msgid "has derivation %s" -msgstr "" +msgstr "tiene un derivado en %s" #: ckan/model/package_relationship.py:54 #, python-format msgid "links to %s" -msgstr "" +msgstr "enlaza a %s" #: ckan/model/package_relationship.py:54 #, python-format msgid "is linked from %s" -msgstr "" +msgstr "enlazado desde %s" #: ckan/model/package_relationship.py:55 #, python-format msgid "is a child of %s" -msgstr "" +msgstr "es hijo de %s" #: ckan/model/package_relationship.py:55 #, python-format msgid "is a parent of %s" -msgstr "" +msgstr "es padre de %s" #: ckan/model/package_relationship.py:59 #, python-format msgid "has sibling %s" -msgstr "" +msgstr "tiene un hermano %s" #: ckan/public/base/javascript/modules/activity-stream.js:20 #: ckan/public/base/javascript/modules/popover-context.js:45 @@ -1966,45 +1882,45 @@ msgstr "" #: ckanext/reclineview/theme/templates/recline_view.html:12 #: ckanext/textview/theme/templates/text_view.html:9 msgid "Loading..." -msgstr "" +msgstr "Cargando ..." #: ckan/public/base/javascript/modules/api-info.js:20 msgid "There is no API data to load for this resource" -msgstr "" +msgstr "No existen datos de API para cargar para este recurso" #: ckan/public/base/javascript/modules/api-info.js:21 msgid "Failed to load data API information" -msgstr "" +msgstr "Falló carga de información de datos de API" #: ckan/public/base/javascript/modules/autocomplete.js:31 msgid "No matches found" -msgstr "" +msgstr "No se encontraron coincidencias" #: ckan/public/base/javascript/modules/autocomplete.js:32 msgid "Start typing…" -msgstr "" +msgstr "Comience a escribir..." #: ckan/public/base/javascript/modules/autocomplete.js:34 msgid "Input is too short, must be at least one character" -msgstr "" +msgstr "Ingreso es muy corto, debe tener al menos un caracter" #: ckan/public/base/javascript/modules/basic-form.js:4 msgid "There are unsaved modifications to this form" -msgstr "" +msgstr "Existen modificaciones no guardadas para este formulario" #: ckan/public/base/javascript/modules/confirm-action.js:7 msgid "Please Confirm Action" -msgstr "" +msgstr "Confirma la acción" #: ckan/public/base/javascript/modules/confirm-action.js:8 msgid "Are you sure you want to perform this action?" -msgstr "" +msgstr "¿Seguro de que deseas realizar esta acción?" #: ckan/public/base/javascript/modules/confirm-action.js:9 #: ckan/templates/user/new_user_form.html:9 #: ckan/templates/user/perform_reset.html:21 msgid "Confirm" -msgstr "" +msgstr "Confirmar" #: ckan/public/base/javascript/modules/confirm-action.js:10 #: ckan/public/base/javascript/modules/resource-reorder.js:11 @@ -2016,113 +1932,111 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #: ckan/public/base/javascript/modules/follow.js:23 #: ckan/templates/snippets/follow_button.html:14 msgid "Follow" -msgstr "" +msgstr "Seguir" #: ckan/public/base/javascript/modules/follow.js:24 #: ckan/templates/snippets/follow_button.html:9 msgid "Unfollow" -msgstr "" +msgstr "Dejar de seguir" #: ckan/public/base/javascript/modules/image-upload.js:15 msgid "Upload" -msgstr "" +msgstr "Subir" #: ckan/public/base/javascript/modules/image-upload.js:16 msgid "Link" -msgstr "" +msgstr "Enlace" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" -msgstr "" +msgstr "Quitar" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" -msgstr "" +msgstr "Imagen" #: ckan/public/base/javascript/modules/image-upload.js:19 msgid "Upload a file on your computer" -msgstr "" +msgstr "Subir un archivo de tu PC" #: ckan/public/base/javascript/modules/image-upload.js:20 msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" +msgstr "Enlazar a una URL de internet (también puede enlazar a una API)" #: ckan/public/base/javascript/modules/related-item.js:25 msgid "show more" -msgstr "" +msgstr "mostrar más" #: ckan/public/base/javascript/modules/related-item.js:26 msgid "show less" -msgstr "" +msgstr "mostrar menos" #: ckan/public/base/javascript/modules/resource-reorder.js:8 msgid "Reorder resources" -msgstr "" +msgstr "Reordenar recursos" #: ckan/public/base/javascript/modules/resource-reorder.js:9 #: ckan/public/base/javascript/modules/resource-view-reorder.js:9 msgid "Save order" -msgstr "" +msgstr "Guardar orden" #: ckan/public/base/javascript/modules/resource-reorder.js:10 #: ckan/public/base/javascript/modules/resource-view-reorder.js:10 msgid "Saving..." -msgstr "" +msgstr "Guardando..." #: ckan/public/base/javascript/modules/resource-upload-field.js:25 msgid "Upload a file" -msgstr "" +msgstr "Sube un archivo" #: ckan/public/base/javascript/modules/resource-upload-field.js:26 msgid "An Error Occurred" -msgstr "" +msgstr "Ocurrió un error" #: ckan/public/base/javascript/modules/resource-upload-field.js:27 msgid "Resource uploaded" -msgstr "" +msgstr "Recurso subido" #: ckan/public/base/javascript/modules/resource-upload-field.js:28 msgid "Unable to upload file" -msgstr "" +msgstr "No se pudo subir el archivo" #: ckan/public/base/javascript/modules/resource-upload-field.js:29 msgid "Unable to authenticate upload" -msgstr "" +msgstr "No se pudo autenticar subida" #: ckan/public/base/javascript/modules/resource-upload-field.js:30 msgid "Unable to get data for uploaded file" -msgstr "" +msgstr "No se pudo obtener datos para el archivo subido" #: ckan/public/base/javascript/modules/resource-upload-field.js:31 msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" -msgstr "" +msgstr "Estás subiendo un archivo. ¿Estás seguro que quieres salir y detener esta subida?" #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Reordenar vista de recurso" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" -msgstr "" +msgstr "URL" #: ckan/public/base/javascript/modules/slug-preview.js:36 #: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 @@ -2134,73 +2048,80 @@ msgstr "" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" -msgstr "" +msgstr "Editar" #: ckan/public/base/javascript/modules/table-toggle-more.js:9 msgid "Show more" -msgstr "" +msgstr "Mostrar más" #: ckan/public/base/javascript/modules/table-toggle-more.js:10 msgid "Hide" -msgstr "" +msgstr "Esconder" #: ckan/templates/error_document_template.html:3 #, python-format msgid "Error %(error_code)s" -msgstr "" +msgstr "Error %(error_code)s" #: ckan/templates/footer.html:9 msgid "About {0}" -msgstr "" +msgstr "Acerca de {0}" #: ckan/templates/footer.html:15 msgid "CKAN API" -msgstr "" +msgstr "API CKAN" #: ckan/templates/footer.html:16 msgid "Open Knowledge Foundation" -msgstr "" +msgstr "Open Knowledge Foundation" #: ckan/templates/footer.html:24 msgid "" "Powered by CKAN" -msgstr "" +msgstr "Gestionado con CKAN" #: ckan/templates/header.html:12 msgid "Sysadmin settings" -msgstr "" +msgstr "Opciones de Administrador" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" -msgstr "" +msgstr "Ver perfil" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Panel de Control (%(num)d nuevo elemento)" +msgstr[1] "Panel de Control (%(num)d nuevos elementos)" + +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Pizarra" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" -msgstr "" +msgstr "Editar opciones" + +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Configuración" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" -msgstr "" +msgstr "Salir" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" -msgstr "" +msgstr "Iniciar Sesión" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" -msgstr "" +msgstr "Registro" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2209,7 +2130,6 @@ msgstr "" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2217,70 +2137,68 @@ msgstr "" #: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 #: ckan/templates/user/read_base.html:53 msgid "Datasets" -msgstr "" +msgstr "Conjuntos de datos" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" -msgstr "" +msgstr "Buscar conjuntos de datos" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" -msgstr "" +msgstr "Búsqueda" #: ckan/templates/page.html:6 msgid "Skip to content" -msgstr "" +msgstr "Ir al contenido" #: ckan/templates/activity_streams/activity_stream_items.html:9 msgid "Load less" -msgstr "" +msgstr "Cargar menos" #: ckan/templates/activity_streams/activity_stream_items.html:17 msgid "Load more" -msgstr "" +msgstr "Cargar más" #: ckan/templates/activity_streams/activity_stream_items.html:23 msgid "No activities are within this activity stream" -msgstr "" +msgstr "No hay actividades dentro de este flujo de actividad" #: ckan/templates/admin/base.html:3 msgid "Administration" -msgstr "" +msgstr "Administración" #: ckan/templates/admin/base.html:8 msgid "Sysadmins" -msgstr "" +msgstr "Administradores" #: ckan/templates/admin/base.html:9 msgid "Config" -msgstr "" +msgstr "Configuración" #: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 msgid "Trash" -msgstr "" +msgstr "Papelera" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" -msgstr "" +msgstr "¿Seguro de que deseas restablecer la configuración?" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" -msgstr "" +msgstr "Restablecer" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" -msgstr "" +msgstr "Actualizar Configuración" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" -msgstr "" +msgstr "Opciones de configuración de CKAN" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2298,16 +2216,16 @@ msgid "" "target=\"_blank\">reading the documentation.

" "

Homepage: This is for choosing a predefined layout for " "the modules that appear on your homepage.

" -msgstr "" +msgstr "

Título del Sitio: Este es el título de esta instancia de CKAN. Se muestra en varios lugares dentro de CKAN.

Estilo: Escoja de una lista de sencillas variaciones del esquema principal de colores para obtener un tema personalizado funcionando rápidamente.

Logo de la Etiqueta del Sitio: Este es el logo que aparece en la cabecera de todas las plantillas de la instancia de CKAN.

Acerca de: Este texto aparecerá en la página acerca de de esta instancia de CKAN.

Texto de Introducción: Este texto aparecerá en la página de inicio de esta instancia CKAN como una bienvenida a los visitantes.

CSS Personalizado: Este es el bloque de código CSS que aparece en la etiqueta <head> de cada página. Si deseas personalizar las plantillas de manera más profunda le recomendamos leer la documentación.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 msgid "Confirm Reset" -msgstr "" +msgstr "Confirma Restablecer" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Administrar CKAN" #: ckan/templates/admin/index.html:20 #, python-format @@ -2315,163 +2233,162 @@ msgid "" "

As a sysadmin user you have full control over this CKAN instance. " "Proceed with care!

For guidance on using sysadmin features, see the " "CKAN sysadmin guide

" -msgstr "" +msgstr "

Como usuario administrador del sistema tiene total control sobre esta instancia de CKAN. ¡Proceda con cuidado!

Para guía sobre el uso de las características de los usuarios a administradores, ver la guía de usuarios administradores de sistema de CKAN

" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Purgar" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "

Purgar los conjuntos de datos eliminados para siempre y de forma irreversible.

" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" -msgstr "" +msgstr "API de datos" #: ckan/templates/ajax_snippets/api_info.html:23 msgid "Access resource data via a web API with powerful query support" -msgstr "" +msgstr "Acceso al recurso de datos mediante una API web con servicio de consulta completo" #: ckan/templates/ajax_snippets/api_info.html:24 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +msgstr "Más información en la documentación del API de Datos principal y del DataStore de CKAN.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" -msgstr "" +msgstr "Punto de acceso API" #: ckan/templates/ajax_snippets/api_info.html:37 msgid "" "The Data API can be accessed via the following actions of the CKAN action " "API." -msgstr "" +msgstr "El API de Datos es accesible a través de las siguientes acciones de la API de acción de CKAN." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" -msgstr "" +msgstr "Crear" #: ckan/templates/ajax_snippets/api_info.html:46 msgid "Update / Insert" -msgstr "" +msgstr "Actualizar / Insertar" #: ckan/templates/ajax_snippets/api_info.html:50 msgid "Query" -msgstr "" +msgstr "Consulta" #: ckan/templates/ajax_snippets/api_info.html:54 msgid "Query (via SQL)" -msgstr "" +msgstr "Consulta (vía SQL)" #: ckan/templates/ajax_snippets/api_info.html:66 msgid "Querying" -msgstr "" +msgstr "Consultando" #: ckan/templates/ajax_snippets/api_info.html:70 msgid "Query example (first 5 results)" -msgstr "" +msgstr "Ejemplo de consulta (primeros cinco resultados)" #: ckan/templates/ajax_snippets/api_info.html:75 msgid "Query example (results containing 'jones')" -msgstr "" +msgstr "Consulta ejemplo (resultados que contienen 'jones')" #: ckan/templates/ajax_snippets/api_info.html:81 msgid "Query example (via SQL statement)" -msgstr "" +msgstr "Consulta ejemplo (vía sentencia SQL)" #: ckan/templates/ajax_snippets/api_info.html:93 msgid "Example: Javascript" -msgstr "" +msgstr "Ejemplo: Javascript" #: ckan/templates/ajax_snippets/api_info.html:97 msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" +msgstr "Una simple consulta ajax (JSONP) a la data API usando jQuery." #: ckan/templates/ajax_snippets/api_info.html:118 msgid "Example: Python" -msgstr "" +msgstr "Ejemplo: Python" #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." -msgstr "" +msgstr "Este recurso no puede ser previsualizado en este momento." #: ckan/templates/dataviewer/snippets/data_preview.html:11 #: ckan/templates/package/resource_read.html:118 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." -msgstr "" +msgstr "Haga click aquí para más información." #: ckan/templates/dataviewer/snippets/data_preview.html:18 #: ckan/templates/package/snippets/resource_view.html:33 msgid "Download resource" -msgstr "" +msgstr "Descargar recurso" #: ckan/templates/dataviewer/snippets/data_preview.html:23 #: ckan/templates/package/snippets/resource_view.html:56 #: ckanext/webpageview/theme/templates/webpage_view.html:2 msgid "Your browser does not support iframes." -msgstr "" +msgstr "Tu navegador no soporta iframes." #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." -msgstr "" +msgstr "No está disponible la vista preliminar." #: ckan/templates/dataviewer/snippets/no_preview.html:5 msgid "More details..." -msgstr "" +msgstr "Más detalles..." #: ckan/templates/dataviewer/snippets/no_preview.html:12 #, python-format msgid "No handler defined for data type: %(type)s." -msgstr "" +msgstr "No se ha definido controlador para el tipo de dato: %(type)s." #: ckan/templates/development/snippets/form.html:5 msgid "Standard" -msgstr "" +msgstr "Estándar" #: ckan/templates/development/snippets/form.html:5 msgid "Standard Input" -msgstr "" +msgstr "Ingreso Estándar" #: ckan/templates/development/snippets/form.html:6 msgid "Medium" -msgstr "" +msgstr "Mediano" #: ckan/templates/development/snippets/form.html:6 msgid "Medium Width Input" -msgstr "" +msgstr "Ingreso de ancho mediano" #: ckan/templates/development/snippets/form.html:7 msgid "Full" -msgstr "" +msgstr "Completo" #: ckan/templates/development/snippets/form.html:7 msgid "Full Width Input" -msgstr "" +msgstr "Ingreso de ancho completo" #: ckan/templates/development/snippets/form.html:8 msgid "Large" -msgstr "" +msgstr "Largo" #: ckan/templates/development/snippets/form.html:8 msgid "Large Input" -msgstr "" +msgstr "Ingreso Largo" #: ckan/templates/development/snippets/form.html:9 msgid "Prepend" -msgstr "" +msgstr "Anteponer" #: ckan/templates/development/snippets/form.html:9 msgid "Prepend Input" -msgstr "" +msgstr "Anteponer ingreso" #: ckan/templates/development/snippets/form.html:13 msgid "Custom Field (empty)" -msgstr "" +msgstr "Campo Personalizado (vacío)" #: ckan/templates/development/snippets/form.html:19 #: ckan/templates/group/snippets/group_form.html:35 @@ -2481,19 +2398,19 @@ msgstr "" #: ckan/templates/snippets/custom_form_fields.html:20 #: ckan/templates/snippets/custom_form_fields.html:37 msgid "Custom Field" -msgstr "" +msgstr "Campo Personalizado" #: ckan/templates/development/snippets/form.html:22 msgid "Markdown" -msgstr "" +msgstr "Marcado" #: ckan/templates/development/snippets/form.html:23 msgid "Textarea" -msgstr "" +msgstr "Área de Texto" #: ckan/templates/development/snippets/form.html:24 msgid "Select" -msgstr "" +msgstr "Seleccionar" #: ckan/templates/group/activity_stream.html:3 #: ckan/templates/group/activity_stream.html:6 @@ -2503,26 +2420,26 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 msgid "Activity Stream" -msgstr "" +msgstr "Flujo de Actividad" #: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 #: ckan/templates/organization/admins.html:3 #: ckan/templates/organization/admins.html:6 msgid "Administrators" -msgstr "" +msgstr "Administradores" #: ckan/templates/group/base_form_page.html:7 msgid "Add a Group" -msgstr "" +msgstr "Añadir un grupo" #: ckan/templates/group/base_form_page.html:11 msgid "Group Form" -msgstr "" +msgstr "Formulario de Grupo" #: ckan/templates/group/confirm_delete.html:3 #: ckan/templates/group/confirm_delete.html:15 @@ -2536,41 +2453,39 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" -msgstr "" +msgstr "Confirmar Eliminación" #: ckan/templates/group/confirm_delete.html:11 msgid "Are you sure you want to delete group - {name}?" -msgstr "" +msgstr "¿Seguro de que deseas eliminar el grupo - {name}?" #: ckan/templates/group/confirm_delete_member.html:11 #: ckan/templates/organization/confirm_delete_member.html:11 msgid "Are you sure you want to delete member - {name}?" -msgstr "" +msgstr "¿Seguro de que deseas eliminar al miembro - {name}?" #: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:11 #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 msgid "Manage" -msgstr "" +msgstr "Administrar" #: ckan/templates/group/edit.html:12 msgid "Edit Group" -msgstr "" +msgstr "Editar Grupo" #: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 #: ckan/templates/organization/edit_base.html:24 #: ckan/templates/organization/members.html:3 msgid "Members" -msgstr "" +msgstr "Miembros" #: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 #: ckan/templates/group/snippets/info.html:32 @@ -2584,21 +2499,21 @@ msgstr "" #: ckan/templates/user/read_base.html:49 #: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 msgid "Followers" -msgstr "" +msgstr "Seguidores" #: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 #: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 msgid "History" -msgstr "" +msgstr "Historial" #: ckan/templates/group/index.html:13 #: ckan/templates/user/dashboard_groups.html:7 msgid "Add Group" -msgstr "" +msgstr "Añadir grupo" #: ckan/templates/group/index.html:20 msgid "Search groups..." -msgstr "" +msgstr "Buscar grupos..." #: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 #: ckan/templates/organization/bulk_process.html:97 @@ -2609,7 +2524,7 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:15 #: ckanext/example_idatasetform/templates/package/search.html:13 msgid "Name Ascending" -msgstr "" +msgstr "Nombre Ascendente" #: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 #: ckan/templates/organization/bulk_process.html:98 @@ -2620,27 +2535,27 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:16 #: ckanext/example_idatasetform/templates/package/search.html:14 msgid "Name Descending" -msgstr "" +msgstr "Nombre Descendente" #: ckan/templates/group/index.html:29 msgid "There are currently no groups for this site" -msgstr "" +msgstr "No existen actualmente grupos para este sitio" #: ckan/templates/group/index.html:31 #: ckan/templates/organization/index.html:31 msgid "How about creating one?" -msgstr "" +msgstr "¿Qué tal creando uno?" #: ckan/templates/group/member_new.html:8 #: ckan/templates/organization/member_new.html:10 msgid "Back to all members" -msgstr "" +msgstr "Regresar a todos los miembros" #: ckan/templates/group/member_new.html:10 #: ckan/templates/organization/member_new.html:7 #: ckan/templates/organization/member_new.html:12 msgid "Edit Member" -msgstr "" +msgstr "Editar Miembro" #: ckan/templates/group/member_new.html:10 #: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 @@ -2649,46 +2564,46 @@ msgstr "" #: ckan/templates/organization/member_new.html:66 #: ckan/templates/organization/members.html:6 msgid "Add Member" -msgstr "" +msgstr "Agregar Miembro" #: ckan/templates/group/member_new.html:18 #: ckan/templates/organization/member_new.html:20 msgid "Existing User" -msgstr "" +msgstr "Usuario existente" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:23 msgid "If you wish to add an existing user, search for their username below." -msgstr "" +msgstr "Si quiere añadir un usuario existente, buscar el nombre del usuario abajo." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:40 msgid "or" -msgstr "" +msgstr "o" #: ckan/templates/group/member_new.html:42 #: ckan/templates/organization/member_new.html:44 msgid "New User" -msgstr "" +msgstr "Usuario nuevo" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:47 msgid "If you wish to invite a new user, enter their email address." -msgstr "" +msgstr "Si deseas invitar a un usuario, escribe su dirección de correo electrónico" #: ckan/templates/group/member_new.html:55 #: ckan/templates/group/members.html:18 #: ckan/templates/organization/member_new.html:56 #: ckan/templates/organization/members.html:18 msgid "Role" -msgstr "" +msgstr "Rol" #: ckan/templates/group/member_new.html:58 #: ckan/templates/group/members.html:30 #: ckan/templates/organization/member_new.html:59 #: ckan/templates/organization/members.html:30 msgid "Are you sure you want to delete this member?" -msgstr "" +msgstr "¿Seguro de que deseas eliminar a este miembro?" #: ckan/templates/group/member_new.html:59 #: ckan/templates/group/members.html:35 @@ -2700,48 +2615,46 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" -msgstr "" +msgstr "Eliminar" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" -msgstr "" +msgstr "Guardar" #: ckan/templates/group/member_new.html:78 #: ckan/templates/organization/member_new.html:79 msgid "What are roles?" -msgstr "" +msgstr "¿Qué son los roles?" #: ckan/templates/group/member_new.html:81 msgid "" "

Admin: Can edit group information, as well as manage " "organization members.

Member: Can add/remove " "datasets from groups

" -msgstr "" +msgstr "

Administrador:Puede editar información del grupo, así como también administrar miembros de la organización.

Miembro: Puede agregar/eliminar conjuntos de datos de grupos.

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 msgid "Create a Group" -msgstr "" +msgstr "Crear un Grupo" #: ckan/templates/group/new_group_form.html:17 msgid "Update Group" -msgstr "" +msgstr "Actualizar Grupo" #: ckan/templates/group/new_group_form.html:19 msgid "Create Group" -msgstr "" +msgstr "Crear Grupo" #: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 #: ckan/templates/package/search.html:29 #: ckan/templates/snippets/sort_by.html:14 #: ckanext/example_idatasetform/templates/package/search.html:12 msgid "Relevance" -msgstr "" +msgstr "Relevancia" #: ckan/templates/group/read.html:18 #: ckan/templates/organization/bulk_process.html:99 @@ -2751,7 +2664,7 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:17 #: ckanext/example_idatasetform/templates/package/search.html:15 msgid "Last Modified" -msgstr "" +msgstr "Última modificación" #: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 #: ckan/templates/package/search.html:33 @@ -2760,56 +2673,55 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:19 #: ckanext/example_idatasetform/templates/package/search.html:18 msgid "Popular" -msgstr "" +msgstr "Popular" #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." -msgstr "" +msgstr "Buscar conjuntos de datos..." #: ckan/templates/group/snippets/feeds.html:3 msgid "Datasets in group: {group}" -msgstr "" +msgstr "Conjuntos de datos en el grupo: {group}" #: ckan/templates/group/snippets/feeds.html:4 #: ckan/templates/organization/snippets/feeds.html:4 msgid "Recent Revision History" -msgstr "" +msgstr "Historial de Revisiones reciente" #: ckan/templates/group/snippets/group_form.html:10 #: ckan/templates/organization/snippets/organization_form.html:10 #: ckan/templates/package/snippets/resource_form.html:28 msgid "Name" -msgstr "" +msgstr "Nombre" #: ckan/templates/group/snippets/group_form.html:10 msgid "My Group" -msgstr "" +msgstr "Mi Grupo" #: ckan/templates/group/snippets/group_form.html:18 msgid "my-group" -msgstr "" +msgstr "mi-grupo" #: ckan/templates/group/snippets/group_form.html:20 #: ckan/templates/organization/snippets/organization_form.html:20 #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" -msgstr "" +msgstr "Descripción" #: ckan/templates/group/snippets/group_form.html:20 msgid "A little information about my group..." -msgstr "" +msgstr "Un poco de información acerca de mi grupo..." #: ckan/templates/group/snippets/group_form.html:60 msgid "Are you sure you want to delete this Group?" -msgstr "" +msgstr "¿Seguro de que deseas eliminar este Grupo?" #: ckan/templates/group/snippets/group_form.html:64 msgid "Save Group" -msgstr "" +msgstr "Guardar Grupo" #: ckan/templates/group/snippets/group_item.html:32 #: ckan/templates/organization/snippets/organization_item.html:31 @@ -2817,28 +2729,28 @@ msgstr "" #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 msgid "{num} Dataset" msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{num} Conjunto de Datos" +msgstr[1] "{num} Conjuntos de Datos" #: ckan/templates/group/snippets/group_item.html:34 #: ckan/templates/organization/snippets/organization_item.html:33 #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 msgid "0 Datasets" -msgstr "" +msgstr "0 Conjuntos de Datos" #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 msgid "View {name}" -msgstr "" +msgstr "Ver {name}" #: ckan/templates/group/snippets/group_item.html:43 msgid "Remove dataset from this group" -msgstr "" +msgstr "Eliminar el conjunto de datos de este grupo" #: ckan/templates/group/snippets/helper.html:4 msgid "What are Groups?" -msgstr "" +msgstr "¿Qué son los Grupos?" #: ckan/templates/group/snippets/helper.html:8 msgid "" @@ -2846,27 +2758,27 @@ msgid "" "could be to catalogue datasets for a particular project or team, or on a " "particular theme, or as a very simple way to help people find and search " "your own published datasets. " -msgstr "" +msgstr "Puedes usar los grupos de CKAN para crear y administrar colecciones de conjuntos de datos. Esto se puede usar para catalogar conjuntos de datos de un proyecto concreto o un equipo, o de un tema en particular, o como una manera muy sencilla de ayudar a la gente a buscar y encontrar sus propios conjuntos de datos publicados." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 msgid "Compare" -msgstr "" +msgstr "Comparar" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" -msgstr "" +msgstr "Eliminado" #: ckan/templates/group/snippets/info.html:24 #: ckan/templates/package/snippets/package_context.html:7 #: ckan/templates/snippets/organization.html:45 msgid "read more" -msgstr "" +msgstr "leer más" #: ckan/templates/group/snippets/revisions_table.html:7 #: ckan/templates/package/snippets/revisions_table.html:7 @@ -2874,14 +2786,14 @@ msgstr "" #: ckan/templates/revision/read.html:39 #: ckan/templates/revision/snippets/revisions_list.html:4 msgid "Revision" -msgstr "" +msgstr "Revisión" #: ckan/templates/group/snippets/revisions_table.html:8 #: ckan/templates/package/snippets/revisions_table.html:8 #: ckan/templates/revision/read.html:53 #: ckan/templates/revision/snippets/revisions_list.html:5 msgid "Timestamp" -msgstr "" +msgstr "Marca de tiempo" #: ckan/templates/group/snippets/revisions_table.html:9 #: ckan/templates/package/snippets/additional_info.html:25 @@ -2891,18 +2803,18 @@ msgstr "" #: ckan/templates/revision/read.html:50 #: ckan/templates/revision/snippets/revisions_list.html:6 msgid "Author" -msgstr "" +msgstr "Autor" #: ckan/templates/group/snippets/revisions_table.html:10 #: ckan/templates/package/snippets/revisions_table.html:10 #: ckan/templates/revision/read.html:56 #: ckan/templates/revision/snippets/revisions_list.html:8 msgid "Log Message" -msgstr "" +msgstr "Mensaje de registro" #: ckan/templates/home/index.html:4 msgid "Welcome" -msgstr "" +msgstr "Bienvenida" #: ckan/templates/home/snippets/about_text.html:1 msgid "" @@ -2924,69 +2836,61 @@ msgid "" "href=\"http://ckan.org/tour/\">http://ckan.org/tour/
Features " "overview: http://ckan.org/features/

" -msgstr "" +msgstr "

CKAN es la plataforma de datos, de código abierto, líder a nivel mundial.

CKAN es una solución completa de software lista para utilizar que hace los datos accesibles y utilizables al proveer herramientas para publicar, compartir, encontrar y usar los datos (incluyendo almacenamiento de datos y provisión de APIs de datos robustas). CKAN está orientada a proveedores de datos (gobiernos nacionales y regionales, compañías y organizaciones) que desean hacer sus datos abiertos y disponibles.

CKAN es utilizada por gobiernos y grupos de usuarios a nivel mundial y gestiona una variedad de portales de datos oficiales y comunitarios, incluyendo portales para gobiernos locales, nacionales e internacionales tales como data.gov.uk de Reino Unido, publicdata.eu de la Unión Europea; dados.gov.br de Brasil; además portales de los gobiernos de Dinamarca y Holanda, así como también sitios de ciudades y municipalidades en Estados Unidos, Reino Unido, Argentina, Finlandia y en otros lugares.

CKAN: http://ckan.org/
Tour de CKAN: http://ckan.org/tour/
Revisión de funcionalidades: http://ckan.org/features/" #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" -msgstr "" +msgstr "Bienvenido a CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" "This is a nice introductory paragraph about CKAN or the site in general. We " "don't have any copy to go here yet but soon we will " -msgstr "" +msgstr "Este es un párrafo amigable de introducción acerca de CKAN o del sitio en general. No tenemos ningún mensaje que vaya aquí pero pronto lo tendremos" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" -msgstr "" +msgstr "Esta es una sección destacada" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "Ej: ambiente" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "Buscar datos" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Etiquetas populares" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" -msgstr "" +msgstr "{0} estadísticas" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" -msgstr "" +msgstr "conjunto de datos" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" -msgstr "" +msgstr "conjuntos de datos" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" -msgstr "" +msgstr "organización" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" -msgstr "" +msgstr "Organizaciones" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" -msgstr "" +msgstr "grupo" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" +msgstr "grupos" #: ckan/templates/macros/form.html:126 #, python-format @@ -2994,112 +2898,124 @@ msgid "" "You can use Markdown formatting here" -msgstr "" +msgstr "Puedes usar formato Markdown aquí" #: ckan/templates/macros/form.html:265 msgid "This field is required" -msgstr "" +msgstr "Este campo es requerido" #: ckan/templates/macros/form.html:265 msgid "Custom" -msgstr "" +msgstr "Personalizado" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" -msgstr "" +msgstr "El formulario contiene entradas no válidas:" #: ckan/templates/macros/form.html:395 msgid "Required field" -msgstr "" +msgstr "Campo requerido" #: ckan/templates/macros/form.html:410 msgid "http://example.com/my-image.jpg" -msgstr "" +msgstr "http://ejemplo.com/mi-imagen.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" -msgstr "" +msgstr "URL de la imagen" #: ckan/templates/macros/form.html:424 msgid "Clear Upload" -msgstr "" +msgstr "Eliminar Carga" #: ckan/templates/organization/base_form_page.html:5 msgid "Organization Form" -msgstr "" +msgstr "Formulario de la Organización" #: ckan/templates/organization/bulk_process.html:3 #: ckan/templates/organization/bulk_process.html:11 msgid "Edit datasets" -msgstr "" +msgstr "Editar Conjunto de datos" #: ckan/templates/organization/bulk_process.html:6 msgid "Add dataset" -msgstr "" +msgstr "Añade conjunto de datos" #: ckan/templates/organization/bulk_process.html:16 msgid " found for \"{query}\"" -msgstr "" +msgstr "encontrados para \"{query}\"" #: ckan/templates/organization/bulk_process.html:18 msgid "Sorry no datasets found for \"{query}\"" -msgstr "" +msgstr "Lo sentimos, no se encontraron conjuntos de datos para \"{query}\"" #: ckan/templates/organization/bulk_process.html:37 msgid "Make public" -msgstr "" +msgstr "Hacer público" #: ckan/templates/organization/bulk_process.html:41 msgid "Make private" -msgstr "" +msgstr "Hacer privado" #: ckan/templates/organization/bulk_process.html:70 #: ckan/templates/package/read.html:18 #: ckan/templates/snippets/package_item.html:40 msgid "Draft" -msgstr "" +msgstr "Borrador" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 msgid "Private" -msgstr "" +msgstr "Privado" #: ckan/templates/organization/bulk_process.html:88 msgid "This organization has no datasets associated to it" -msgstr "" +msgstr "Esta organización no tiene conjuntos de datos asociados a ella" #: ckan/templates/organization/confirm_delete.html:11 msgid "Are you sure you want to delete organization - {name}?" -msgstr "" +msgstr "¿Seguro de que deseas eliminar la organización - {name}?" #: ckan/templates/organization/edit.html:6 #: ckan/templates/organization/snippets/info.html:13 #: ckan/templates/organization/snippets/info.html:16 msgid "Edit Organization" -msgstr "" +msgstr "Editar Organización" #: ckan/templates/organization/index.html:13 #: ckan/templates/user/dashboard_organizations.html:7 msgid "Add Organization" -msgstr "" +msgstr "Agregar Organización" #: ckan/templates/organization/index.html:20 msgid "Search organizations..." -msgstr "" +msgstr "Buscar organizaciones" #: ckan/templates/organization/index.html:29 msgid "There are currently no organizations for this site" -msgstr "" +msgstr "Actualmente no existen organizaciones para este sitio" + +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nombre de usuario" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Dirección de correo electrónico" #: ckan/templates/organization/member_new.html:62 msgid "Update Member" -msgstr "" +msgstr "Actualizar miembro" #: ckan/templates/organization/member_new.html:82 msgid "" @@ -3108,37 +3024,37 @@ msgid "" "edit datasets, but not manage organization members.

" "

Member: Can view the organization's private datasets, " "but not add new datasets.

" -msgstr "" +msgstr "

Administrador: Puedes agregar/editar y eliminar conjuntos de datos, así como también administrar a los miembros de una organización.

Editor: Puedes agregar y editar conjuntos de datos, pero no administrar a los miembros de una organización.

Miembro: Puedes ver los conjuntos de datos privados de una organización, pero no agregar nuevos conjuntos de datos.

" #: ckan/templates/organization/new.html:3 #: ckan/templates/organization/new.html:5 #: ckan/templates/organization/new.html:7 #: ckan/templates/organization/new.html:12 msgid "Create an Organization" -msgstr "" +msgstr "Crear una Organización" #: ckan/templates/organization/new_organization_form.html:17 msgid "Update Organization" -msgstr "" +msgstr "Actualizar Organización" #: ckan/templates/organization/new_organization_form.html:19 msgid "Create Organization" -msgstr "" +msgstr "Crear Organización" #: ckan/templates/organization/read.html:5 #: ckan/templates/package/search.html:16 #: ckan/templates/user/dashboard_datasets.html:7 msgid "Add Dataset" -msgstr "" +msgstr "Agrega conjunto de datos" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "Conjuntos de datos en organización: {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 msgid "What are Organizations?" -msgstr "" +msgstr "¿Qué son las Organizaciones?" #: ckan/templates/organization/snippets/help.html:7 msgid "" @@ -3148,133 +3064,132 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "" +msgstr "

Las organizaciones actúan como departamentos de publicación para los conjuntos de datos (por ejemplo, el Departamento de Salud). Esto significa que los conjuntos de datos pueden ser publicados por y pertenecer a un departamento en vez de a un usuario individual.

Dentro de las organizaciones, los administradores asignan roles y autorizaciones para sus miembros, dándoles a los usuarios individuales el derecho a publicar conjuntos de datos de esa organización en particular (ej: Oficina Nacional de Estadísticas).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" " CKAN Organizations are used to create, manage and publish collections of " "datasets. Users can have different roles within an Organization, depending " "on their level of authorisation to create, edit and publish. " -msgstr "" +msgstr "Las organizaciones en CKAN son usadas para crear, gestionar y publicar colecciones de conjuntos de datos. Los usuarios pueden tener diferentes perfiles en una organización, dependiente de su nivel de autorización para crear, editar y publicar" #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" -msgstr "" +msgstr "Mi Organización" #: ckan/templates/organization/snippets/organization_form.html:18 msgid "my-organization" -msgstr "" +msgstr "mi-organizacion" #: ckan/templates/organization/snippets/organization_form.html:20 msgid "A little information about my organization..." -msgstr "" +msgstr "Un poco de información acerca de mi organización..." #: ckan/templates/organization/snippets/organization_form.html:60 msgid "" "Are you sure you want to delete this Organization? This will delete all the " "public and private datasets belonging to this organization." -msgstr "" +msgstr "¿Seguro de que deseas eliminar esta Organización? Esto eliminará los conjuntos de datos privados y públicos que pertenecen a esta organización." #: ckan/templates/organization/snippets/organization_form.html:64 msgid "Save Organization" -msgstr "" +msgstr "Guardar Organización" #: ckan/templates/organization/snippets/organization_item.html:37 #: ckan/templates/organization/snippets/organization_item.html:38 msgid "View {organization_name}" -msgstr "" +msgstr "Ver {organization_name}" #: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 #: ckan/templates/package/snippets/new_package_breadcrumb.html:2 msgid "Create Dataset" -msgstr "" +msgstr "Crear Conjunto de datos" #: ckan/templates/package/base_form_page.html:22 msgid "What are datasets?" -msgstr "" +msgstr "¿Qué son los conjuntos de datos?" #: ckan/templates/package/base_form_page.html:25 msgid "" " A CKAN Dataset is a collection of data resources (such as files), together " "with a description and other information, at a fixed URL. Datasets are what " "users see when searching for data. " -msgstr "" +msgstr "Un Conjunto de Datos de CKAN es una colección de recursos de datos (como ficheros), junto con una descripción y otra información, unida a una URL. Los conjuntos de datos son lo que los usuarios ven cuando buscan un dato." #: ckan/templates/package/confirm_delete.html:11 msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" +msgstr "¿Seguro de que deseas eliminar el conjunto de datos - {name}?" #: ckan/templates/package/confirm_delete_resource.html:11 msgid "Are you sure you want to delete resource - {name}?" -msgstr "" +msgstr "¿Seguro de que deseas eliminar el recurso - {name}?" #: ckan/templates/package/edit_base.html:16 msgid "View dataset" -msgstr "" +msgstr "Ver conjunto de datos" #: ckan/templates/package/edit_base.html:20 msgid "Edit metadata" -msgstr "" +msgstr "Editar metadatos" #: ckan/templates/package/edit_view.html:3 #: ckan/templates/package/edit_view.html:4 #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Editar vista" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 #: ckan/templates/package/snippets/resource_item.html:33 #: ckan/templates/snippets/datapreview_embed_dialog.html:16 msgid "Preview" -msgstr "" +msgstr "Previsualización" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" -msgstr "" +msgstr "Actualizar" #: ckan/templates/package/group_list.html:14 msgid "Associate this group with this dataset" -msgstr "" +msgstr "Asocia este grupo con este conjunto de datos" #: ckan/templates/package/group_list.html:14 msgid "Add to group" -msgstr "" +msgstr "Añadir al grupo" #: ckan/templates/package/group_list.html:23 msgid "There are no groups associated with this dataset" -msgstr "" +msgstr "No hay grupos asociados a este conjunto de datos" #: ckan/templates/package/new_package_form.html:15 msgid "Update Dataset" -msgstr "" +msgstr "Actualizar Conjunto de datos" #: ckan/templates/package/new_resource.html:5 msgid "Add data to the dataset" -msgstr "" +msgstr "Agregar datos al conjunto de datos" #: ckan/templates/package/new_resource.html:11 #: ckan/templates/package/new_resource_not_draft.html:8 msgid "Add New Resource" -msgstr "" +msgstr "Agregar Nuevo Recurso" #: ckan/templates/package/new_resource_not_draft.html:3 #: ckan/templates/package/new_resource_not_draft.html:4 msgid "Add resource" -msgstr "" +msgstr "Añadir recurso" #: ckan/templates/package/new_resource_not_draft.html:16 msgid "New resource" -msgstr "" +msgstr "Nuevo recurso" #: ckan/templates/package/new_view.html:3 #: ckan/templates/package/new_view.html:4 #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Agregar vista" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3283,197 +3198,201 @@ msgid "" "href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-" "structured-data-the-data-explorer' target='_blank'>Data Explorer " "documentation. " -msgstr "" +msgstr "Las vistas de Data Explorer pueden ser lentas y no confiables a no ser que la extensión DataStore esté activa. Para más información revisa la documentación de Data Explorer." #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" -msgstr "" +msgstr "Añade" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " "differ significantly from the current revision." -msgstr "" +msgstr "Esta es una versión antigua de este conjunto de datos, editada en %(timestamp)s. Puede diferir significativamente de la versión actual." #: ckan/templates/package/related_list.html:7 msgid "Related Media for {dataset}" -msgstr "" +msgstr "Medios Relacionados para {dataset}" #: ckan/templates/package/related_list.html:12 msgid "No related items" -msgstr "" +msgstr "No hay elementos relacionados" #: ckan/templates/package/related_list.html:17 msgid "Add Related Item" -msgstr "" +msgstr "Agregar Elemento Relacionado" #: ckan/templates/package/resource_data.html:12 msgid "Upload to DataStore" -msgstr "" +msgstr "Subir a DataStore" #: ckan/templates/package/resource_data.html:19 msgid "Upload error:" -msgstr "" +msgstr "Error en la subida:" #: ckan/templates/package/resource_data.html:25 #: ckan/templates/package/resource_data.html:27 msgid "Error:" -msgstr "" +msgstr "Error:" + +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "Rastro del error:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:48 msgid "Status" -msgstr "" +msgstr "Estado" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" -msgstr "" +msgstr "Última actualización" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" -msgstr "" +msgstr "Nunca" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" -msgstr "" +msgstr "Log de subida" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" -msgstr "" +msgstr "Detalles" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" -msgstr "" +msgstr "Fin del log" #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" -msgstr "" +msgstr "Todos los recursos" #: ckan/templates/package/resource_edit_base.html:19 msgid "View resource" -msgstr "" +msgstr "Ver recurso" #: ckan/templates/package/resource_edit_base.html:24 #: ckan/templates/package/resource_edit_base.html:32 msgid "Edit resource" -msgstr "" +msgstr "Editar recurso" #: ckan/templates/package/resource_edit_base.html:26 msgid "DataStore" -msgstr "" +msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Vistas" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" -msgstr "" +msgstr "Punto de acceso API" #: ckan/templates/package/resource_read.html:41 #: ckan/templates/package/snippets/resource_item.html:48 msgid "Go to resource" -msgstr "" +msgstr "Ir al recurso" #: ckan/templates/package/resource_read.html:43 #: ckan/templates/package/snippets/resource_item.html:45 msgid "Download" -msgstr "" +msgstr "Descargar" #: ckan/templates/package/resource_read.html:59 #: ckan/templates/package/resource_read.html:61 msgid "URL:" -msgstr "" +msgstr "URL:" #: ckan/templates/package/resource_read.html:69 msgid "From the dataset abstract" -msgstr "" +msgstr "Del resumen del conjunto de datos" #: ckan/templates/package/resource_read.html:71 #, python-format msgid "Source: %(dataset)s" -msgstr "" +msgstr "Fuente: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "Todavía no existen vistas creadas para este recurso." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "¿No encuentra las vistas que esperaba?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +msgstr "A continuación algunas razones por las que podría no encontrar las vistas esperadas:" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "" +msgstr "Ninguna vista ha sido creada que sea adecuada para este recurso" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +msgstr "Los administradores del sitio pueden no haber habilitado los plugins de vista relevantes" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "" +msgstr "Si una vista requiere el DataStore, entonces el plugin de DataStore puede no haber sido habilitado, o los datos pueden no haber sido publicados en el DataStore, o el DataStore todavía no ha terminado de procesar los datos " #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" -msgstr "" +msgstr "Información adicional" #: ckan/templates/package/resource_read.html:151 #: ckan/templates/package/snippets/additional_info.html:6 #: ckan/templates/revision/diff.html:43 #: ckan/templates/snippets/additional_info.html:11 msgid "Field" -msgstr "" +msgstr "Campo" #: ckan/templates/package/resource_read.html:152 #: ckan/templates/package/snippets/additional_info.html:7 #: ckan/templates/snippets/additional_info.html:12 msgid "Value" -msgstr "" +msgstr "Valor" #: ckan/templates/package/resource_read.html:158 #: ckan/templates/package/resource_read.html:162 #: ckan/templates/package/resource_read.html:166 msgid "unknown" -msgstr "" +msgstr "desconocido" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" -msgstr "" +msgstr "Creado" #: ckan/templates/package/resource_read.html:165 #: ckan/templates/package/snippets/resource_form.html:37 #: ckan/templates/package/snippets/resource_info.html:16 msgid "Format" -msgstr "" +msgstr "Formato" #: ckan/templates/package/resource_read.html:169 #: ckan/templates/package/snippets/package_basic_fields.html:30 #: ckan/templates/snippets/license.html:21 msgid "License" -msgstr "" +msgstr "Licencia" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "Nueva vista" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "Este recurso no tiene vistas" #: ckan/templates/package/resources.html:8 msgid "Add new resource" -msgstr "" +msgstr "Añadir nuevo recurso" #: ckan/templates/package/resources.html:19 #: ckan/templates/package/snippets/resources_list.html:25 @@ -3481,125 +3400,128 @@ msgstr "" msgid "" "

This dataset has no data, why not " "add some?

" -msgstr "" +msgstr "

Este conjunto de datos no tiene datos, ¿por qué no añades alguno?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" #: ckan/templates/package/search.html:53 msgid "API Docs" -msgstr "" +msgstr "API Docs" #: ckan/templates/package/search.html:55 msgid "full {format} dump" -msgstr "" +msgstr "volcado completo de {format}" #: ckan/templates/package/search.html:56 #, python-format msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" +msgstr "También puedes acceder a este registro utilizando los %(api_link)s (ver %(api_doc_link)s) o descargando un %(dump_link)s." #: ckan/templates/package/search.html:60 #, python-format msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " -msgstr "" +msgstr "También puedes acceder a este registro utilizando los %(api_link)s (ver %(api_doc_link)s)." #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "Todas las vistas" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "Ver vista" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "Ver previsualización" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 msgid "Additional Info" -msgstr "" +msgstr "Información Adicional" #: ckan/templates/package/snippets/additional_info.html:14 #: ckan/templates/package/snippets/package_metadata_fields.html:6 msgid "Source" -msgstr "" +msgstr "Fuente" #: ckan/templates/package/snippets/additional_info.html:37 #: ckan/templates/package/snippets/additional_info.html:42 #: ckan/templates/package/snippets/package_metadata_fields.html:20 msgid "Maintainer" -msgstr "" +msgstr "Mantenedor" #: ckan/templates/package/snippets/additional_info.html:49 #: ckan/templates/package/snippets/package_metadata_fields.html:10 msgid "Version" -msgstr "" +msgstr "Versión" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" -msgstr "" +msgstr "Estado" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "Última actualización" #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" -msgstr "" +msgstr "API de datos" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" -msgstr "" +msgstr "Título" #: ckan/templates/package/snippets/package_basic_fields.html:4 msgid "eg. A descriptive title" -msgstr "" +msgstr "ej. Un título descriptivo" #: ckan/templates/package/snippets/package_basic_fields.html:13 msgid "eg. my-dataset" -msgstr "" +msgstr "ej. mi-conjunto-de-datos" #: ckan/templates/package/snippets/package_basic_fields.html:19 msgid "eg. Some useful notes about the data" -msgstr "" +msgstr "ej. Algunas notas útiles sobre los datos" #: ckan/templates/package/snippets/package_basic_fields.html:24 msgid "eg. economy, mental health, government" -msgstr "" +msgstr "ej. economía, salud mental, gobierno" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " -msgstr "" +msgstr "Definiciones de licencias e información adicional puede ser encontrada en opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" -msgstr "" +msgstr "Organización" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" -msgstr "" +msgstr "Sin organización" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" -msgstr "" +msgstr "Visibilidad" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" -msgstr "" +msgstr "Público" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" -msgstr "" +msgstr "Activo" #: ckan/templates/package/snippets/package_form.html:28 msgid "" @@ -3608,676 +3530,533 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "" +msgstr "La licencia de datos que seleccionó arriba solo aplica para los contenidos de cualquier archivo de recurso que agregue a este conjunto de datos. Al enviar este formulario, estás de acuerdo en liberar los valores de metadatos que ingrese en el formulario bajo la Licencia Open Database." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" -msgstr "" +msgstr "¿Seguro de que deseas eliminar este conjunto de datos?" #: ckan/templates/package/snippets/package_form.html:44 msgid "Next: Add Data" -msgstr "" +msgstr "Siguiente: Agregar Datos" #: ckan/templates/package/snippets/package_metadata_fields.html:6 msgid "http://example.com/dataset.json" -msgstr "" +msgstr "http://ejemplo.com/dataset.json" #: ckan/templates/package/snippets/package_metadata_fields.html:10 msgid "1.0" -msgstr "" +msgstr "1.0" #: ckan/templates/package/snippets/package_metadata_fields.html:14 #: ckan/templates/package/snippets/package_metadata_fields.html:20 #: ckan/templates/user/new_user_form.html:6 msgid "Joe Bloggs" -msgstr "" +msgstr "Joe Bloggs" #: ckan/templates/package/snippets/package_metadata_fields.html:16 msgid "Author Email" -msgstr "" +msgstr "Email del Autor" #: ckan/templates/package/snippets/package_metadata_fields.html:16 #: ckan/templates/package/snippets/package_metadata_fields.html:22 #: ckan/templates/user/new_user_form.html:7 msgid "joe@example.com" -msgstr "" +msgstr "joe@ejemplo.com" #: ckan/templates/package/snippets/package_metadata_fields.html:22 msgid "Maintainer Email" -msgstr "" +msgstr "Email del Mantenedor" #: ckan/templates/package/snippets/resource_edit_form.html:12 msgid "Update Resource" -msgstr "" +msgstr "Actualizar Recurso" #: ckan/templates/package/snippets/resource_form.html:24 msgid "File" -msgstr "" +msgstr "Archivo" #: ckan/templates/package/snippets/resource_form.html:28 msgid "eg. January 2011 Gold Prices" -msgstr "" +msgstr "ej. Precios del Oro Enero 2011" #: ckan/templates/package/snippets/resource_form.html:32 msgid "Some useful notes about the data" -msgstr "" +msgstr "Algunas notas útiles sobre los datos" #: ckan/templates/package/snippets/resource_form.html:37 msgid "eg. CSV, XML or JSON" -msgstr "" +msgstr "ej. CSV, XML ó JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" +msgstr "Esto será adivinado automáticamente. Déjalo en blanco si deseas" #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" -msgstr "" +msgstr "ej. 2012-06-05" #: ckan/templates/package/snippets/resource_form.html:53 msgid "File Size" -msgstr "" +msgstr "Tamaño de Archivo" #: ckan/templates/package/snippets/resource_form.html:53 msgid "eg. 1024" -msgstr "" +msgstr "ej. 1024" #: ckan/templates/package/snippets/resource_form.html:55 #: ckan/templates/package/snippets/resource_form.html:57 msgid "MIME Type" -msgstr "" +msgstr "Tipo MIME" #: ckan/templates/package/snippets/resource_form.html:55 #: ckan/templates/package/snippets/resource_form.html:57 msgid "eg. application/json" -msgstr "" +msgstr "ej. application/json" #: ckan/templates/package/snippets/resource_form.html:65 msgid "Are you sure you want to delete this resource?" -msgstr "" +msgstr "¿Seguro de que deseas eliminar este recurso?" #: ckan/templates/package/snippets/resource_form.html:72 msgid "Previous" -msgstr "" +msgstr "Anterior" #: ckan/templates/package/snippets/resource_form.html:75 msgid "Save & add another" -msgstr "" +msgstr "Guardar y Agregar otro" #: ckan/templates/package/snippets/resource_form.html:78 msgid "Finish" -msgstr "" +msgstr "Terminar" #: ckan/templates/package/snippets/resource_help.html:2 msgid "What's a resource?" -msgstr "" +msgstr "¿Qué es un recurso?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." -msgstr "" +msgstr "Un recurso puede ser cualquier archivo o enlace a un archivo que contiene datos útiles." #: ckan/templates/package/snippets/resource_item.html:24 msgid "Explore" -msgstr "" +msgstr "Explorar" #: ckan/templates/package/snippets/resource_item.html:36 msgid "More information" -msgstr "" +msgstr "Más información" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" -msgstr "" +msgstr "Incrustar" #: ckan/templates/package/snippets/resource_view.html:24 msgid "This resource view is not available at the moment." -msgstr "" +msgstr "Esta vista de recurso no está disponible al momento." #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "" +msgstr "Incrustar vista de recurso" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "" +msgstr "Puedes copiar y pegar el código de inserción en un CMS o blog que soporte HTML crudo" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Ancho" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Alto" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" -msgstr "" +msgstr "Código" #: ckan/templates/package/snippets/resource_views_list.html:8 msgid "Resource Preview" -msgstr "" +msgstr "Previsualización de Recurso" #: ckan/templates/package/snippets/resources_list.html:13 msgid "Data and Resources" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "" - -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:30 -#: ckan/templates/package/snippets/stages.html:34 -#: ckan/templates/package/snippets/stages.html:36 -msgid "Add data" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" +msgstr "Datos y Recursos" -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" +#: ckan/templates/package/snippets/resources_list.html:29 +msgid "This dataset has no data" +msgstr "Este conjunto de datos no tiene datos" -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "Leer conjunto de datos a partir de %s" -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Crear conjunto de datos" -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "Agregar datos" -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "ej: Mi Vista" -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "ej: Información sobre mi vista" -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Agregar Filtro" -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Quitar Filtro" -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" +#: ckan/templates/package/snippets/view_form_filters.html:46 +msgid "Filters" +msgstr "Filtros" -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "¿Qué es una vista?" -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "Una vista es una representación de los datos que se tienen sobre un recurso" #: ckan/templates/revision/diff.html:6 msgid "Differences" -msgstr "" +msgstr "Diferencias" #: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 #: ckan/templates/revision/diff.html:23 msgid "Revision Differences" -msgstr "" +msgstr "Diferencias en las revisiones -" #: ckan/templates/revision/diff.html:44 msgid "Difference" -msgstr "" +msgstr "Diferencias" #: ckan/templates/revision/diff.html:54 msgid "No Differences" -msgstr "" +msgstr "Sin diferencias" #: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 #: ckan/templates/revision/list.html:10 msgid "Revision History" -msgstr "" +msgstr "Historial de revisiones" #: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 msgid "Revisions" -msgstr "" +msgstr "Revisiones" #: ckan/templates/revision/read.html:30 msgid "Undelete" -msgstr "" +msgstr "Recuperar" #: ckan/templates/revision/read.html:64 msgid "Changes" -msgstr "" +msgstr "Cambios" #: ckan/templates/revision/read.html:74 msgid "Datasets' Tags" -msgstr "" +msgstr "Etiquetas de los conjuntos de datos" #: ckan/templates/revision/snippets/revisions_list.html:7 msgid "Entity" -msgstr "" +msgstr "Entidad" #: ckan/templates/snippets/activity_item.html:3 msgid "New activity item" -msgstr "" +msgstr "Nuevo elemento de actividad" #: ckan/templates/snippets/datapreview_embed_dialog.html:4 msgid "Embed Data Viewer" -msgstr "" +msgstr "Incrustar Visor de datos" #: ckan/templates/snippets/datapreview_embed_dialog.html:8 msgid "Embed this view by copying this into your webpage:" -msgstr "" +msgstr "Inserta esta vista en tu página web copiando este código:" #: ckan/templates/snippets/datapreview_embed_dialog.html:10 msgid "Choose width and height in pixels:" -msgstr "" +msgstr "Escoge la anchura y altura en píxeles:" #: ckan/templates/snippets/datapreview_embed_dialog.html:11 msgid "Width:" -msgstr "" +msgstr "Anchura:" #: ckan/templates/snippets/datapreview_embed_dialog.html:13 msgid "Height:" -msgstr "" +msgstr "Altura:" #: ckan/templates/snippets/datapusher_status.html:8 msgid "Datapusher status: {status}." -msgstr "" +msgstr "Estado de Datapusher: {status}" #: ckan/templates/snippets/disqus_trackback.html:2 msgid "Trackback URL" -msgstr "" +msgstr "URL de Trackback" #: ckan/templates/snippets/facet_list.html:80 msgid "Show More {facet_type}" -msgstr "" +msgstr "Mostrar Más {facet_type}" #: ckan/templates/snippets/facet_list.html:83 msgid "Show Only Popular {facet_type}" -msgstr "" +msgstr "Mostrar Solamente Populares {facet_type}" #: ckan/templates/snippets/facet_list.html:87 msgid "There are no {facet_type} that match this search" -msgstr "" +msgstr "No hay {facet_type} que coincidan con esta búsqueda" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" -msgstr "" +msgstr "Inicio" #: ckan/templates/snippets/language_selector.html:4 msgid "Language" -msgstr "" +msgstr "Idioma" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" -msgstr "" +msgstr "Ir" #: ckan/templates/snippets/license.html:14 msgid "No License Provided" -msgstr "" +msgstr "No se ha proporcionado una licencia" #: ckan/templates/snippets/license.html:28 msgid "This dataset satisfies the Open Definition." -msgstr "" +msgstr "Este conjunto de datos cumple con la Definición de Conocimiento Abierto - Open Definition." #: ckan/templates/snippets/organization.html:48 msgid "There is no description for this organization" -msgstr "" +msgstr "No existe una descripción para esta organización" #: ckan/templates/snippets/package_item.html:57 msgid "This dataset has no description" -msgstr "" +msgstr "Este conjunto de datos no tiene una descripción" #: ckan/templates/snippets/related.html:15 msgid "" "No apps, ideas, news stories or images have been related to this dataset " "yet." -msgstr "" +msgstr "Todavía no existen aplicaciones, ideas, noticias o imágenes que se hayan relacionado a este conjunto de datos." #: ckan/templates/snippets/related.html:18 msgid "Add Item" -msgstr "" +msgstr "Agregar Elemento" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" -msgstr "" +msgstr "Enviar" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" -msgstr "" +msgstr "Ordenar por" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtrar Resultados" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" -msgstr "" +msgstr "

Intenta otra búsqueda.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" -msgstr "" +msgstr "

Hubo un error mientras se realizaba la búsqueda. Intenta nuevamente.

" #: ckan/templates/snippets/search_result_text.html:15 msgid "{number} dataset found for \"{query}\"" msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} conjunto de datos encontrado para \"{query}\"" +msgstr[1] "{number} conjuntos de datos encontrados para \"{query}\"" #: ckan/templates/snippets/search_result_text.html:16 msgid "No datasets found for \"{query}\"" -msgstr "" +msgstr "Lo sentimos, no se encontraron conjuntos de datos para \"{query}\"" #: ckan/templates/snippets/search_result_text.html:17 msgid "{number} dataset found" msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} conjunto de datos encontrado" +msgstr[1] "{number} conjuntos de datos encontrados" #: ckan/templates/snippets/search_result_text.html:18 msgid "No datasets found" -msgstr "" +msgstr "Conjuntos de datos no encontrados" #: ckan/templates/snippets/search_result_text.html:21 msgid "{number} group found for \"{query}\"" msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} grupo encontrado para \"{query}\"" +msgstr[1] "{number} grupos encontrados para \"{query}\"" #: ckan/templates/snippets/search_result_text.html:22 msgid "No groups found for \"{query}\"" -msgstr "" +msgstr "Lo sentimos, no se encontraron grupos para \"{query}\"" #: ckan/templates/snippets/search_result_text.html:23 msgid "{number} group found" msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} grupo encontrado" +msgstr[1] "{number} grupos encontrados" #: ckan/templates/snippets/search_result_text.html:24 msgid "No groups found" -msgstr "" +msgstr "No se han encontrado grupos" #: ckan/templates/snippets/search_result_text.html:27 msgid "{number} organization found for \"{query}\"" msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} organización encontrada para \"{query}\"" +msgstr[1] "{number} organizaciones encontradas para \"{query}\"" #: ckan/templates/snippets/search_result_text.html:28 msgid "No organizations found for \"{query}\"" -msgstr "" +msgstr "Lo sentimos, no se encontraron organizaciones para \"{query}\"" #: ckan/templates/snippets/search_result_text.html:29 msgid "{number} organization found" msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} organización encontrada" +msgstr[1] "{number} organizaciones encontradas" #: ckan/templates/snippets/search_result_text.html:30 msgid "No organizations found" -msgstr "" +msgstr "Lo sentimos, no se encontraron organizaciones" #: ckan/templates/snippets/social.html:5 msgid "Social" -msgstr "" +msgstr "Social" #: ckan/templates/snippets/subscribe.html:2 msgid "Subscribe" -msgstr "" +msgstr "Suscribir" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" -msgstr "" +msgstr "Dirección de correo electrónico" #: ckan/templates/snippets/subscribe.html:5 msgid "RSS" -msgstr "" +msgstr "RSS" #: ckan/templates/snippets/context/user.html:23 #: ckan/templates/user/read_base.html:57 msgid "Edits" -msgstr "" +msgstr "Cambios" #: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" +msgstr "Buscar Etiquetas" #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" -msgstr "" +msgstr "Feed de Noticias" #: ckan/templates/user/dashboard.html:20 #: ckan/templates/user/dashboard_datasets.html:12 msgid "My Datasets" -msgstr "" +msgstr "Mis Conjuntos de Datos" #: ckan/templates/user/dashboard.html:21 #: ckan/templates/user/dashboard_organizations.html:12 msgid "My Organizations" -msgstr "" +msgstr "Mis organizaciones" #: ckan/templates/user/dashboard.html:22 #: ckan/templates/user/dashboard_groups.html:12 msgid "My Groups" -msgstr "" +msgstr "Mis Grupos" #: ckan/templates/user/dashboard.html:39 msgid "Activity from items that I'm following" -msgstr "" +msgstr "Actividad de los elementos que sigues" #: ckan/templates/user/dashboard_datasets.html:17 #: ckan/templates/user/read.html:14 msgid "You haven't created any datasets." -msgstr "" +msgstr "No has creado ningún conjunto de datos." #: ckan/templates/user/dashboard_datasets.html:19 #: ckan/templates/user/dashboard_groups.html:22 #: ckan/templates/user/dashboard_organizations.html:22 #: ckan/templates/user/read.html:16 msgid "Create one now?" -msgstr "" +msgstr "¿Crear uno ahora?" #: ckan/templates/user/dashboard_groups.html:20 msgid "You are not a member of any groups." -msgstr "" +msgstr "No eres miembro de ninguno de los grupos." #: ckan/templates/user/dashboard_organizations.html:20 msgid "You are not a member of any organizations." -msgstr "" +msgstr "No eres miembro de ninguna de las organizaciones." #: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 #: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 #: ckan/templates/user/snippets/user_search.html:2 msgid "Users" -msgstr "" +msgstr "Usuarios" #: ckan/templates/user/edit.html:17 msgid "Account Info" -msgstr "" +msgstr "Información de la Cuenta" #: ckan/templates/user/edit.html:19 msgid "" " Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" +msgstr "Tu perfil le permite a otros usuarios de CKAN conocer acerca tuyo y sobre lo que haces." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" +msgstr "Cambie sus detalles" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" -msgstr "" +msgstr "Nombre completo" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" -msgstr "" +msgstr "ej: Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" -msgstr "" +msgstr "ej: joe@ejemplo.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" -msgstr "" +msgstr "Un poco de información acerca tuyo" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" -msgstr "" +msgstr "Suscribirse a emails de notificación" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" -msgstr "" +msgstr "Cambia tu contraseña" #: ckan/templates/user/edit_user_form.html:29 #: ckan/templates/user/logout_first.html:12 @@ -4285,553 +4064,489 @@ msgstr "" #: ckan/templates/user/perform_reset.html:20 #: ckan/templates/user/snippets/login_form.html:22 msgid "Password" -msgstr "" +msgstr "Contraseña" #: ckan/templates/user/edit_user_form.html:31 msgid "Confirm Password" -msgstr "" +msgstr "Confirmar Contraseña" #: ckan/templates/user/edit_user_form.html:37 msgid "Are you sure you want to delete this User?" -msgstr "" +msgstr "¿Seguro que deseas eliminar a este miembro?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "¿Seguro que deseas regenerar la clave API?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Regenerar Clave API" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" -msgstr "" +msgstr "Actualizar Perfil" #: ckan/templates/user/list.html:3 #: ckan/templates/user/snippets/user_search.html:11 msgid "All Users" -msgstr "" +msgstr "Todos los Usuarios" #: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 #: ckan/templates/user/login.html:12 #: ckan/templates/user/snippets/login_form.html:28 msgid "Login" -msgstr "" +msgstr "Conectarse" #: ckan/templates/user/login.html:25 msgid "Need an Account?" -msgstr "" +msgstr "¿Necesita una cuenta?" #: ckan/templates/user/login.html:27 msgid "Then sign right up, it only takes a minute." -msgstr "" +msgstr "Entonces regístrese, solamente toma un minuto" #: ckan/templates/user/login.html:30 msgid "Create an Account" -msgstr "" +msgstr "Crear una Cuenta" #: ckan/templates/user/login.html:42 msgid "Forgotten your password?" -msgstr "" +msgstr "¿Olvidaste tu contraseña?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." -msgstr "" +msgstr "No hay problema, utilice nuestro formulario de recuperación de contraseña para restablecerla." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" -msgstr "" +msgstr "¿Olvidaste tu contraseña?" #: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 msgid "Logged Out" -msgstr "" +msgstr "Sesión terminada" #: ckan/templates/user/logout.html:11 msgid "You are now logged out." -msgstr "" +msgstr "Cerraste la sesión." #: ckan/templates/user/logout_first.html:9 msgid "You're already logged in as {user}." -msgstr "" +msgstr "Ya inició sesión como {user}." #: ckan/templates/user/logout_first.html:9 msgid "Logout" -msgstr "" +msgstr "Salir" #: ckan/templates/user/logout_first.html:13 #: ckan/templates/user/snippets/login_form.html:24 msgid "Remember me" -msgstr "" +msgstr "Recordarme" #: ckan/templates/user/logout_first.html:22 msgid "You're already logged in" -msgstr "" +msgstr "Ya inició la sesión" #: ckan/templates/user/logout_first.html:24 msgid "You need to log out before you can log in with another account." -msgstr "" +msgstr "Debes cerrar la sesión antes de abrir la sesión con otra cuenta." #: ckan/templates/user/logout_first.html:25 msgid "Log out now" -msgstr "" +msgstr "Cerrar la sesión ahora" #: ckan/templates/user/new.html:6 msgid "Registration" -msgstr "" +msgstr "Registro" #: ckan/templates/user/new.html:14 msgid "Register for an Account" -msgstr "" +msgstr "Regístrese para una Cuenta" #: ckan/templates/user/new.html:26 msgid "Why Sign Up?" -msgstr "" +msgstr "¿Por qué registrarse?" #: ckan/templates/user/new.html:28 msgid "Create datasets, groups and other exciting things" -msgstr "" +msgstr "Crear conjuntos de datos, grupos y otras cosas interesantes" #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "nombre de usuario" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" -msgstr "" +msgstr "Nombre Completo" #: ckan/templates/user/new_user_form.html:17 msgid "Create Account" -msgstr "" +msgstr "Crear Cuenta" #: ckan/templates/user/perform_reset.html:4 #: ckan/templates/user/perform_reset.html:14 msgid "Reset Your Password" -msgstr "" +msgstr "Restablece tu contraseña" #: ckan/templates/user/perform_reset.html:7 msgid "Password Reset" -msgstr "" +msgstr "Restablecer Contraseña" #: ckan/templates/user/perform_reset.html:24 msgid "Update Password" -msgstr "" +msgstr "Actualizar contraseña" #: ckan/templates/user/perform_reset.html:38 #: ckan/templates/user/request_reset.html:32 msgid "How does this work?" -msgstr "" +msgstr "¿Cómo funciona esto?" #: ckan/templates/user/perform_reset.html:40 msgid "Simply enter a new password and we'll update your account" -msgstr "" +msgstr "Simplemente ingresa una nueva contraseña y actualizaremos tu cuenta" #: ckan/templates/user/read.html:21 msgid "User hasn't created any datasets." -msgstr "" +msgstr "El usuario no ha creado ningún conjunto de datos." #: ckan/templates/user/read_base.html:39 msgid "You have not provided a biography." -msgstr "" +msgstr "No has proporcionado una biografía." #: ckan/templates/user/read_base.html:41 msgid "This user has no biography." -msgstr "" +msgstr "Este usuario no tiene una biografía." #: ckan/templates/user/read_base.html:73 msgid "Open ID" -msgstr "" +msgstr "Open ID" #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 msgid "This means only you can see this" -msgstr "" +msgstr "Esto significa que solo tu puedes ver esto" #: ckan/templates/user/read_base.html:87 msgid "Member Since" -msgstr "" +msgstr "Miembro Desde" #: ckan/templates/user/read_base.html:96 msgid "API Key" -msgstr "" +msgstr "Clave API" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Restablecer contraseña" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Solicitar restablecimiento" #: ckan/templates/user/request_reset.html:34 msgid "" "Enter your username into the box and we will send you an email with a link " "to enter a new password." -msgstr "" +msgstr "Ingresa tu nombre de usuario en el recuadro y te enviaremos un email con un enlace para ingresar una nueva contraseña." #: ckan/templates/user/snippets/followee_dropdown.html:14 #: ckan/templates/user/snippets/followee_dropdown.html:15 msgid "Activity from:" -msgstr "" +msgstr "Actividad de:" #: ckan/templates/user/snippets/followee_dropdown.html:23 msgid "Search list..." -msgstr "" +msgstr "Lista de búsqueda..." #: ckan/templates/user/snippets/followee_dropdown.html:44 msgid "You are not following anything" -msgstr "" +msgstr "No estás siguiendo nada" #: ckan/templates/user/snippets/followers.html:9 msgid "No followers" -msgstr "" +msgstr "Sin seguidores" #: ckan/templates/user/snippets/user_search.html:5 msgid "Search Users" -msgstr "" +msgstr "Buscar Usuarios" #: ckanext/datapusher/helpers.py:19 msgid "Complete" -msgstr "" +msgstr "Completado" #: ckanext/datapusher/helpers.py:20 msgid "Pending" -msgstr "" +msgstr "Pendiente" #: ckanext/datapusher/helpers.py:21 msgid "Submitting" -msgstr "" +msgstr "Enviando" #: ckanext/datapusher/helpers.py:27 msgid "Not Uploaded Yet" -msgstr "" +msgstr "Sin actualizar aún" #: ckanext/datastore/controller.py:31 msgid "DataStore resource not found" -msgstr "" +msgstr "No se ha encontrado el recurso." -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "Los datos fueron inválidos (por ejemplo: un valor numérico estuvo fuera de rango o fue insertado en un campo de texto)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." -msgstr "" +msgstr "Recurso \"{0}\" no fue encontrado." #: ckanext/datastore/logic/auth.py:16 msgid "User {0} not authorized to update resource {1}" -msgstr "" +msgstr "El usuario {0} no está autorizado para actualizar el recurso {1}" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conjuntos de datos por página" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configuración de prueba" #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "Campo Personalizado Ascendente" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "Campo Personalizado Descendente" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "Custom Text" -msgstr "" +msgstr "Texto personalizado" #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 msgid "custom text" -msgstr "" +msgstr "texto personalizado" #: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 msgid "Country Code" -msgstr "" +msgstr "Código de País" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" -msgstr "" +msgstr "texto personalizado de recurso" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Este texto no está traducido" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" -msgstr "" +msgstr "Este grupo no tiene una descripción" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "La herramienta de previsualización de CKAN tiene algunas características poderosas" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "URL de la imagen" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +msgstr "ej: http://ejemplo.com/imagen.jpg (si está en blanco utiliza la url del recurso)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" -msgstr "" +msgstr "Explorador de Datos" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "Tabla" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Gráfico" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" +msgstr "Mapa" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "error cargando la vista" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "Row offset" -msgstr "" +msgstr "Desplazamiento de fila" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "ej: 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Número de filas" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "ej: 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Tipo de gráfico" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Grupo (Eje 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Series (Eje 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "Tipo de campo" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" -msgstr "" +msgstr "Campo de latitud" #: ckanext/reclineview/theme/templates/recline_map_form.html:8 msgid "Longitude field" -msgstr "" +msgstr "Campo de longitud" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "Campo de GeoJSON" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" -msgstr "" +msgstr "Auto acercar a características" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "Marcadores de cluster" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" -msgstr "" +msgstr "Número total de conjuntos de datos" #: ckanext/stats/templates/ckanext/stats/index.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:40 msgid "Date" -msgstr "" +msgstr "Fecha" #: ckanext/stats/templates/ckanext/stats/index.html:18 msgid "Total datasets" -msgstr "" +msgstr "Total de conjuntos de datos" #: ckanext/stats/templates/ckanext/stats/index.html:33 #: ckanext/stats/templates/ckanext/stats/index.html:179 msgid "Dataset Revisions per Week" -msgstr "" +msgstr "Versiones de Conjuntos de Datos por Semana" #: ckanext/stats/templates/ckanext/stats/index.html:41 msgid "All dataset revisions" -msgstr "" +msgstr "Todas las versiones del conjunto de datos" #: ckanext/stats/templates/ckanext/stats/index.html:42 msgid "New datasets" -msgstr "" +msgstr "Nuevos conjuntos de datos" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" -msgstr "" +msgstr "Conjuntos de datos mejor valorados" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" -msgstr "" +msgstr "Valoración promedio" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" -msgstr "" +msgstr "Número de valoraciones" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" -msgstr "" +msgstr "Ninguna valoración" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" -msgstr "" +msgstr "Conjuntos de datos más editados" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" -msgstr "" +msgstr "Número de ediciones" #: ckanext/stats/templates/ckanext/stats/index.html:103 msgid "No edited datasets" -msgstr "" +msgstr "No existen conjuntos de datos editados" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" -msgstr "" +msgstr "Grupos más grandes" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" -msgstr "" +msgstr "Número de conjuntos de datos" #: ckanext/stats/templates/ckanext/stats/index.html:127 msgid "No groups" -msgstr "" +msgstr "No existen grupos" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" -msgstr "" +msgstr "Tags preferidos" #: ckanext/stats/templates/ckanext/stats/index.html:136 msgid "Tag Name" -msgstr "" +msgstr "Nombre de la Etiqueta" #: ckanext/stats/templates/ckanext/stats/index.html:137 #: ckanext/stats/templates/ckanext/stats/index.html:157 msgid "Number of Datasets" -msgstr "" +msgstr "Número de Conjuntos de Datos" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "" +msgid "Users Creating Most Datasets" +msgstr "Usuarios que han creado más conjuntos de datos" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" -msgstr "" +msgstr "Menú de Estadísticas" #: ckanext/stats/templates/ckanext/stats/index.html:178 msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" +msgstr "Número Total de Conjuntos de Datos" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Texto" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "Se ha producido un error: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Sitio web" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "Url de página web" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "ej: http://ejemplo.com (si está en blanco usa la url del recurso)" diff --git a/ckan/i18n/es_MX/LC_MESSAGES/ckan.mo b/ckan/i18n/es_MX/LC_MESSAGES/ckan.mo deleted file mode 100644 index f67bb25e850..00000000000 Binary files a/ckan/i18n/es_MX/LC_MESSAGES/ckan.mo and /dev/null differ diff --git a/ckan/i18n/es_MX/LC_MESSAGES/ckan.po b/ckan/i18n/es_MX/LC_MESSAGES/ckan.po deleted file mode 100644 index fbaa25f0ed0..00000000000 --- a/ckan/i18n/es_MX/LC_MESSAGES/ckan.po +++ /dev/null @@ -1,4837 +0,0 @@ -# Translations template for ckan. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the ckan project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: CKAN\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/ckan/language/es_MX/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ckan/new_authz.py:178 -#, python-format -msgid "Authorization function not found: %s" -msgstr "" - -#: ckan/new_authz.py:190 -msgid "Admin" -msgstr "" - -#: ckan/new_authz.py:194 -msgid "Editor" -msgstr "" - -#: ckan/new_authz.py:198 -msgid "Member" -msgstr "" - -#: ckan/controllers/admin.py:27 -msgid "Need to be system administrator to administer" -msgstr "" - -#: ckan/controllers/admin.py:43 -msgid "Site Title" -msgstr "" - -#: ckan/controllers/admin.py:44 -msgid "Style" -msgstr "" - -#: ckan/controllers/admin.py:45 -msgid "Site Tag Line" -msgstr "" - -#: ckan/controllers/admin.py:46 -msgid "Site Tag Logo" -msgstr "" - -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 -#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 -#: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 -#: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 -#: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 -msgid "About" -msgstr "" - -#: ckan/controllers/admin.py:47 -msgid "About page text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Intro Text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Text on home page" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Custom CSS" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Customisable css inserted into the page header" -msgstr "" - -#: ckan/controllers/admin.py:50 -msgid "Homepage" -msgstr "" - -#: ckan/controllers/admin.py:131 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" -msgstr "" - -#: ckan/controllers/admin.py:153 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "" - -#: ckan/controllers/admin.py:155 -msgid "Purge complete" -msgstr "" - -#: ckan/controllers/admin.py:157 -msgid "Action not implemented." -msgstr "" - -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 -#: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 -msgid "Not authorized to see this page" -msgstr "" - -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 -msgid "Access denied" -msgstr "" - -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 -#: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 -msgid "Not found" -msgstr "" - -#: ckan/controllers/api.py:130 -msgid "Bad request" -msgstr "" - -#: ckan/controllers/api.py:164 -#, python-format -msgid "Action name not known: %s" -msgstr "" - -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 -#, python-format -msgid "JSON Error: %s" -msgstr "" - -#: ckan/controllers/api.py:190 -#, python-format -msgid "Bad request data: %s" -msgstr "" - -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:318 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:357 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:389 -msgid "Unable to add package to search index" -msgstr "" - -#: ckan/controllers/api.py:419 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:442 -msgid "Unable to update search index" -msgstr "" - -#: ckan/controllers/api.py:466 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:489 -msgid "No revision specified" -msgstr "" - -#: ckan/controllers/api.py:493 -#, python-format -msgid "There is no revision with id: %s" -msgstr "" - -#: ckan/controllers/api.py:503 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" - -#: ckan/controllers/api.py:513 -#, python-format -msgid "Could not read parameters: %r" -msgstr "" - -#: ckan/controllers/api.py:574 -#, python-format -msgid "Bad search option: %s" -msgstr "" - -#: ckan/controllers/api.py:577 -#, python-format -msgid "Unknown register: %s" -msgstr "" - -#: ckan/controllers/api.py:586 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "" - -#: ckan/controllers/api.py:596 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" - -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 -msgid "Group not found" -msgstr "" - -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 -msgid "Organization not found" -msgstr "" - -#: ckan/controllers/group.py:172 -msgid "Incorrect group type" -msgstr "" - -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 -#, python-format -msgid "Unauthorized to read group %s" -msgstr "" - -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "" - -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 -#: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 -#: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 -#: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 -#: ckan/templates/group/read_base.html:6 -#: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "" - -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "" - -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 -msgid "Formats" -msgstr "" - -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 -msgid "Licenses" -msgstr "" - -#: ckan/controllers/group.py:429 -msgid "Not authorized to perform bulk update" -msgstr "" - -#: ckan/controllers/group.py:446 -msgid "Unauthorized to create a group" -msgstr "" - -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "" - -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 -msgid "Integrity Error" -msgstr "" - -#: ckan/controllers/group.py:586 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "" - -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "" - -#: ckan/controllers/group.py:609 -msgid "Organization has been deleted." -msgstr "" - -#: ckan/controllers/group.py:611 -msgid "Group has been deleted." -msgstr "" - -#: ckan/controllers/group.py:677 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "" - -#: ckan/controllers/group.py:694 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "" - -#: ckan/controllers/group.py:700 -msgid "Group member has been deleted." -msgstr "" - -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 -msgid "Select two revisions before doing the comparison." -msgstr "" - -#: ckan/controllers/group.py:741 -#, python-format -msgid "User %r not authorized to edit %r" -msgstr "" - -#: ckan/controllers/group.py:748 -msgid "CKAN Group Revision History" -msgstr "" - -#: ckan/controllers/group.py:751 -msgid "Recent changes to CKAN Group: " -msgstr "" - -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 -msgid "Log message: " -msgstr "" - -#: ckan/controllers/group.py:798 -msgid "Unauthorized to read group {group_id}" -msgstr "" - -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 -msgid "You are now following {0}" -msgstr "" - -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 -msgid "You are no longer following {0}" -msgstr "" - -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "" - -#: ckan/controllers/home.py:37 -msgid "This site is currently off-line. Database is not initialised." -msgstr "" - -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" - -#: ckan/controllers/home.py:105 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "" - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 -msgid "Dataset not found" -msgstr "" - -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "" - -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 -#, python-format -msgid "Invalid revision format: %r" -msgstr "" - -#: ckan/controllers/package.py:427 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" - -#: ckan/controllers/package.py:472 -msgid "CKAN Dataset Revision History" -msgstr "" - -#: ckan/controllers/package.py:475 -msgid "Recent changes to CKAN Dataset: " -msgstr "" - -#: ckan/controllers/package.py:532 -msgid "Unauthorized to create a package" -msgstr "" - -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 -msgid "Unauthorized to edit this resource" -msgstr "" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 -msgid "Resource not found" -msgstr "" - -#: ckan/controllers/package.py:682 -msgid "Unauthorized to update dataset" -msgstr "" - -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 -msgid "The dataset {id} could not be found." -msgstr "" - -#: ckan/controllers/package.py:688 -msgid "You must add at least one data resource" -msgstr "" - -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 -msgid "Error" -msgstr "" - -#: ckan/controllers/package.py:714 -msgid "Unauthorized to create a resource" -msgstr "" - -#: ckan/controllers/package.py:750 -msgid "Unauthorized to create a resource for this package" -msgstr "" - -#: ckan/controllers/package.py:973 -msgid "Unable to add package to search index." -msgstr "" - -#: ckan/controllers/package.py:1020 -msgid "Unable to update search index." -msgstr "" - -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "" - -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1088 -msgid "Resource has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1093 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "" - -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "" - -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 -msgid "Resource view not found" -msgstr "" - -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "" - -#: ckan/controllers/package.py:1193 -msgid "Resource data not found" -msgstr "" - -#: ckan/controllers/package.py:1201 -msgid "No download is available" -msgstr "" - -#: ckan/controllers/package.py:1523 -msgid "Unauthorized to edit resource" -msgstr "" - -#: ckan/controllers/package.py:1541 -msgid "View not found" -msgstr "" - -#: ckan/controllers/package.py:1543 -#, python-format -msgid "Unauthorized to view View %s" -msgstr "" - -#: ckan/controllers/package.py:1549 -msgid "View Type Not found" -msgstr "" - -#: ckan/controllers/package.py:1609 -msgid "Bad resource view data" -msgstr "" - -#: ckan/controllers/package.py:1618 -#, python-format -msgid "Unauthorized to read resource view %s" -msgstr "" - -#: ckan/controllers/package.py:1621 -msgid "Resource view not supplied" -msgstr "" - -#: ckan/controllers/package.py:1650 -msgid "No preview has been defined." -msgstr "" - -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - -#: ckan/controllers/revision.py:42 -msgid "CKAN Repository Revision History" -msgstr "" - -#: ckan/controllers/revision.py:44 -msgid "Recent changes to the CKAN repository." -msgstr "" - -#: ckan/controllers/revision.py:108 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "" - -#: ckan/controllers/revision.py:188 -msgid "Revision updated" -msgstr "" - -#: ckan/controllers/tag.py:56 -msgid "Other" -msgstr "" - -#: ckan/controllers/tag.py:70 -msgid "Tag not found" -msgstr "" - -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 -msgid "User not found" -msgstr "" - -#: ckan/controllers/user.py:149 -msgid "Unauthorized to register as a user." -msgstr "" - -#: ckan/controllers/user.py:166 -msgid "Unauthorized to create a user" -msgstr "" - -#: ckan/controllers/user.py:197 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" - -#: ckan/controllers/user.py:211 ckan/controllers/user.py:270 -msgid "No user specified" -msgstr "" - -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "" - -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 -msgid "Profile updated" -msgstr "" - -#: ckan/controllers/user.py:232 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "" - -#: ckan/controllers/user.py:238 -msgid "Bad Captcha. Please try again." -msgstr "" - -#: ckan/controllers/user.py:255 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "" - -#: ckan/controllers/user.py:276 -msgid "Unauthorized to edit a user." -msgstr "" - -#: ckan/controllers/user.py:302 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "" - -#: ckan/controllers/user.py:383 -msgid "Login failed. Bad username or password." -msgstr "" - -#: ckan/controllers/user.py:417 -msgid "Unauthorized to request reset password." -msgstr "" - -#: ckan/controllers/user.py:446 -#, python-format -msgid "\"%s\" matched several users" -msgstr "" - -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 -#, python-format -msgid "No such user: %s" -msgstr "" - -#: ckan/controllers/user.py:455 -msgid "Please check your inbox for a reset code." -msgstr "" - -#: ckan/controllers/user.py:459 -#, python-format -msgid "Could not send reset link: %s" -msgstr "" - -#: ckan/controllers/user.py:474 -msgid "Unauthorized to reset password." -msgstr "" - -#: ckan/controllers/user.py:486 -msgid "Invalid reset key. Please try again." -msgstr "" - -#: ckan/controllers/user.py:498 -msgid "Your password has been reset." -msgstr "" - -#: ckan/controllers/user.py:519 -msgid "Your password must be 4 characters or longer." -msgstr "" - -#: ckan/controllers/user.py:522 -msgid "The passwords you entered do not match." -msgstr "" - -#: ckan/controllers/user.py:525 -msgid "You must provide a password" -msgstr "" - -#: ckan/controllers/user.py:589 -msgid "Follow item not found" -msgstr "" - -#: ckan/controllers/user.py:593 -msgid "{0} not found" -msgstr "" - -#: ckan/controllers/user.py:595 -msgid "Unauthorized to read {0} {1}" -msgstr "" - -#: ckan/controllers/user.py:610 -msgid "Everything" -msgstr "" - -#: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 -msgid "Missing Value" -msgstr "" - -#: ckan/controllers/util.py:21 -msgid "Redirecting to external site is not allowed." -msgstr "" - -#: ckan/lib/activity_streams.py:64 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:67 -msgid "{actor} updated the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:70 -msgid "{actor} updated the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:73 -msgid "{actor} updated the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:76 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:79 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:82 -msgid "{actor} updated their profile" -msgstr "" - -#: ckan/lib/activity_streams.py:86 -msgid "" -"{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:89 -msgid "{actor} updated the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:92 -msgid "{actor} deleted the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:95 -msgid "{actor} deleted the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:98 -msgid "{actor} deleted the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:101 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:104 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:108 -msgid "{actor} created the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:111 -msgid "{actor} created the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:114 -msgid "{actor} created the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:117 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:120 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:123 -msgid "{actor} signed up" -msgstr "" - -#: ckan/lib/activity_streams.py:126 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:129 -msgid "{actor} deleted the related item {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:132 -msgid "{actor} started following {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:135 -msgid "{actor} started following {user}" -msgstr "" - -#: ckan/lib/activity_streams.py:138 -msgid "{actor} started following {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:142 -msgid "" -"{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:145 -msgid "{actor} added the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "" - -#: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:17 -msgid "January" -msgstr "" - -#: ckan/lib/formatters.py:21 -msgid "February" -msgstr "" - -#: ckan/lib/formatters.py:25 -msgid "March" -msgstr "" - -#: ckan/lib/formatters.py:29 -msgid "April" -msgstr "" - -#: ckan/lib/formatters.py:33 -msgid "May" -msgstr "" - -#: ckan/lib/formatters.py:37 -msgid "June" -msgstr "" - -#: ckan/lib/formatters.py:41 -msgid "July" -msgstr "" - -#: ckan/lib/formatters.py:45 -msgid "August" -msgstr "" - -#: ckan/lib/formatters.py:49 -msgid "September" -msgstr "" - -#: ckan/lib/formatters.py:53 -msgid "October" -msgstr "" - -#: ckan/lib/formatters.py:57 -msgid "November" -msgstr "" - -#: ckan/lib/formatters.py:61 -msgid "December" -msgstr "" - -#: ckan/lib/formatters.py:109 -msgid "Just now" -msgstr "" - -#: ckan/lib/formatters.py:111 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:114 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:120 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:123 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:125 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" - -#: ckan/lib/formatters.py:142 -msgid "{month} {day}, {year}" -msgstr "" - -#: ckan/lib/formatters.py:158 -msgid "{bytes} bytes" -msgstr "" - -#: ckan/lib/formatters.py:160 -msgid "{kibibytes} KiB" -msgstr "" - -#: ckan/lib/formatters.py:162 -msgid "{mebibytes} MiB" -msgstr "" - -#: ckan/lib/formatters.py:164 -msgid "{gibibytes} GiB" -msgstr "" - -#: ckan/lib/formatters.py:166 -msgid "{tebibytes} TiB" -msgstr "" - -#: ckan/lib/formatters.py:178 -msgid "{n}" -msgstr "" - -#: ckan/lib/formatters.py:180 -msgid "{k}k" -msgstr "" - -#: ckan/lib/formatters.py:182 -msgid "{m}M" -msgstr "" - -#: ckan/lib/formatters.py:184 -msgid "{g}G" -msgstr "" - -#: ckan/lib/formatters.py:186 -msgid "{t}T" -msgstr "" - -#: ckan/lib/formatters.py:188 -msgid "{p}P" -msgstr "" - -#: ckan/lib/formatters.py:190 -msgid "{e}E" -msgstr "" - -#: ckan/lib/formatters.py:192 -msgid "{z}Z" -msgstr "" - -#: ckan/lib/formatters.py:194 -msgid "{y}Y" -msgstr "" - -#: ckan/lib/helpers.py:858 -msgid "Update your avatar at gravatar.com" -msgstr "" - -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 -msgid "Unknown" -msgstr "" - -#: ckan/lib/helpers.py:1117 -msgid "Unnamed resource" -msgstr "" - -#: ckan/lib/helpers.py:1164 -msgid "Created new dataset." -msgstr "" - -#: ckan/lib/helpers.py:1166 -msgid "Edited resources." -msgstr "" - -#: ckan/lib/helpers.py:1168 -msgid "Edited settings." -msgstr "" - -#: ckan/lib/helpers.py:1431 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/helpers.py:1433 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/mailer.py:25 -#, python-format -msgid "Dear %s," -msgstr "" - -#: ckan/lib/mailer.py:38 -#, python-format -msgid "%s <%s>" -msgstr "" - -#: ckan/lib/mailer.py:99 -msgid "No recipient email address available!" -msgstr "" - -#: ckan/lib/mailer.py:104 -msgid "" -"You have requested your password on {site_title} to be reset.\n" -"\n" -"Please click the following link to confirm this request:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:119 -msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" -"\n" -"To accept this invite, please reset your password at:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "" - -#: ckan/lib/mailer.py:151 -msgid "Invite for {site_title}" -msgstr "" - -#: ckan/lib/navl/dictization_functions.py:11 -#: ckan/lib/navl/dictization_functions.py:13 -#: ckan/lib/navl/dictization_functions.py:15 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:19 -#: ckan/lib/navl/dictization_functions.py:21 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 -#: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 -msgid "Missing value" -msgstr "" - -#: ckan/lib/navl/validators.py:64 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "" - -#: ckan/lib/navl/validators.py:116 -msgid "Please enter an integer value" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -msgid "Package resource(s) invalid" -msgstr "" - -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 -msgid "Extras" -msgstr "" - -#: ckan/logic/converters.py:72 ckan/logic/converters.py:87 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" - -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "" - -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Dataset" -msgstr "" - -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Group" -msgstr "" - -#: ckan/logic/converters.py:178 -msgid "Could not parse as valid JSON" -msgstr "" - -#: ckan/logic/validators.py:30 ckan/logic/validators.py:39 -msgid "A organization must be supplied" -msgstr "" - -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 -msgid "Organization does not exist" -msgstr "" - -#: ckan/logic/validators.py:53 -msgid "You cannot add a dataset to this organization" -msgstr "" - -#: ckan/logic/validators.py:93 -msgid "Invalid integer" -msgstr "" - -#: ckan/logic/validators.py:98 -msgid "Must be a natural number" -msgstr "" - -#: ckan/logic/validators.py:104 -msgid "Must be a postive integer" -msgstr "" - -#: ckan/logic/validators.py:122 -msgid "Date format incorrect" -msgstr "" - -#: ckan/logic/validators.py:131 -msgid "No links are allowed in the log_message." -msgstr "" - -#: ckan/logic/validators.py:151 -msgid "Dataset id already exists" -msgstr "" - -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 -msgid "Resource" -msgstr "" - -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 -#: ckan/templates/snippets/related.html:2 -msgid "Related" -msgstr "" - -#: ckan/logic/validators.py:260 -msgid "That group name or ID does not exist." -msgstr "" - -#: ckan/logic/validators.py:274 -msgid "Activity type" -msgstr "" - -#: ckan/logic/validators.py:349 -msgid "Names must be strings" -msgstr "" - -#: ckan/logic/validators.py:353 -msgid "That name cannot be used" -msgstr "" - -#: ckan/logic/validators.py:356 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:361 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" - -#: ckan/logic/validators.py:379 -msgid "That URL is already in use." -msgstr "" - -#: ckan/logic/validators.py:384 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:388 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "" - -#: ckan/logic/validators.py:394 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:412 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "" - -#: ckan/logic/validators.py:428 -msgid "Group name already exists in database" -msgstr "" - -#: ckan/logic/validators.py:434 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:438 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" - -#: ckan/logic/validators.py:446 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" - -#: ckan/logic/validators.py:454 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "" - -#: ckan/logic/validators.py:563 -msgid "User names must be strings" -msgstr "" - -#: ckan/logic/validators.py:579 -msgid "That login name is not available." -msgstr "" - -#: ckan/logic/validators.py:588 -msgid "Please enter both passwords" -msgstr "" - -#: ckan/logic/validators.py:596 -msgid "Passwords must be strings" -msgstr "" - -#: ckan/logic/validators.py:600 -msgid "Your password must be 4 characters or longer" -msgstr "" - -#: ckan/logic/validators.py:608 -msgid "The passwords you entered do not match" -msgstr "" - -#: ckan/logic/validators.py:624 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" - -#: ckan/logic/validators.py:633 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:641 -msgid "That vocabulary name is already in use." -msgstr "" - -#: ckan/logic/validators.py:647 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" - -#: ckan/logic/validators.py:656 -msgid "Tag vocabulary was not found." -msgstr "" - -#: ckan/logic/validators.py:669 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:675 -msgid "No tag name" -msgstr "" - -#: ckan/logic/validators.py:688 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:711 -msgid "Please provide a valid URL" -msgstr "" - -#: ckan/logic/validators.py:725 -msgid "role does not exist." -msgstr "" - -#: ckan/logic/validators.py:754 -msgid "Datasets with no organization can't be private." -msgstr "" - -#: ckan/logic/validators.py:760 -msgid "Not a list" -msgstr "" - -#: ckan/logic/validators.py:763 -msgid "Not a string" -msgstr "" - -#: ckan/logic/validators.py:795 -msgid "This parent would create a loop in the hierarchy" -msgstr "" - -#: ckan/logic/validators.py:805 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" - -#: ckan/logic/validators.py:816 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" - -#: ckan/logic/validators.py:819 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" - -#: ckan/logic/validators.py:833 -msgid "There is a schema field with the same name" -msgstr "" - -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 -#, python-format -msgid "REST API: Create object %s" -msgstr "" - -#: ckan/logic/action/create.py:517 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/create.py:558 -#, python-format -msgid "REST API: Create member object %s" -msgstr "" - -#: ckan/logic/action/create.py:772 -msgid "Trying to create an organization as a group" -msgstr "" - -#: ckan/logic/action/create.py:859 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" - -#: ckan/logic/action/create.py:862 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "" - -#: ckan/logic/action/create.py:867 -msgid "Rating must be an integer value." -msgstr "" - -#: ckan/logic/action/create.py:871 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "" - -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 -msgid "You must be logged in to follow users" -msgstr "" - -#: ckan/logic/action/create.py:1236 -msgid "You cannot follow yourself" -msgstr "" - -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 -msgid "You are already following {0}" -msgstr "" - -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 -msgid "You must be logged in to follow a dataset." -msgstr "" - -#: ckan/logic/action/create.py:1335 -msgid "User {username} does not exist." -msgstr "" - -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 -msgid "You must be logged in to follow a group." -msgstr "" - -#: ckan/logic/action/delete.py:68 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "" - -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 -#, python-format -msgid "REST API: Delete %s" -msgstr "" - -#: ckan/logic/action/delete.py:270 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "" - -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 -msgid "id not in data" -msgstr "" - -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:501 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 -msgid "You must be logged in to unfollow something." -msgstr "" - -#: ckan/logic/action/delete.py:542 -msgid "You are not following {0}." -msgstr "" - -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 -msgid "Resource was not found." -msgstr "" - -#: ckan/logic/action/get.py:1851 -msgid "Do not specify if using \"query\" parameter" -msgstr "" - -#: ckan/logic/action/get.py:1860 -msgid "Must be : pair(s)" -msgstr "" - -#: ckan/logic/action/get.py:1892 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" - -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 -msgid "Item was not found." -msgstr "" - -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 -msgid "Package was not found." -msgstr "" - -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 -#, python-format -msgid "REST API: Update object %s" -msgstr "" - -#: ckan/logic/action/update.py:437 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/update.py:789 -msgid "TaskStatus was not found." -msgstr "" - -#: ckan/logic/action/update.py:1180 -msgid "Organization was not found." -msgstr "" - -#: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 -#, python-format -msgid "User %s not authorized to create packages" -msgstr "" - -#: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "" - -#: ckan/logic/auth/create.py:36 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" - -#: ckan/logic/auth/create.py:58 -msgid "You must be a sysadmin to create a featured related item" -msgstr "" - -#: ckan/logic/auth/create.py:62 -msgid "You must be logged in to add a related item" -msgstr "" - -#: ckan/logic/auth/create.py:77 -msgid "No dataset id provided, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 -#: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 -msgid "No package found for this resource, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:92 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" - -#: ckan/logic/auth/create.py:115 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "" - -#: ckan/logic/auth/create.py:126 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "" - -#: ckan/logic/auth/create.py:136 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "" - -#: ckan/logic/auth/create.py:152 -msgid "User {user} not authorized to create users via the API" -msgstr "" - -#: ckan/logic/auth/create.py:155 -msgid "Not authorized to create users" -msgstr "" - -#: ckan/logic/auth/create.py:198 -msgid "Group was not found." -msgstr "" - -#: ckan/logic/auth/create.py:218 -msgid "Valid API key needed to create a package" -msgstr "" - -#: ckan/logic/auth/create.py:226 -msgid "Valid API key needed to create a group" -msgstr "" - -#: ckan/logic/auth/create.py:246 -#, python-format -msgid "User %s not authorized to add members" -msgstr "" - -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:34 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "" - -#: ckan/logic/auth/delete.py:50 -msgid "Resource view not found, cannot check auth." -msgstr "" - -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 -msgid "Only the owner can delete a related item" -msgstr "" - -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "" - -#: ckan/logic/auth/delete.py:95 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "" - -#: ckan/logic/auth/delete.py:99 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:116 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "" - -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "" - -#: ckan/logic/auth/delete.py:133 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "" - -#: ckan/logic/auth/get.py:97 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "" - -#: ckan/logic/auth/get.py:119 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" - -#: ckan/logic/auth/get.py:141 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "" - -#: ckan/logic/auth/get.py:166 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" - -#: ckan/logic/auth/get.py:234 -msgid "You must be logged in to access your dashboard." -msgstr "" - -#: ckan/logic/auth/update.py:37 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "" - -#: ckan/logic/auth/update.py:69 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "" - -#: ckan/logic/auth/update.py:98 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "" - -#: ckan/logic/auth/update.py:126 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "" - -#: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 -msgid "Only the owner can update a related item" -msgstr "" - -#: ckan/logic/auth/update.py:148 -msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" - -#: ckan/logic/auth/update.py:165 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:182 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:209 -msgid "Have to be logged in to edit user" -msgstr "" - -#: ckan/logic/auth/update.py:217 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "" - -#: ckan/logic/auth/update.py:228 -msgid "User {0} not authorized to update user {1}" -msgstr "" - -#: ckan/logic/auth/update.py:236 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "" - -#: ckan/logic/auth/update.py:245 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "" - -#: ckan/logic/auth/update.py:259 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" - -#: ckan/logic/auth/update.py:281 -msgid "Valid API key needed to edit a package" -msgstr "" - -#: ckan/logic/auth/update.py:291 -msgid "Valid API key needed to edit a group" -msgstr "" - -#: ckan/model/license.py:177 -msgid "License not specified" -msgstr "" - -#: ckan/model/license.py:187 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" - -#: ckan/model/license.py:197 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" - -#: ckan/model/license.py:207 -msgid "Open Data Commons Attribution License" -msgstr "" - -#: ckan/model/license.py:218 -msgid "Creative Commons CCZero" -msgstr "" - -#: ckan/model/license.py:227 -msgid "Creative Commons Attribution" -msgstr "" - -#: ckan/model/license.py:237 -msgid "Creative Commons Attribution Share-Alike" -msgstr "" - -#: ckan/model/license.py:246 -msgid "GNU Free Documentation License" -msgstr "" - -#: ckan/model/license.py:256 -msgid "Other (Open)" -msgstr "" - -#: ckan/model/license.py:266 -msgid "Other (Public Domain)" -msgstr "" - -#: ckan/model/license.py:276 -msgid "Other (Attribution)" -msgstr "" - -#: ckan/model/license.py:288 -msgid "UK Open Government Licence (OGL)" -msgstr "" - -#: ckan/model/license.py:296 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "" - -#: ckan/model/license.py:304 -msgid "Other (Non-Commercial)" -msgstr "" - -#: ckan/model/license.py:312 -msgid "Other (Not Open)" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "depends on %s" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "is a dependency of %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "derives from %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "has derivation %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "links to %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is linked from %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a child of %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a parent of %s" -msgstr "" - -#: ckan/model/package_relationship.py:59 -#, python-format -msgid "has sibling %s" -msgstr "" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:12 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "" - -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:14 -#: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 -msgid "Cancel" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:15 -msgid "Upload" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Link" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:17 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 -msgid "Remove" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 -msgid "Image" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:19 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:20 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:25 -msgid "show more" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:26 -msgid "show less" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 -msgid "URL" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 -msgid "Edit" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "" - -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "" - -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "" - -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "" - -#: ckan/templates/footer.html:16 -msgid "Open Knowledge Foundation" -msgstr "" - -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" - -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "" - -#: ckan/templates/header.html:18 -msgid "View profile" -msgstr "" - -#: ckan/templates/header.html:25 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "" - -#: ckan/templates/header.html:40 -msgid "Log out" -msgstr "" - -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "" - -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "" - -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "" - -#: ckan/templates/header.html:112 -msgid "Search Datasets" -msgstr "" - -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 -#: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 -msgid "Search" -msgstr "" - -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "" - -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "" - -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "" - -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "" - -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "" - -#: ckan/templates/admin/config.html:11 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "" - -#: ckan/templates/admin/config.html:12 -msgid "Reset" -msgstr "" - -#: ckan/templates/admin/config.html:13 -msgid "Update Config" -msgstr "" - -#: ckan/templates/admin/config.html:22 -msgid "CKAN config options" -msgstr "" - -#: ckan/templates/admin/config.html:29 -#, python-format -msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " -"Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" -"

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" -msgstr "" - -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "" - -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "" - -#: ckan/templates/admin/index.html:20 -#, python-format -msgid "" -"

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" -msgstr "" - -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" - -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:12 -#, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "" - -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "" - -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "" - -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "" - -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "" - -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "" - -#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 -#: ckan/templates/organization/admins.html:3 -#: ckan/templates/organization/admins.html:6 -msgid "Administrators" -msgstr "" - -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "" - -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 -msgid "Confirm Delete" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "" - -#: ckan/templates/group/confirm_delete_member.html:11 -#: ckan/templates/organization/confirm_delete_member.html:11 -msgid "Are you sure you want to delete member - {name}?" -msgstr "" - -#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:11 -#: ckan/templates/group/read_base.html:12 -#: ckan/templates/organization/edit_base.html:11 -#: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "" - -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "" - -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 -#: ckan/templates/organization/edit_base.html:24 -#: ckan/templates/organization/members.html:3 -msgid "Members" -msgstr "" - -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "" - -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "" - -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "" - -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "" - -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -msgid "Edit Member" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "" - -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "" - -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "" - -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "" - -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" - -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "" - -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "" - -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:38 -msgid "Delete" -msgstr "" - -#: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 -msgid "Save" -msgstr "" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "" - -#: ckan/templates/group/member_new.html:81 -msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " -"datasets from groups

" -msgstr "" - -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "" - -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 -msgid "Description" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:8 -msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " -msgstr "" - -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "" - -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "" - -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "" - -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "" - -#: ckan/templates/home/snippets/about_text.html:1 -msgid "" -"

CKAN is the world’s leading open-source data portal platform.

" -"

CKAN is a complete out-of-the-box software solution that makes data " -"accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " -"government portals, as well as city and municipal sites in the US, UK, " -"Argentina, Finland and elsewhere.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features " -"overview: http://ckan.org/features/

" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:10 -msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "" - -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" - -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" - -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "dataset" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "datasets" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organization" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organizations" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "group" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "" - -#: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 -msgid "The form contains invalid entries:" -msgstr "" - -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "" - -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "" - -#: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 -msgid "Image URL" -msgstr "" - -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "" - -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "" - -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "" - -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" -msgstr "" - -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "" - -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "" - -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "" - -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "" - -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

Admin: Can add/edit and delete datasets, as well as " -"manage organization members.

Editor: Can add and " -"edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" -msgstr "" - -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "" - -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "" - -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:7 -msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" -msgstr "" - -#: ckan/templates/organization/snippets/helper.html:8 -msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "" - -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "" - -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "" - -#: ckan/templates/package/base_form_page.html:25 -msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " -msgstr "" - -#: ckan/templates/package/confirm_delete.html:11 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" - -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "" - -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "" - -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "" - -#: ckan/templates/package/edit_view.html:3 -#: ckan/templates/package/edit_view.html:4 -#: ckan/templates/package/edit_view.html:8 -#: ckan/templates/package/edit_view.html:12 -msgid "Edit view" -msgstr "" - -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "" - -#: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 -msgid "Update" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "" - -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "" - -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "" - -#: ckan/templates/package/new_view.html:3 -#: ckan/templates/package/new_view.html:4 -#: ckan/templates/package/new_view.html:8 -#: ckan/templates/package/new_view.html:12 -msgid "Add view" -msgstr "" - -#: ckan/templates/package/new_view.html:19 -msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " -msgstr "" - -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "" - -#: ckan/templates/package/read_base.html:38 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" - -#: ckan/templates/package/related_list.html:7 -msgid "Related Media for {dataset}" -msgstr "" - -#: ckan/templates/package/related_list.html:12 -msgid "No related items" -msgstr "" - -#: ckan/templates/package/related_list.html:17 -msgid "Add Related Item" -msgstr "" - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:45 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:49 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "" - -#: ckan/templates/package/resource_data.html:53 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:59 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:71 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:78 -msgid "End of log" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "" - -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "" - -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "" - -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "" - -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "" - -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" - -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" - -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" - -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" - -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "" - -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "" - -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "" - -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "" - -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 -msgid "Created" -msgstr "" - -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "" - -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "" - -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" - -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" - -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "" - -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

This dataset has no data, why not " -"add some?

" -msgstr "" - -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "" - -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "" - -#: ckan/templates/package/search.html:56 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" - -#: ckan/templates/package/search.html:60 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " -msgstr "" - -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:37 -#: ckan/templates/package/snippets/additional_info.html:42 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -msgid "Maintainer" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" - -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 -msgid "Title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:40 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:69 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:73 -msgid "No organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:88 -msgid "Visibility" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:91 -msgid "Public" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:110 -msgid "Active" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:28 -msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -#: ckan/templates/user/new_user_form.html:6 -msgid "Joe Bloggs" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -#: ckan/templates/user/new_user_form.html:7 -msgid "joe@example.com" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "" - -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "File" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:10 -msgid "Embed" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "" - -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "" - -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:30 -#: ckan/templates/package/snippets/stages.html:34 -#: ckan/templates/package/snippets/stages.html:36 -msgid "Add data" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "" - -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "" - -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "" - -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "" - -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "" - -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "" - -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "" - -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "" - -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "" - -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 -msgid "Home" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "" - -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "" - -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" - -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "" - -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "" - -#: ckan/templates/snippets/related.html:15 -msgid "" -"No apps, ideas, news stories or images have been related to this dataset " -"yet." -msgstr "" - -#: ckan/templates/snippets/related.html:18 -msgid "Add Item" -msgstr "" - -#: ckan/templates/snippets/search_form.html:16 -msgid "Submit" -msgstr "" - -#: ckan/templates/snippets/search_form.html:31 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "" - -#: ckan/templates/snippets/search_form.html:77 -msgid "

Please try another search.

" -msgstr "" - -#: ckan/templates/snippets/search_form.html:83 -msgid "" -"

There was an error while searching. Please try " -"again.

" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:15 -msgid "{number} dataset found for \"{query}\"" -msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:21 -msgid "{number} group found for \"{query}\"" -msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:27 -msgid "{number} organization found for \"{query}\"" -msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "" - -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 -#: ckan/templates/user/new_user_form.html:7 -#: ckan/templates/user/read_base.html:82 -msgid "Email" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "" - -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "" - -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "" - -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "" - -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "" - -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "" - -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "" - -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "" - -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "" - -#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 -#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 -#: ckan/templates/user/snippets/user_search.html:2 -msgid "Users" -msgstr "" - -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "" - -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" - -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "Full name" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "eg. Joe Bloggs" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:13 -msgid "eg. joe@example.com" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:15 -msgid "A little information about yourself" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:18 -msgid "Subscribe to notification emails" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:27 -msgid "Change password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:29 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:31 -msgid "Confirm Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:37 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:43 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:44 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:48 -msgid "Update Profile" -msgstr "" - -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "" - -#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 -#: ckan/templates/user/login.html:12 -#: ckan/templates/user/snippets/login_form.html:28 -msgid "Login" -msgstr "" - -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "" - -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "" - -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "" - -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "" - -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" - -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "" - -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "" - -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "" - -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "" - -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:19 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:20 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:27 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:31 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:652 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:16 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "Custom Text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" - -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" - -#: ckanext/reclineview/plugin.py:82 -msgid "Data Explorer" -msgstr "" - -#: ckanext/reclineview/plugin.py:106 -msgid "Table" -msgstr "" - -#: ckanext/reclineview/plugin.py:149 -msgid "Graph" -msgstr "" - -#: ckanext/reclineview/plugin.py:207 -msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 -msgid "Total number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 -msgid "Top Rated Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Average rating" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 -msgid "No ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 -msgid "Most Edited Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Number of edits" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 -msgid "Largest Groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Number of datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 -msgid "Top Tags" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "" - -#: ckanext/webpageview/plugin.py:24 -msgid "Website" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" diff --git a/ckan/i18n/eu/LC_MESSAGES/ckan.mo b/ckan/i18n/eu/LC_MESSAGES/ckan.mo deleted file mode 100644 index 7706c0977c9..00000000000 Binary files a/ckan/i18n/eu/LC_MESSAGES/ckan.mo and /dev/null differ diff --git a/ckan/i18n/eu/LC_MESSAGES/ckan.po b/ckan/i18n/eu/LC_MESSAGES/ckan.po deleted file mode 100644 index 7212aab92dc..00000000000 --- a/ckan/i18n/eu/LC_MESSAGES/ckan.po +++ /dev/null @@ -1,4838 +0,0 @@ -# Translations template for ckan. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the ckan project. -# -# Translators: -# Asier Murciego , 2014 -msgid "" -msgstr "" -"Project-Id-Version: CKAN\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:20+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Basque (http://www.transifex.com/projects/p/ckan/language/eu/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ckan/new_authz.py:178 -#, python-format -msgid "Authorization function not found: %s" -msgstr "" - -#: ckan/new_authz.py:190 -msgid "Admin" -msgstr "" - -#: ckan/new_authz.py:194 -msgid "Editor" -msgstr "" - -#: ckan/new_authz.py:198 -msgid "Member" -msgstr "" - -#: ckan/controllers/admin.py:27 -msgid "Need to be system administrator to administer" -msgstr "" - -#: ckan/controllers/admin.py:43 -msgid "Site Title" -msgstr "" - -#: ckan/controllers/admin.py:44 -msgid "Style" -msgstr "" - -#: ckan/controllers/admin.py:45 -msgid "Site Tag Line" -msgstr "" - -#: ckan/controllers/admin.py:46 -msgid "Site Tag Logo" -msgstr "" - -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 -#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 -#: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 -#: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 -#: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 -msgid "About" -msgstr "" - -#: ckan/controllers/admin.py:47 -msgid "About page text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Intro Text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Text on home page" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Custom CSS" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Customisable css inserted into the page header" -msgstr "" - -#: ckan/controllers/admin.py:50 -msgid "Homepage" -msgstr "" - -#: ckan/controllers/admin.py:131 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" -msgstr "" - -#: ckan/controllers/admin.py:153 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "" - -#: ckan/controllers/admin.py:155 -msgid "Purge complete" -msgstr "" - -#: ckan/controllers/admin.py:157 -msgid "Action not implemented." -msgstr "" - -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 -#: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 -msgid "Not authorized to see this page" -msgstr "" - -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 -msgid "Access denied" -msgstr "" - -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 -#: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 -msgid "Not found" -msgstr "" - -#: ckan/controllers/api.py:130 -msgid "Bad request" -msgstr "" - -#: ckan/controllers/api.py:164 -#, python-format -msgid "Action name not known: %s" -msgstr "" - -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 -#, python-format -msgid "JSON Error: %s" -msgstr "" - -#: ckan/controllers/api.py:190 -#, python-format -msgid "Bad request data: %s" -msgstr "" - -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:318 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:357 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:389 -msgid "Unable to add package to search index" -msgstr "" - -#: ckan/controllers/api.py:419 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:442 -msgid "Unable to update search index" -msgstr "" - -#: ckan/controllers/api.py:466 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:489 -msgid "No revision specified" -msgstr "" - -#: ckan/controllers/api.py:493 -#, python-format -msgid "There is no revision with id: %s" -msgstr "" - -#: ckan/controllers/api.py:503 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" - -#: ckan/controllers/api.py:513 -#, python-format -msgid "Could not read parameters: %r" -msgstr "" - -#: ckan/controllers/api.py:574 -#, python-format -msgid "Bad search option: %s" -msgstr "" - -#: ckan/controllers/api.py:577 -#, python-format -msgid "Unknown register: %s" -msgstr "" - -#: ckan/controllers/api.py:586 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "" - -#: ckan/controllers/api.py:596 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" - -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 -msgid "Group not found" -msgstr "" - -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 -msgid "Organization not found" -msgstr "" - -#: ckan/controllers/group.py:172 -msgid "Incorrect group type" -msgstr "" - -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 -#, python-format -msgid "Unauthorized to read group %s" -msgstr "" - -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "" - -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 -#: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 -#: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 -#: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 -#: ckan/templates/group/read_base.html:6 -#: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "Taldeak" - -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "" - -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 -msgid "Formats" -msgstr "" - -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 -msgid "Licenses" -msgstr "" - -#: ckan/controllers/group.py:429 -msgid "Not authorized to perform bulk update" -msgstr "" - -#: ckan/controllers/group.py:446 -msgid "Unauthorized to create a group" -msgstr "" - -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "" - -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 -msgid "Integrity Error" -msgstr "" - -#: ckan/controllers/group.py:586 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "" - -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "" - -#: ckan/controllers/group.py:609 -msgid "Organization has been deleted." -msgstr "" - -#: ckan/controllers/group.py:611 -msgid "Group has been deleted." -msgstr "" - -#: ckan/controllers/group.py:677 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "" - -#: ckan/controllers/group.py:694 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "" - -#: ckan/controllers/group.py:700 -msgid "Group member has been deleted." -msgstr "" - -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 -msgid "Select two revisions before doing the comparison." -msgstr "" - -#: ckan/controllers/group.py:741 -#, python-format -msgid "User %r not authorized to edit %r" -msgstr "" - -#: ckan/controllers/group.py:748 -msgid "CKAN Group Revision History" -msgstr "" - -#: ckan/controllers/group.py:751 -msgid "Recent changes to CKAN Group: " -msgstr "" - -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 -msgid "Log message: " -msgstr "" - -#: ckan/controllers/group.py:798 -msgid "Unauthorized to read group {group_id}" -msgstr "" - -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 -msgid "You are now following {0}" -msgstr "" - -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 -msgid "You are no longer following {0}" -msgstr "" - -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "" - -#: ckan/controllers/home.py:37 -msgid "This site is currently off-line. Database is not initialised." -msgstr "" - -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" - -#: ckan/controllers/home.py:105 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "" - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 -msgid "Dataset not found" -msgstr "" - -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "" - -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 -#, python-format -msgid "Invalid revision format: %r" -msgstr "" - -#: ckan/controllers/package.py:427 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" - -#: ckan/controllers/package.py:472 -msgid "CKAN Dataset Revision History" -msgstr "" - -#: ckan/controllers/package.py:475 -msgid "Recent changes to CKAN Dataset: " -msgstr "" - -#: ckan/controllers/package.py:532 -msgid "Unauthorized to create a package" -msgstr "" - -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 -msgid "Unauthorized to edit this resource" -msgstr "" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 -msgid "Resource not found" -msgstr "" - -#: ckan/controllers/package.py:682 -msgid "Unauthorized to update dataset" -msgstr "" - -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 -msgid "The dataset {id} could not be found." -msgstr "" - -#: ckan/controllers/package.py:688 -msgid "You must add at least one data resource" -msgstr "" - -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 -msgid "Error" -msgstr "" - -#: ckan/controllers/package.py:714 -msgid "Unauthorized to create a resource" -msgstr "" - -#: ckan/controllers/package.py:750 -msgid "Unauthorized to create a resource for this package" -msgstr "" - -#: ckan/controllers/package.py:973 -msgid "Unable to add package to search index." -msgstr "" - -#: ckan/controllers/package.py:1020 -msgid "Unable to update search index." -msgstr "" - -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "" - -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1088 -msgid "Resource has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1093 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "" - -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "" - -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 -msgid "Resource view not found" -msgstr "" - -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "" - -#: ckan/controllers/package.py:1193 -msgid "Resource data not found" -msgstr "" - -#: ckan/controllers/package.py:1201 -msgid "No download is available" -msgstr "" - -#: ckan/controllers/package.py:1523 -msgid "Unauthorized to edit resource" -msgstr "" - -#: ckan/controllers/package.py:1541 -msgid "View not found" -msgstr "" - -#: ckan/controllers/package.py:1543 -#, python-format -msgid "Unauthorized to view View %s" -msgstr "" - -#: ckan/controllers/package.py:1549 -msgid "View Type Not found" -msgstr "" - -#: ckan/controllers/package.py:1609 -msgid "Bad resource view data" -msgstr "" - -#: ckan/controllers/package.py:1618 -#, python-format -msgid "Unauthorized to read resource view %s" -msgstr "" - -#: ckan/controllers/package.py:1621 -msgid "Resource view not supplied" -msgstr "" - -#: ckan/controllers/package.py:1650 -msgid "No preview has been defined." -msgstr "" - -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Ikusiena" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Ikusiena" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Berriena" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Zaharrena" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Ideia" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - -#: ckan/controllers/revision.py:42 -msgid "CKAN Repository Revision History" -msgstr "" - -#: ckan/controllers/revision.py:44 -msgid "Recent changes to the CKAN repository." -msgstr "" - -#: ckan/controllers/revision.py:108 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "" - -#: ckan/controllers/revision.py:188 -msgid "Revision updated" -msgstr "" - -#: ckan/controllers/tag.py:56 -msgid "Other" -msgstr "" - -#: ckan/controllers/tag.py:70 -msgid "Tag not found" -msgstr "" - -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 -msgid "User not found" -msgstr "" - -#: ckan/controllers/user.py:149 -msgid "Unauthorized to register as a user." -msgstr "" - -#: ckan/controllers/user.py:166 -msgid "Unauthorized to create a user" -msgstr "" - -#: ckan/controllers/user.py:197 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" - -#: ckan/controllers/user.py:211 ckan/controllers/user.py:270 -msgid "No user specified" -msgstr "" - -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "" - -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 -msgid "Profile updated" -msgstr "" - -#: ckan/controllers/user.py:232 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "" - -#: ckan/controllers/user.py:238 -msgid "Bad Captcha. Please try again." -msgstr "" - -#: ckan/controllers/user.py:255 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "" - -#: ckan/controllers/user.py:276 -msgid "Unauthorized to edit a user." -msgstr "" - -#: ckan/controllers/user.py:302 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "" - -#: ckan/controllers/user.py:383 -msgid "Login failed. Bad username or password." -msgstr "" - -#: ckan/controllers/user.py:417 -msgid "Unauthorized to request reset password." -msgstr "" - -#: ckan/controllers/user.py:446 -#, python-format -msgid "\"%s\" matched several users" -msgstr "" - -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 -#, python-format -msgid "No such user: %s" -msgstr "" - -#: ckan/controllers/user.py:455 -msgid "Please check your inbox for a reset code." -msgstr "" - -#: ckan/controllers/user.py:459 -#, python-format -msgid "Could not send reset link: %s" -msgstr "" - -#: ckan/controllers/user.py:474 -msgid "Unauthorized to reset password." -msgstr "" - -#: ckan/controllers/user.py:486 -msgid "Invalid reset key. Please try again." -msgstr "" - -#: ckan/controllers/user.py:498 -msgid "Your password has been reset." -msgstr "" - -#: ckan/controllers/user.py:519 -msgid "Your password must be 4 characters or longer." -msgstr "" - -#: ckan/controllers/user.py:522 -msgid "The passwords you entered do not match." -msgstr "" - -#: ckan/controllers/user.py:525 -msgid "You must provide a password" -msgstr "" - -#: ckan/controllers/user.py:589 -msgid "Follow item not found" -msgstr "" - -#: ckan/controllers/user.py:593 -msgid "{0} not found" -msgstr "" - -#: ckan/controllers/user.py:595 -msgid "Unauthorized to read {0} {1}" -msgstr "" - -#: ckan/controllers/user.py:610 -msgid "Everything" -msgstr "" - -#: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 -msgid "Missing Value" -msgstr "" - -#: ckan/controllers/util.py:21 -msgid "Redirecting to external site is not allowed." -msgstr "" - -#: ckan/lib/activity_streams.py:64 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:67 -msgid "{actor} updated the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:70 -msgid "{actor} updated the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:73 -msgid "{actor} updated the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:76 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:79 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:82 -msgid "{actor} updated their profile" -msgstr "" - -#: ckan/lib/activity_streams.py:86 -msgid "" -"{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:89 -msgid "{actor} updated the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:92 -msgid "{actor} deleted the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:95 -msgid "{actor} deleted the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:98 -msgid "{actor} deleted the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:101 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:104 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:108 -msgid "{actor} created the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:111 -msgid "{actor} created the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:114 -msgid "{actor} created the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:117 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:120 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:123 -msgid "{actor} signed up" -msgstr "" - -#: ckan/lib/activity_streams.py:126 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:129 -msgid "{actor} deleted the related item {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:132 -msgid "{actor} started following {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:135 -msgid "{actor} started following {user}" -msgstr "" - -#: ckan/lib/activity_streams.py:138 -msgid "{actor} started following {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:142 -msgid "" -"{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:145 -msgid "{actor} added the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "" - -#: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:17 -msgid "January" -msgstr "" - -#: ckan/lib/formatters.py:21 -msgid "February" -msgstr "" - -#: ckan/lib/formatters.py:25 -msgid "March" -msgstr "" - -#: ckan/lib/formatters.py:29 -msgid "April" -msgstr "" - -#: ckan/lib/formatters.py:33 -msgid "May" -msgstr "" - -#: ckan/lib/formatters.py:37 -msgid "June" -msgstr "" - -#: ckan/lib/formatters.py:41 -msgid "July" -msgstr "" - -#: ckan/lib/formatters.py:45 -msgid "August" -msgstr "" - -#: ckan/lib/formatters.py:49 -msgid "September" -msgstr "" - -#: ckan/lib/formatters.py:53 -msgid "October" -msgstr "" - -#: ckan/lib/formatters.py:57 -msgid "November" -msgstr "" - -#: ckan/lib/formatters.py:61 -msgid "December" -msgstr "" - -#: ckan/lib/formatters.py:109 -msgid "Just now" -msgstr "" - -#: ckan/lib/formatters.py:111 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:114 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:120 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:123 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:125 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" - -#: ckan/lib/formatters.py:142 -msgid "{month} {day}, {year}" -msgstr "" - -#: ckan/lib/formatters.py:158 -msgid "{bytes} bytes" -msgstr "" - -#: ckan/lib/formatters.py:160 -msgid "{kibibytes} KiB" -msgstr "" - -#: ckan/lib/formatters.py:162 -msgid "{mebibytes} MiB" -msgstr "" - -#: ckan/lib/formatters.py:164 -msgid "{gibibytes} GiB" -msgstr "" - -#: ckan/lib/formatters.py:166 -msgid "{tebibytes} TiB" -msgstr "" - -#: ckan/lib/formatters.py:178 -msgid "{n}" -msgstr "" - -#: ckan/lib/formatters.py:180 -msgid "{k}k" -msgstr "" - -#: ckan/lib/formatters.py:182 -msgid "{m}M" -msgstr "" - -#: ckan/lib/formatters.py:184 -msgid "{g}G" -msgstr "" - -#: ckan/lib/formatters.py:186 -msgid "{t}T" -msgstr "" - -#: ckan/lib/formatters.py:188 -msgid "{p}P" -msgstr "" - -#: ckan/lib/formatters.py:190 -msgid "{e}E" -msgstr "" - -#: ckan/lib/formatters.py:192 -msgid "{z}Z" -msgstr "" - -#: ckan/lib/formatters.py:194 -msgid "{y}Y" -msgstr "" - -#: ckan/lib/helpers.py:858 -msgid "Update your avatar at gravatar.com" -msgstr "" - -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 -msgid "Unknown" -msgstr "" - -#: ckan/lib/helpers.py:1117 -msgid "Unnamed resource" -msgstr "" - -#: ckan/lib/helpers.py:1164 -msgid "Created new dataset." -msgstr "" - -#: ckan/lib/helpers.py:1166 -msgid "Edited resources." -msgstr "" - -#: ckan/lib/helpers.py:1168 -msgid "Edited settings." -msgstr "" - -#: ckan/lib/helpers.py:1431 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/helpers.py:1433 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/mailer.py:25 -#, python-format -msgid "Dear %s," -msgstr "" - -#: ckan/lib/mailer.py:38 -#, python-format -msgid "%s <%s>" -msgstr "" - -#: ckan/lib/mailer.py:99 -msgid "No recipient email address available!" -msgstr "" - -#: ckan/lib/mailer.py:104 -msgid "" -"You have requested your password on {site_title} to be reset.\n" -"\n" -"Please click the following link to confirm this request:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:119 -msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" -"\n" -"To accept this invite, please reset your password at:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "" - -#: ckan/lib/mailer.py:151 -msgid "Invite for {site_title}" -msgstr "" - -#: ckan/lib/navl/dictization_functions.py:11 -#: ckan/lib/navl/dictization_functions.py:13 -#: ckan/lib/navl/dictization_functions.py:15 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:19 -#: ckan/lib/navl/dictization_functions.py:21 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 -#: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 -msgid "Missing value" -msgstr "" - -#: ckan/lib/navl/validators.py:64 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "" - -#: ckan/lib/navl/validators.py:116 -msgid "Please enter an integer value" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -msgid "Package resource(s) invalid" -msgstr "" - -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 -msgid "Extras" -msgstr "" - -#: ckan/logic/converters.py:72 ckan/logic/converters.py:87 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" - -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "" - -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Dataset" -msgstr "" - -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Group" -msgstr "" - -#: ckan/logic/converters.py:178 -msgid "Could not parse as valid JSON" -msgstr "" - -#: ckan/logic/validators.py:30 ckan/logic/validators.py:39 -msgid "A organization must be supplied" -msgstr "" - -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 -msgid "Organization does not exist" -msgstr "" - -#: ckan/logic/validators.py:53 -msgid "You cannot add a dataset to this organization" -msgstr "" - -#: ckan/logic/validators.py:93 -msgid "Invalid integer" -msgstr "" - -#: ckan/logic/validators.py:98 -msgid "Must be a natural number" -msgstr "" - -#: ckan/logic/validators.py:104 -msgid "Must be a postive integer" -msgstr "" - -#: ckan/logic/validators.py:122 -msgid "Date format incorrect" -msgstr "" - -#: ckan/logic/validators.py:131 -msgid "No links are allowed in the log_message." -msgstr "" - -#: ckan/logic/validators.py:151 -msgid "Dataset id already exists" -msgstr "" - -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 -msgid "Resource" -msgstr "" - -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 -#: ckan/templates/snippets/related.html:2 -msgid "Related" -msgstr "" - -#: ckan/logic/validators.py:260 -msgid "That group name or ID does not exist." -msgstr "" - -#: ckan/logic/validators.py:274 -msgid "Activity type" -msgstr "" - -#: ckan/logic/validators.py:349 -msgid "Names must be strings" -msgstr "" - -#: ckan/logic/validators.py:353 -msgid "That name cannot be used" -msgstr "" - -#: ckan/logic/validators.py:356 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:361 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" - -#: ckan/logic/validators.py:379 -msgid "That URL is already in use." -msgstr "" - -#: ckan/logic/validators.py:384 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:388 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "" - -#: ckan/logic/validators.py:394 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:412 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "" - -#: ckan/logic/validators.py:428 -msgid "Group name already exists in database" -msgstr "" - -#: ckan/logic/validators.py:434 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:438 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" - -#: ckan/logic/validators.py:446 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" - -#: ckan/logic/validators.py:454 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "" - -#: ckan/logic/validators.py:563 -msgid "User names must be strings" -msgstr "" - -#: ckan/logic/validators.py:579 -msgid "That login name is not available." -msgstr "" - -#: ckan/logic/validators.py:588 -msgid "Please enter both passwords" -msgstr "" - -#: ckan/logic/validators.py:596 -msgid "Passwords must be strings" -msgstr "" - -#: ckan/logic/validators.py:600 -msgid "Your password must be 4 characters or longer" -msgstr "" - -#: ckan/logic/validators.py:608 -msgid "The passwords you entered do not match" -msgstr "" - -#: ckan/logic/validators.py:624 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" - -#: ckan/logic/validators.py:633 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:641 -msgid "That vocabulary name is already in use." -msgstr "" - -#: ckan/logic/validators.py:647 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" - -#: ckan/logic/validators.py:656 -msgid "Tag vocabulary was not found." -msgstr "" - -#: ckan/logic/validators.py:669 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:675 -msgid "No tag name" -msgstr "" - -#: ckan/logic/validators.py:688 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:711 -msgid "Please provide a valid URL" -msgstr "" - -#: ckan/logic/validators.py:725 -msgid "role does not exist." -msgstr "" - -#: ckan/logic/validators.py:754 -msgid "Datasets with no organization can't be private." -msgstr "" - -#: ckan/logic/validators.py:760 -msgid "Not a list" -msgstr "" - -#: ckan/logic/validators.py:763 -msgid "Not a string" -msgstr "" - -#: ckan/logic/validators.py:795 -msgid "This parent would create a loop in the hierarchy" -msgstr "" - -#: ckan/logic/validators.py:805 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" - -#: ckan/logic/validators.py:816 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" - -#: ckan/logic/validators.py:819 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" - -#: ckan/logic/validators.py:833 -msgid "There is a schema field with the same name" -msgstr "" - -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 -#, python-format -msgid "REST API: Create object %s" -msgstr "" - -#: ckan/logic/action/create.py:517 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/create.py:558 -#, python-format -msgid "REST API: Create member object %s" -msgstr "" - -#: ckan/logic/action/create.py:772 -msgid "Trying to create an organization as a group" -msgstr "" - -#: ckan/logic/action/create.py:859 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" - -#: ckan/logic/action/create.py:862 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "" - -#: ckan/logic/action/create.py:867 -msgid "Rating must be an integer value." -msgstr "" - -#: ckan/logic/action/create.py:871 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "" - -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 -msgid "You must be logged in to follow users" -msgstr "" - -#: ckan/logic/action/create.py:1236 -msgid "You cannot follow yourself" -msgstr "" - -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 -msgid "You are already following {0}" -msgstr "" - -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 -msgid "You must be logged in to follow a dataset." -msgstr "" - -#: ckan/logic/action/create.py:1335 -msgid "User {username} does not exist." -msgstr "" - -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 -msgid "You must be logged in to follow a group." -msgstr "" - -#: ckan/logic/action/delete.py:68 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "" - -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 -#, python-format -msgid "REST API: Delete %s" -msgstr "" - -#: ckan/logic/action/delete.py:270 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "" - -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 -msgid "id not in data" -msgstr "" - -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:501 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 -msgid "You must be logged in to unfollow something." -msgstr "" - -#: ckan/logic/action/delete.py:542 -msgid "You are not following {0}." -msgstr "" - -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 -msgid "Resource was not found." -msgstr "" - -#: ckan/logic/action/get.py:1851 -msgid "Do not specify if using \"query\" parameter" -msgstr "" - -#: ckan/logic/action/get.py:1860 -msgid "Must be : pair(s)" -msgstr "" - -#: ckan/logic/action/get.py:1892 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" - -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 -msgid "Item was not found." -msgstr "" - -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 -msgid "Package was not found." -msgstr "" - -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 -#, python-format -msgid "REST API: Update object %s" -msgstr "" - -#: ckan/logic/action/update.py:437 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/update.py:789 -msgid "TaskStatus was not found." -msgstr "" - -#: ckan/logic/action/update.py:1180 -msgid "Organization was not found." -msgstr "" - -#: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 -#, python-format -msgid "User %s not authorized to create packages" -msgstr "" - -#: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "" - -#: ckan/logic/auth/create.py:36 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" - -#: ckan/logic/auth/create.py:58 -msgid "You must be a sysadmin to create a featured related item" -msgstr "" - -#: ckan/logic/auth/create.py:62 -msgid "You must be logged in to add a related item" -msgstr "" - -#: ckan/logic/auth/create.py:77 -msgid "No dataset id provided, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 -#: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 -msgid "No package found for this resource, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:92 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" - -#: ckan/logic/auth/create.py:115 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "" - -#: ckan/logic/auth/create.py:126 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "" - -#: ckan/logic/auth/create.py:136 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "" - -#: ckan/logic/auth/create.py:152 -msgid "User {user} not authorized to create users via the API" -msgstr "" - -#: ckan/logic/auth/create.py:155 -msgid "Not authorized to create users" -msgstr "" - -#: ckan/logic/auth/create.py:198 -msgid "Group was not found." -msgstr "" - -#: ckan/logic/auth/create.py:218 -msgid "Valid API key needed to create a package" -msgstr "" - -#: ckan/logic/auth/create.py:226 -msgid "Valid API key needed to create a group" -msgstr "" - -#: ckan/logic/auth/create.py:246 -#, python-format -msgid "User %s not authorized to add members" -msgstr "" - -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:34 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "" - -#: ckan/logic/auth/delete.py:50 -msgid "Resource view not found, cannot check auth." -msgstr "" - -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 -msgid "Only the owner can delete a related item" -msgstr "" - -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "" - -#: ckan/logic/auth/delete.py:95 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "" - -#: ckan/logic/auth/delete.py:99 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:116 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "" - -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "" - -#: ckan/logic/auth/delete.py:133 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "" - -#: ckan/logic/auth/get.py:97 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "" - -#: ckan/logic/auth/get.py:119 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" - -#: ckan/logic/auth/get.py:141 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "" - -#: ckan/logic/auth/get.py:166 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" - -#: ckan/logic/auth/get.py:234 -msgid "You must be logged in to access your dashboard." -msgstr "" - -#: ckan/logic/auth/update.py:37 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "" - -#: ckan/logic/auth/update.py:69 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "" - -#: ckan/logic/auth/update.py:98 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "" - -#: ckan/logic/auth/update.py:126 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "" - -#: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 -msgid "Only the owner can update a related item" -msgstr "" - -#: ckan/logic/auth/update.py:148 -msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" - -#: ckan/logic/auth/update.py:165 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:182 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:209 -msgid "Have to be logged in to edit user" -msgstr "" - -#: ckan/logic/auth/update.py:217 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "" - -#: ckan/logic/auth/update.py:228 -msgid "User {0} not authorized to update user {1}" -msgstr "" - -#: ckan/logic/auth/update.py:236 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "" - -#: ckan/logic/auth/update.py:245 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "" - -#: ckan/logic/auth/update.py:259 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" - -#: ckan/logic/auth/update.py:281 -msgid "Valid API key needed to edit a package" -msgstr "" - -#: ckan/logic/auth/update.py:291 -msgid "Valid API key needed to edit a group" -msgstr "" - -#: ckan/model/license.py:177 -msgid "License not specified" -msgstr "" - -#: ckan/model/license.py:187 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" - -#: ckan/model/license.py:197 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" - -#: ckan/model/license.py:207 -msgid "Open Data Commons Attribution License" -msgstr "" - -#: ckan/model/license.py:218 -msgid "Creative Commons CCZero" -msgstr "" - -#: ckan/model/license.py:227 -msgid "Creative Commons Attribution" -msgstr "" - -#: ckan/model/license.py:237 -msgid "Creative Commons Attribution Share-Alike" -msgstr "" - -#: ckan/model/license.py:246 -msgid "GNU Free Documentation License" -msgstr "" - -#: ckan/model/license.py:256 -msgid "Other (Open)" -msgstr "" - -#: ckan/model/license.py:266 -msgid "Other (Public Domain)" -msgstr "" - -#: ckan/model/license.py:276 -msgid "Other (Attribution)" -msgstr "" - -#: ckan/model/license.py:288 -msgid "UK Open Government Licence (OGL)" -msgstr "" - -#: ckan/model/license.py:296 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "" - -#: ckan/model/license.py:304 -msgid "Other (Non-Commercial)" -msgstr "" - -#: ckan/model/license.py:312 -msgid "Other (Not Open)" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "depends on %s" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "is a dependency of %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "derives from %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "has derivation %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "links to %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is linked from %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a child of %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a parent of %s" -msgstr "" - -#: ckan/model/package_relationship.py:59 -#, python-format -msgid "has sibling %s" -msgstr "" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:12 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "" - -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:14 -#: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 -msgid "Cancel" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:15 -msgid "Upload" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Link" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:17 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 -msgid "Remove" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 -msgid "Image" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:19 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:20 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:25 -msgid "show more" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:26 -msgid "show less" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 -msgid "URL" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 -msgid "Edit" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "" - -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "" - -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "" - -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "" - -#: ckan/templates/footer.html:16 -msgid "Open Knowledge Foundation" -msgstr "" - -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" - -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "" - -#: ckan/templates/header.html:18 -msgid "View profile" -msgstr "" - -#: ckan/templates/header.html:25 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "" - -#: ckan/templates/header.html:40 -msgid "Log out" -msgstr "" - -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "" - -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "" - -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "" - -#: ckan/templates/header.html:112 -msgid "Search Datasets" -msgstr "" - -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 -#: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 -msgid "Search" -msgstr "" - -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "" - -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "" - -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "" - -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "" - -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "" - -#: ckan/templates/admin/config.html:11 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "" - -#: ckan/templates/admin/config.html:12 -msgid "Reset" -msgstr "" - -#: ckan/templates/admin/config.html:13 -msgid "Update Config" -msgstr "" - -#: ckan/templates/admin/config.html:22 -msgid "CKAN config options" -msgstr "" - -#: ckan/templates/admin/config.html:29 -#, python-format -msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " -"Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" -"

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" -msgstr "" - -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "" - -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "" - -#: ckan/templates/admin/index.html:20 -#, python-format -msgid "" -"

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" -msgstr "" - -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" - -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:12 -#, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "" - -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "" - -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "" - -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "" - -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "" - -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "" - -#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 -#: ckan/templates/organization/admins.html:3 -#: ckan/templates/organization/admins.html:6 -msgid "Administrators" -msgstr "" - -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "" - -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 -msgid "Confirm Delete" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "" - -#: ckan/templates/group/confirm_delete_member.html:11 -#: ckan/templates/organization/confirm_delete_member.html:11 -msgid "Are you sure you want to delete member - {name}?" -msgstr "" - -#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:11 -#: ckan/templates/group/read_base.html:12 -#: ckan/templates/organization/edit_base.html:11 -#: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "" - -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "" - -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 -#: ckan/templates/organization/edit_base.html:24 -#: ckan/templates/organization/members.html:3 -msgid "Members" -msgstr "" - -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "" - -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "" - -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "" - -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "" - -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -msgid "Edit Member" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "" - -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "" - -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "" - -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "" - -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" - -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "" - -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "" - -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:38 -msgid "Delete" -msgstr "" - -#: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 -msgid "Save" -msgstr "" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "" - -#: ckan/templates/group/member_new.html:81 -msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " -"datasets from groups

" -msgstr "" - -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "" - -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 -msgid "Description" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:8 -msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " -msgstr "" - -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "" - -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "" - -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "" - -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "" - -#: ckan/templates/home/snippets/about_text.html:1 -msgid "" -"

CKAN is the world’s leading open-source data portal platform.

" -"

CKAN is a complete out-of-the-box software solution that makes data " -"accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " -"government portals, as well as city and municipal sites in the US, UK, " -"Argentina, Finland and elsewhere.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features " -"overview: http://ckan.org/features/

" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:10 -msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "" - -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" - -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" - -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "dataset" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "datasets" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organization" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organizations" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "group" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "" - -#: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 -msgid "The form contains invalid entries:" -msgstr "" - -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "" - -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "" - -#: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 -msgid "Image URL" -msgstr "" - -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "" - -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "" - -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "" - -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" -msgstr "" - -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "" - -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "" - -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "" - -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "" - -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

Admin: Can add/edit and delete datasets, as well as " -"manage organization members.

Editor: Can add and " -"edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" -msgstr "" - -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "" - -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "" - -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:7 -msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" -msgstr "" - -#: ckan/templates/organization/snippets/helper.html:8 -msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "" - -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "" - -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "" - -#: ckan/templates/package/base_form_page.html:25 -msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " -msgstr "" - -#: ckan/templates/package/confirm_delete.html:11 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" - -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "" - -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "" - -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "" - -#: ckan/templates/package/edit_view.html:3 -#: ckan/templates/package/edit_view.html:4 -#: ckan/templates/package/edit_view.html:8 -#: ckan/templates/package/edit_view.html:12 -msgid "Edit view" -msgstr "" - -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "" - -#: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 -msgid "Update" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "" - -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "" - -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "" - -#: ckan/templates/package/new_view.html:3 -#: ckan/templates/package/new_view.html:4 -#: ckan/templates/package/new_view.html:8 -#: ckan/templates/package/new_view.html:12 -msgid "Add view" -msgstr "" - -#: ckan/templates/package/new_view.html:19 -msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " -msgstr "" - -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "" - -#: ckan/templates/package/read_base.html:38 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" - -#: ckan/templates/package/related_list.html:7 -msgid "Related Media for {dataset}" -msgstr "" - -#: ckan/templates/package/related_list.html:12 -msgid "No related items" -msgstr "" - -#: ckan/templates/package/related_list.html:17 -msgid "Add Related Item" -msgstr "" - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:45 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:49 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "" - -#: ckan/templates/package/resource_data.html:53 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:59 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:71 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:78 -msgid "End of log" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "" - -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "" - -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "" - -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "" - -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "" - -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" - -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" - -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" - -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" - -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "" - -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "" - -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "" - -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "" - -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 -msgid "Created" -msgstr "" - -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "" - -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "" - -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" - -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" - -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "" - -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

This dataset has no data, why not " -"add some?

" -msgstr "" - -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "" - -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "" - -#: ckan/templates/package/search.html:56 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" - -#: ckan/templates/package/search.html:60 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " -msgstr "" - -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:37 -#: ckan/templates/package/snippets/additional_info.html:42 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -msgid "Maintainer" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" - -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 -msgid "Title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:40 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:69 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:73 -msgid "No organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:88 -msgid "Visibility" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:91 -msgid "Public" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:110 -msgid "Active" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:28 -msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -#: ckan/templates/user/new_user_form.html:6 -msgid "Joe Bloggs" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -#: ckan/templates/user/new_user_form.html:7 -msgid "joe@example.com" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "" - -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "File" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:10 -msgid "Embed" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "" - -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "" - -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:30 -#: ckan/templates/package/snippets/stages.html:34 -#: ckan/templates/package/snippets/stages.html:36 -msgid "Add data" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "" - -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "" - -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "" - -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "" - -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "" - -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "" - -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "" - -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "" - -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "" - -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 -msgid "Home" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "" - -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "" - -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" - -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "" - -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "" - -#: ckan/templates/snippets/related.html:15 -msgid "" -"No apps, ideas, news stories or images have been related to this dataset " -"yet." -msgstr "" - -#: ckan/templates/snippets/related.html:18 -msgid "Add Item" -msgstr "" - -#: ckan/templates/snippets/search_form.html:16 -msgid "Submit" -msgstr "" - -#: ckan/templates/snippets/search_form.html:31 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "" - -#: ckan/templates/snippets/search_form.html:77 -msgid "

Please try another search.

" -msgstr "" - -#: ckan/templates/snippets/search_form.html:83 -msgid "" -"

There was an error while searching. Please try " -"again.

" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:15 -msgid "{number} dataset found for \"{query}\"" -msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:21 -msgid "{number} group found for \"{query}\"" -msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:27 -msgid "{number} organization found for \"{query}\"" -msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "" - -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 -#: ckan/templates/user/new_user_form.html:7 -#: ckan/templates/user/read_base.html:82 -msgid "Email" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "" - -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "" - -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "" - -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "" - -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "" - -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "" - -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "" - -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "" - -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "" - -#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 -#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 -#: ckan/templates/user/snippets/user_search.html:2 -msgid "Users" -msgstr "" - -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "" - -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" - -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "Full name" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "eg. Joe Bloggs" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:13 -msgid "eg. joe@example.com" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:15 -msgid "A little information about yourself" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:18 -msgid "Subscribe to notification emails" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:27 -msgid "Change password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:29 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:31 -msgid "Confirm Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:37 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:43 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:44 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:48 -msgid "Update Profile" -msgstr "" - -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "" - -#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 -#: ckan/templates/user/login.html:12 -#: ckan/templates/user/snippets/login_form.html:28 -msgid "Login" -msgstr "" - -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "" - -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "" - -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "" - -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "" - -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" - -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "" - -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "" - -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "" - -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "" - -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:19 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:20 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:27 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:31 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:652 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:16 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "Custom Text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" - -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" - -#: ckanext/reclineview/plugin.py:82 -msgid "Data Explorer" -msgstr "" - -#: ckanext/reclineview/plugin.py:106 -msgid "Table" -msgstr "" - -#: ckanext/reclineview/plugin.py:149 -msgid "Graph" -msgstr "" - -#: ckanext/reclineview/plugin.py:207 -msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 -msgid "Total number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 -msgid "Top Rated Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Average rating" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 -msgid "No ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 -msgid "Most Edited Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Number of edits" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 -msgid "Largest Groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Number of datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 -msgid "Top Tags" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "" - -#: ckanext/webpageview/plugin.py:24 -msgid "Website" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" diff --git a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo index 35f1ff2ab61..667902db4c8 100644 Binary files a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo and b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po index 31374357d0a..00b968a4d72 100644 --- a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po +++ b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po @@ -6,258 +6,259 @@ # Amir Reza Asadi , 2013 # Iman Namvar , 2014 # Naeem Aleahmadi , 2013 +# Pouyan Imanian, 2015 # Sayna Parsi , 2014 # Sean Hammond , 2013 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:22+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Persian (Iran) (http://www.transifex.com/projects/p/ckan/language/fa_IR/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:20+0000\n" +"Last-Translator: dread \n" +"Language-Team: Persian (Iran) (http://www.transifex.com/okfn/ckan/language/fa_IR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: fa_IR\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "تابع اخیار دهنده یافت نشد %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "مدیر" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "ویرایشگر" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "عضو" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "نیاز به دسترسی مدیریت برای تنظمیات مدیریتی است" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "عنوان سایت" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "استایل" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "لوگوی تگ سایت" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "درباره" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "متن صفحه درباره" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "توضیح" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "متن روی صفحه اصلی" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "css سفارشی" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "سفارشی سازی css درج شده در header صفحه" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "صفحه اصلی" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "پاک سازی کامل شد" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "عملیات مورد نظر پیاده سازی نشده است" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "اجازه دیدن این صفحه را ندارد" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "دسترسی منع شده است" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "یافت نشد" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "درخواست نامناسب" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "این عمل شناخته شده نیست: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "خطا در JSON:\n%s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "تقاضای نامناسب داده : %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "موجودیتی از این نوع قابل نمایش نیست: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "موجودیتی از این نوع قابل خواندن نیست: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "نمی توان موجودیت جدیدی از این نوع را ایجاد کرد :%s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "ناتوان از افزودن پکیج به ایندکس جستجو " -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "ناتوان از به روز رسانی ایندکس جستجو" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "هیچ بازخوانی ثبت نشده" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "پارامتر ها خوانده نشد: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "پارامتر های جستجو اشتباه است: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "رجیستر ناشناخته:%s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "گروه یافت نشد" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "نوع گروه اشتباه است" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -268,23 +269,23 @@ msgstr "" msgid "Organizations" msgstr "سازمان ها" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "گروه ها" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -292,394 +293,303 @@ msgstr "گروه ها" msgid "Tags" msgstr "برچسب ها" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "فرمت ها" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "اجازه ساخت گروه ندارید" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "خطای یکپارچگی" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" -msgstr "" +msgstr "دسترسی لازم برای حذف گروه %s را ندارید." -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "سازمان حذف شده است" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "گروه حذف شده است" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "کاربر%rاجازه تغیر تنظیمات را ندارد%r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "" -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "" -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "منبع یافت نشد" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 +#, python-format +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "" @@ -705,10 +615,10 @@ msgstr "دیگر" msgid "Tag not found" msgstr "برچسب یافت نشد" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "کاربر مورد نظر یافت نشد" @@ -728,13 +638,13 @@ msgstr "" msgid "No user specified" msgstr "هیج کاربری مشخص نشده است" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "پروفایل به روز رسانی شد" @@ -758,75 +668,87 @@ msgstr "" msgid "Unauthorized to edit a user." msgstr "" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "ورود نا موفق . نام کاربری یا گذرواژه درست وارد نشده است" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "چنین کاربری وجود ندارد %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "لطفا صندوق پستی خود را برای کد بازیابی چک نمایید" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "کد بازیابی غلط است مجددا تلاش کنید" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "گذرواژه شما ریست شد" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "گذرواژه می باید حداقل 4 حرف یا بیشتر باشد" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "عدم تطبیق در گذرواژه ها" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "" @@ -948,7 +870,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -956,7 +878,7 @@ msgid "View" msgstr "" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" @@ -1008,129 +930,129 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1160,7 +1082,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1185,7 +1107,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "" @@ -1198,7 +1120,7 @@ msgstr "" msgid "Please enter an integer value" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1208,11 +1130,11 @@ msgstr "" msgid "Resources" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "افزوده ها" @@ -1222,25 +1144,22 @@ msgstr "افزوده ها" msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "گروه" @@ -1252,378 +1171,369 @@ msgstr "" msgid "A organization must be supplied" msgstr "" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "گروهی به این نام در دیتا بیس وجود دارد" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "نام می بایست حداقل %s کاراکتر داشته باشد" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "کاربر ناشناس" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "" @@ -1654,7 +1564,7 @@ msgstr "" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "" @@ -1664,94 +1574,98 @@ msgstr "" msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1772,7 +1686,7 @@ msgstr "" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1850,63 +1764,63 @@ msgstr "" msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "" @@ -2013,8 +1927,6 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "" @@ -2039,12 +1951,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "" @@ -2117,7 +2030,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "" @@ -2131,7 +2043,6 @@ msgstr "" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "" @@ -2170,33 +2081,41 @@ msgstr "" msgid "Sysadmin settings" msgstr "" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" msgstr[0] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2205,7 +2124,6 @@ msgstr "" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2215,15 +2133,13 @@ msgstr "" msgid "Datasets" msgstr "" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "" @@ -2259,24 +2175,24 @@ msgstr "" msgid "Trash" msgstr "" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2347,7 +2263,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "" @@ -2499,7 +2414,7 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2532,8 +2447,6 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "" @@ -2551,7 +2464,7 @@ msgstr "" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2696,14 +2609,12 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "" @@ -2791,7 +2702,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "" @@ -2851,7 +2761,7 @@ msgstr "" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2951,38 +2861,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3000,7 +2902,6 @@ msgid "Custom" msgstr "" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "" @@ -3013,7 +2914,6 @@ msgid "http://example.com/my-image.jpg" msgstr "" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "" @@ -3058,7 +2958,7 @@ msgstr "" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3092,6 +2992,20 @@ msgstr "" msgid "There are currently no organizations for this site" msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3226,7 +3140,6 @@ msgid "Preview" msgstr "" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "" @@ -3285,7 +3198,7 @@ msgstr "" msgid "Add" msgstr "" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3317,28 +3230,32 @@ msgstr "" msgid "Error:" msgstr "" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3442,7 +3359,7 @@ msgid "unknown" msgstr "" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "" @@ -3478,6 +3395,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "" @@ -3534,7 +3455,7 @@ msgid "Version" msgstr "" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "" @@ -3549,7 +3470,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "" @@ -3569,30 +3489,30 @@ msgstr "" msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3719,7 +3639,7 @@ msgstr "" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "" @@ -3805,139 +3725,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -4025,7 +3812,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "" @@ -4034,7 +3820,7 @@ msgid "Language" msgstr "" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4066,21 +3852,25 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4149,7 +3939,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4168,10 +3958,6 @@ msgstr "" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4235,36 +4021,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4497,15 +4274,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4513,6 +4290,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4533,12 +4318,16 @@ msgstr "" #: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 msgid "Country Code" -msgstr "" +msgstr "کد کشور" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4556,64 +4345,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "جدول" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" +msgstr "نقشه" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4673,14 +4422,13 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" -msgstr "" +msgstr "تعداد کل داده‌ها" #: ckanext/stats/templates/ckanext/stats/index.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:40 msgid "Date" -msgstr "" +msgstr "تاریخ" #: ckanext/stats/templates/ckanext/stats/index.html:18 msgid "Total datasets" @@ -4697,39 +4445,33 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:42 msgid "New datasets" -msgstr "" +msgstr "داده‌های جدید" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" -msgstr "" +msgstr "تعداد ویرایش" #: ckanext/stats/templates/ckanext/stats/index.html:103 msgid "No edited datasets" @@ -4737,12 +4479,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" -msgstr "" +msgstr "بزرگترین گروه‌ها" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "" @@ -4752,7 +4492,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "" @@ -4763,63 +4502,37 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:137 #: ckanext/stats/templates/ckanext/stats/index.html:157 msgid "Number of Datasets" -msgstr "" +msgstr "تعداد داده‌ها" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" -msgstr "" +msgstr "منوی آمار" #: ckanext/stats/templates/ckanext/stats/index.html:178 msgid "Total Number of Datasets" -msgstr "" +msgstr "تعداد کل داده‌ها" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "وبگاه" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "نشانی وبگاه" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" diff --git a/ckan/i18n/fi/LC_MESSAGES/ckan.mo b/ckan/i18n/fi/LC_MESSAGES/ckan.mo index b4bed4798e6..ff13378cb86 100644 Binary files a/ckan/i18n/fi/LC_MESSAGES/ckan.mo and b/ckan/i18n/fi/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/fi/LC_MESSAGES/ckan.po b/ckan/i18n/fi/LC_MESSAGES/ckan.po index 4c922c7345c..a3310a73ec7 100644 --- a/ckan/i18n/fi/LC_MESSAGES/ckan.po +++ b/ckan/i18n/fi/LC_MESSAGES/ckan.po @@ -3,269 +3,268 @@ # This file is distributed under the same license as the ckan project. # # Translators: -# apoikola , 2015 -# apoikola , 2013 +# apoikola , 2013,2015 # floapps , 2012 -# Hami Kekkonen , 2013 +# Hami Kekkonen , 2013,2015 # , 2011 # jaakkokorhonen , 2014 -# Zharktas , 2015 # JuhoL , 2015 # Kari Salovaara , 2015 # kyyberi , 2013 # Mikko Koho , 2013,2015 # Open Knowledge Foundation , 2011 # Tarmo Toikkanen , 2014 +# Zharktas , 2015 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-02-24 10:37+0000\n" -"Last-Translator: Zharktas \n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/ckan/language/fi/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:20+0000\n" +"Last-Translator: dread \n" +"Language-Team: Finnish (http://www.transifex.com/okfn/ckan/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Auktorisointifunktiota ei löydy: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Ylläpitäjä - Admin" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Muokkaaja - Editor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Jäsen" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Hallinnointia varten pitää olla järjestelmän ylläpitäjä " -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Sivuston otsikko" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Tyyli" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Sivun slogan" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Sivun logo" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Tietoja" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" -msgstr "Tietoja sivun \"About page\" teksti" +msgstr "Tietoja-sivun teksti" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Johdantoteksti" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Teksti kotisivulla" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Muokattu CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" -msgstr "Muokattava CSS lisätty sivun header -osioon" +msgstr "Muokattava CSS lisätty sivun header-osioon" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Kotisivu" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Ei voida poistaa tietoaineistoa %s, koska tähän liitetty revisio %s sisältää poistamattomia tietoaineistoja %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Ongelma näiden revisioiden poistamisessa %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Poistaminen suoritettu" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Toimintoa ei ole toteutettu." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Tämän sivun näyttäminen ei ole sallittu" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Pääsy evätty" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Ei löytynyt" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Virheellinen pyyntö" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Toiminnon nimi tuntematon: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON-virhe: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Huono datapyyntö: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Ei pystytä listaamaan entiteettiä, joka on tyyppiä %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Ei pystytä lukemaan entiteettiä, joka on tyyppiä %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Ei pystytä luomaan entiteettiä, joka on tyyppiä %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Ei voitu lisätä tietoaineistoa hakuindeksiin" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Ei pystytä muokkaamaan entiteettiä, joka on tyyppiä %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" -msgstr "Ei voitu päivittää hakuindeksiä" +msgstr "Hakuindeksiä ei voitu päivittää" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Ei pystytä poistamaan entiteettiä, joka on tyyppiä %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Revisiota ei annettu" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Revisiota tällä tunnisteella ei löydy: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Hakutermi puuttuu ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Parametreja ei voitu lukea: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Huono hakuvaihtoehto: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Tuntematon rekisteri: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Väärässä muodossa oleva qjson-arvo: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Kyselyparametrit täytyy olla json-enkoodatussa muodossa" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Ryhmää ei löydy" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "Organisaatioita ei löytynyt" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Väärä ryhmän tyyppi" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Ryhmän lukeminen ei sallittu %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -276,23 +275,23 @@ msgstr "Ryhmän lukeminen ei sallittu %s" msgid "Organizations" msgstr "Organisaatiot" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Ryhmät" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -300,394 +299,303 @@ msgstr "Ryhmät" msgid "Tags" msgstr "Avainsanat" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Muodot" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Lisenssit" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Ei oikeutta tehdä massapäivityksiä (bulk update)" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Ei oikeuksia luoda ryhmää" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Käyttäjällä %r ei oikeutta muokata %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Eheysvirhe" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Käyttäjällä %r ei oikeutta muokata %s oikeuksia" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Ei oikeuksia poistaa ryhmää %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organisaatio on poistettu" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Ryhmä on poistettu." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s on poistettu." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Ei oikeuksia lisätä käyttäjää ryhmään %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Ei oikeuksia poistaa ryhmän %s jäseniä" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Ryhmän jäsen on poistettu." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Valitse kaksi revisiota vertailuun." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Käyttäjä %r ei voi muokata %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN-ryhmän revisioiden muutoshistoria" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Viimeaikaiset muutokset CKAN-ryhmään:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Lokiviesti:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Ei oikeuksia lukea ryhmää {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Seuraat nyt tätä: {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Et seuraa enää tätä: {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Ei oikeuksia nähdä seuraajia %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." -msgstr "Sivusto on tällä hetkellä pois päältä. Tietokantaa ei ole alustettu." +msgstr "Sivusto on tällä hetkellä pois käytöstä. Tietokantaa ei ole alustettu." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Ole hyvä ja päivitä profiilisi ja lisää sähköpostiosoitteesi ja koko nimesi. {site} käyttää sähköpostiosoitettasi jos unohdat salasanasi." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Ole hyvä ja päivitä profiilisi ja lisää sähköpostiosoitteesi." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "%s käyttää sähköpostiosoitettasi jos sinun täytyy uusia salasanasi." - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Ole hyvä ja päivitä profiilisi ja lisää koko nimesi." +msgstr "%s käyttää sähköpostiosoitettasi, jos sinun täytyy uusia salasanasi." -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Parametri \"{parameter_name}\" ei ole kokonaisluku" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Tietoaineistoa ei löydy" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Ei oikeuksia lukea tietoaineistoa %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Väärä revision muoto: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "{package_type}-tietoaineistojen katselu {format}-muodossa ei ole mahdollista (mallitiedostoa {file} ei löydy)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN-tietoaineiston muutoshistoria" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Viimeisimmät muutokset CKAN-tietoaineistoon:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Ei oikeuksia luoda tietoaineistoa" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Ei oikeuksia muokata tätä resurssia " -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Resurssia ei löydy" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Ei oikeuksia päivittää tietoaineistoa" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Tietoaineistoa {id} ei löydy." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Sinun täytyy lisätä vähintään yksi dataresurssi" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Virhe" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Ei oikeutta luoda resurssia" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "Käyttäjällä ei ole oikeutta luoda uutta resurssia tähän pakettiin." -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Ei voitu lisätä pakettia hakuindeksiin" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Ei voitu päivittää hakuindeksiä" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Tietoaineisto on poistettu." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Ei oikeutta poistaa tietoaineistoa %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Tietoaineisto on poistettu." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Resurssi on poistettu." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Ei oikeuksia poistaa resurssia %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Ei oikeuksia lukea tietoaineistoa %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "Resurssinäyttöä ei löytynyt" +msgstr "Resurssinäkymää ei löytynyt" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Ei oikeuksia lukea resurssia %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Resurssin dataa ei löydy" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Ei ladattavaa saatavilla" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "Ei oikeuksia muokata resursseja" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "Näyttöä ei löydy" +msgstr "Näkymää ei löydy" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "Ei oikeuksia katsoa Näyttöä %s" +msgstr "Ei oikeuksia katsoa näkymää %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "Näyttötyyppiä ei löytynyt" +msgstr "Näkymätyyppiä ei löytynyt" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "Virheellinen resurssinäytön tiedot" +msgstr "Virheelliset resurssinäkymän tiedot" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "Ei oikeuksia lukea resurssinäyttöä %s" +msgstr "Ei oikeuksia lukea resurssinäkymää %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "Resurssinäyttöä ei saatavilla" +msgstr "Resurssinäkymää ei saatavilla" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Esikatselua ei ole määritelty." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Eniten katsottu" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Eniten katsotut" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Vähiten katsotut" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Uusin" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Vanhin" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Pyydettyä tähän liittyvää kohdetta ei löytynyt" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Näihin liittyviä kohteita ei löytynyt" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Ei oikeutta" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Tietoaineistoa ei löydy" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Tähän liittyvä kohde luotiin onnistuneesti" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Tähän liittyvä kohde päivitettiin onnistuneesti" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Tähän liittyvä kohde on poistettu." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Ei oikeutta poistaa tähän liittyvää kohdetta %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Sovellus" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idea" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Uutisartikkeli" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Artikkeli" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Kirjoitus" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualisointi" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN-tietovarannon historia" @@ -713,10 +621,10 @@ msgstr "Muu" msgid "Tag not found" msgstr "Avainsanaa ei löydy" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Käyttäjää ei löydy" @@ -726,30 +634,30 @@ msgstr "Ei oikeuksia rekisteröityä käyttäjäksi." #: ckan/controllers/user.py:166 msgid "Unauthorized to create a user" -msgstr "Käyttäjän luominen ei sallittu" +msgstr "Ei oikeutta luoda käyttäjää" #: ckan/controllers/user.py:197 msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Luvitus käyttäjän \"{user_id}\" poistamiseen puuttuu." +msgstr "Ei oikeutta käyttäjän \"{user_id}\" poistamiseen." #: ckan/controllers/user.py:211 ckan/controllers/user.py:270 msgid "No user specified" msgstr "Käyttäjää ei määritelty" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" -msgstr "Käyttäjän muokkaus ei sallittu %s" +msgstr "Käyttäjän %s muokkaus ei sallittu" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profiili päivitetty" #: ckan/controllers/user.py:232 #, python-format msgid "Unauthorized to create user %s" -msgstr "Käyttäjän luominen ei sallittu %s" +msgstr "Ei oiketta lisätä käyttäjää %s" #: ckan/controllers/user.py:238 msgid "Bad Captcha. Please try again." @@ -766,75 +674,87 @@ msgstr "Käyttäjä %s on nyt rekisteröity, mutta olet edelleen kirjautunut sis msgid "Unauthorized to edit a user." msgstr "Ei oikeuksia muokata käyttäjää." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" -msgstr "Käyttäjä %s ei sallittu muokkaamaan %s" +msgstr "Käyttäjällä %s ei oikeutta muokata %s" + +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Annettu salasana oli väärin" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Vanha salasana" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "väärä salasana" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Kirjautuminen epäonnistui. Väärä käyttäjätunnus tai salasana." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Ei oikeutta pyytää salasanan resetoimista." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" kohdistui moneen käyttäjään" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Ei käyttäjää: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Ole hyvä ja tarkista sähköpostisi resetointikoodia varten" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Resetointilinkkiä ei voitu lähettää: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Ei oikeutta salasanan resetoimiseen." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Epäkelpo resetointiavain. Yritä uudelleen." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Salasanasi on resetoitu" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Salasanasi pitää olla 4 merkkiä tai pidempi" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Syötetyt salasanat eivät ole samoja" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Sinun täytyy antaa salasanasi" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Seurattavaa kohdetta ei löytynyt" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} ei löytynyt" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Ei oikeutta lukea {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Kaikki" @@ -937,15 +857,15 @@ msgstr "{actor} poisti tähän liittyvän kohteen {related_item}" #: ckan/lib/activity_streams.py:132 msgid "{actor} started following {dataset}" -msgstr "{actor} alkoi seuraamaan tietoaineistoa {dataset}" +msgstr "{actor} alkoi seurata tietoaineistoa {dataset}" #: ckan/lib/activity_streams.py:135 msgid "{actor} started following {user}" -msgstr "{actor} aloitti seuraamaan käyttäjää {user}" +msgstr "{actor} alkoi seurata käyttäjää {user}" #: ckan/lib/activity_streams.py:138 msgid "{actor} started following {group}" -msgstr "{actor} aloitti seuraamaan ryhmää {group}" +msgstr "{actor} alkoi seurata ryhmää {group}" #: ckan/lib/activity_streams.py:142 msgid "" @@ -956,7 +876,7 @@ msgstr "{actor} lisäsi {related_type} {related_item} tietoaineistoon {dataset}" msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} lisäsi {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -964,10 +884,10 @@ msgid "View" msgstr "Näytä" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "1 uusi tapahtuma sivulla {site_title}" -msgstr[1] "{n} uutta tapahtumaa sivulla {site_title}" +msgstr[0] "" +msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1017,135 +937,135 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Juuri nyt" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} minuutti sitten" msgstr[1] "{mins} minuuttia sitten" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} tunti sitten" msgstr[1] "{hours} tuntia sitten" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} päivä sitten" msgstr[1] "{days} päivää sitten" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} kuukausi sitten" msgstr[1] "{months} kuukautta sitten" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "yli {years} vuosi sitten" msgstr[1] "yli {years} vuotta sitten" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{day}. {month} {year}, {hour:02}.{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day}. {month}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} tavua" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Päivitä avatarisi osoitteessa gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Tuntematon" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Nimetön resurssi" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Uusi tietoaineisto luotu." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Tietoaineistolinkkejä muokattu." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Asetuksia muokattu." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} katselukerta" msgstr[1] "{number} katselukertaa" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} viimeaikainen katselukerta" @@ -1176,12 +1096,12 @@ msgstr "Olet pyytänyt salasanaasi sivustolle {site_title} palautettavaksi.\n\nO #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "Sinut on kutsuttu sivustolle {site_title}. Sinulle on jo luotu käyttäjätiedot käyttäjätunnuksella {user_name}. Voit muuttaa sitä jälkeenpäin.\n\nHyväksyäksesi kutsun, ole hyvä ja alusta salasanasi seuraavasta:\n\n {reset_link}\n" +msgstr "Sinut on kutsuttu {site_title}. Sinulle on jo luotu käyttäjä käyttäjänimellä {user_name}. Voit muuttaa sen myöhemmin.\n\nHyväksyyksesi tämän kutsun, ole ystävällinen ja resetoi salasanasi linkissä:\n\n {reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1201,7 +1121,7 @@ msgstr "Kutsu sivustolle {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Puuttuva arvo" @@ -1214,7 +1134,7 @@ msgstr "Syöttökenttää %(name)s ei odotettu." msgid "Please enter an integer value" msgstr "Ole hyvä ja syötä kokonaislukuarvo" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1224,11 +1144,11 @@ msgstr "Ole hyvä ja syötä kokonaislukuarvo" msgid "Resources" msgstr "Aineistolinkit" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Tietoaineiston tiedostolinkki(t) virheellisiä" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Lisätiedot" @@ -1236,27 +1156,24 @@ msgstr "Lisätiedot" #: ckan/logic/converters.py:72 ckan/logic/converters.py:87 #, python-format msgid "Tag vocabulary \"%s\" does not exist" -msgstr "Avainsana sanastoa %s ei ole olemassa" +msgstr "Avainsana-sanastoa %s ei ole olemassa" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Käyttäjä" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Tietoaineisto" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Ryhmä" @@ -1268,390 +1185,381 @@ msgstr "Ei pystytty parseroimaan JSON-muotoa." msgid "A organization must be supplied" msgstr "Organisaatio pitää antaa" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Et voi poistaa datasettiä olemassaolevasta organisaatiosta." - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organisaatiota ei ole" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Et voi lisätä tietoaineistoa tähän organisaatioon" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Vääränlainen kokonaisluku" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Tulee olla luonnollinen luku" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" -msgstr "Tulee olla positiivinen muuttuja" +msgstr "Tulee olla positiivinen kokonaisluku" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Päivämäärän muoto väärä" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Linkkejä ei saa olla logiviestissä" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "Tietojoukon id on jo olemassa" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Tietoaineistolinkki" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Liittyvä" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Ryhmän nimeä tai tunnistetta ei ole olemassa." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Aktiviteetin tyyppi" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" -msgstr "Nimien tulee olla string-muotoisia" +msgstr "Nimien tulee olla merkkijonoja" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Nimeä ei voida käyttää" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "Tulee olla vähintään %s merkkiä pitkä" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" -msgstr "Nimi saa olla maksimissaan of %i merkkiä pitkä" +msgstr "Nimi voi olla korkeintaan of %i merkkiä pitkä" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "Tulee olla kokonaisuudessaan pienin alfanumeerisin (ascii) merkein ja näillä symbooleilla: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Tämä URL on jo käytössä." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Nimen \"%s\" pituus on vähemmän kuin minimi %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Nimen \"%s\" pituus on enemmän kuin maksimi %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Versio saa olla maksimissaan %i merkkiä pitkä" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Duplikaatti avain \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Ryhmän nimi löytyy jo tietokannasta" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Avainsanan \"%s\" pituus on oltava vähintään %s merkkiä" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Avainsana \"%s\" on pidempi kuin maksimi %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Avainsanan \"%s\" pitää koostua alfanumeerisita merkeistä (ascii) ja näistä erikoismerkeistä: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Avainsana \"%s\" ei saa sisältää isoja kirjaimia" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" -msgstr "Käyttäjätunnusten tulee olla string-muotoisia" +msgstr "Käyttäjätunnusten tulee olla merkkijonoja" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Tämä kirjautumisnimi ei käytettävissä" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Ole hyvä ja syötä molemmat salasanat" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" -msgstr "Salasanojen tulee olla tulee olla string-muotoisia" +msgstr "Salasanojen tulee olla tulee olla merkkijonoja" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" -msgstr "Salasanasi pitää olla 4 merkkiä tai pidempi" +msgstr "Salasanasi pitää olla vähintään 4 merkkiä" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Syötetyt salasanat eivät samat" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." -msgstr "Muokkaus ei sallittu koska sisältö näyttää spämmiltä. Ole hyvä ja vältä linkkejä kuvauksessa." +msgstr "Muokkaus ei sallittu, koska se vaikuttaa roskapostaukselta. Ole hyvä ja vältä linkkejä kuvauksessa." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" -msgstr "Nimi pitää olla vähintään %s merkkiä pitkä" +msgstr "Nimen tulee olla vähintään %s merkkiä pitkä" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Sanaston nimi on jo käytössä" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Ei voi vaihtaa avaimen %s arvoa arvoon %s. Tähän avaimeen on vain lukuoikeudet" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." -msgstr "Avainsana sanastoa ei löytynyt." +msgstr "Avainsana-sanastoa ei löytynyt." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Avainsana %s ei sisälly sanastoon %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Ei avainsanan nimeä" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Avainsana %s sisältyy jo sanastoon %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Ole hyvä ja anna validi URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "roolia ei ole." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." -msgstr "Tietoaineistot ilman organisaatiota eivät voi olla yksityisiä." +msgstr "Ilman organisaatiota olevat tietoaineistot eivät voi olla yksityisiä." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Ei lista" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Ei merkkijono" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Tämä ylätaso loisi silmukan hierarkiassa" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "\"filter_fields\" ja \"filter_values\" tulee olla saman pituisia" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "\"filter_fields\" on pakollinen kun \"filter_values\" on täytetty" +msgstr "\"filter_fields\" on pakollinen, kun \"filter_values\" on täytetty" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "\"filter_values\" on pakollinen kun \"filter_fields\" on täytetty" +msgstr "\"filter_values\" on pakollinen, kun \"filter_fields\" on täytetty" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "Saman niminen skeematieto on jo olemassa" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Luo objekti %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Luo tietoaineistojen suhteet: %s %s %s " -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" -msgstr "REST API: Luo jäsen objekti %s" +msgstr "REST API: Luo jäsenobjekti %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Yrittää luoda organisaatiota ryhmäksi" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Sinun täytyy antaa tietoaineiston id tai nimi (parametri \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Luokitus täytyy antaa (parametri \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." -msgstr "Luokitus pitää olla kokonaislukuarvo." +msgstr "Luokituksen tulee olla kokonaislukuarvo." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." -msgstr "Luokitus pitää olla väliltä %i ja %i." +msgstr "Luokituksen tulee olla väliltä %i ja %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" -msgstr "Sinun pitää olla kirjautunut seurataksesi käyttäjiä" +msgstr "Sinun tulee olla kirjautunut seurataksesi käyttäjiä" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Et voi seurata itseäsi" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Seuraat jo tätä: {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." -msgstr "Sinun täytyy olla kirjautunut seurataksesi tietoaineistoa." +msgstr "Sinun tulee olla kirjautunut seurataksesi tietoaineistoa." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Käyttäjää {username} ei ole." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." -msgstr "Sinun täytyy olla kirjautunut seurataksesi ryhmää." +msgstr "Sinun tulee olla kirjautunut seurataksesi ryhmää." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Poistetaan tietoaineisto: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Poista %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Poista käyttäjä %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id ei ole datassa" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Ei löytynyt sanastoa %s" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Ei löytynyt avainsanaa %s" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." -msgstr "Sinun täytyy olla kirjautunut lopettaaksesi jonkin asian seuraaminen." +msgstr "Sinun tulee olla kirjautunut lopettaaksesi jonkin asian seuraaminen." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Et seuraa tätä: {0}" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Tietoaineistolinkkiä ei löytynyt" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" -msgstr "Älä määrittele jos käytät \"query\" parametria" +msgstr "Älä määrittele, jos käytät \"query\"-parametria" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Täytyy olla : pari(eja)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Kentää \"{field}\" ei tunnistettu toiminnossa resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "tuntematon käyttäjä:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Kohteita ei löytynyt." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Tietoaineistoa ei löytynyt" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Päivitä objektit %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Päivitä tietoaineistojen suhteet: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus ei löydetty" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organisaatiota ei löytynyt." #: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 #, python-format msgid "User %s not authorized to create packages" -msgstr "Käyttäjällä %s ei ole käyttöoikeuksia luoda tietoaineistoja" +msgstr "Käyttäjällä %s ei ole oikeutta luoda tietoaineistoja" #: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 #, python-format msgid "User %s not authorized to edit these groups" -msgstr "Käyttäjällä %s ei ole oikeuksia muokata näitä ryhmiä" +msgstr "Käyttäjällä %s ei ole oikeutta muokata näitä ryhmiä" #: ckan/logic/auth/create.py:36 #, python-format @@ -1670,7 +1578,7 @@ msgstr "Sinun täytyy olla kirjautunut lisätäksesi liittyvä asia" msgid "No dataset id provided, cannot check auth." msgstr "Tietojoukon id ei ole annettu, tekijää ei voida tarkistaa." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Tietoaineistoa ei löytynyt tälle aineistolinkille, ei voida tarkistaa valtuutusta" @@ -1680,94 +1588,98 @@ msgstr "Tietoaineistoa ei löytynyt tälle aineistolinkille, ei voida tarkistaa msgid "User %s not authorized to create resources on dataset %s" msgstr "Käyttäjällä %s ei ole oikeuksia luoda resursseja tietojoukolle %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Käyttäjällä %s ei ole oikeuksia muokata näitä paketteja" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Käyttäjällä %s ei ole oikeuksia luoda ryhmiä" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Käyttäjällä %s ei ole oikeuksia luoda organisaatioita" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" -msgstr "Käyttäjä {user} ei ole luvitettu luomaan käyttäjiä API-rajapinnan kautta." +msgstr "Käyttäjällä {user} ei ole oikeutta luoda käyttäjiä API-rajapinnan kautta." -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" -msgstr "Ei luvitusta luoda käyttäjiä" +msgstr "Ei oikeutta luoda käyttäjiä" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Ryhmiä ei löytynyt." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" -msgstr "Tietoaineiston luomiseen tarvitaan kelpaava API avain" +msgstr "Tietoaineiston luomiseen tarvitaan voimassa oleva API-avain" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" -msgstr "Ryhmän luomiseen tarvitaan kelpaava API avain" +msgstr "Ryhmän luomiseen tarvitaan voimassa oleva API-avain" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Käyttäjällä %s ei ole oikeuksia lisätä jäseniä" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Käyttäjällä %s ei ole oikeuksia muokata ryhmää %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Käyttäjällä %s ei ole oikeuksia poistaa resurssia %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "Resurssinäyttöä ei löytynyt, tekijää ei voida tarkistaa." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Vain omistaja voi poistaa liittyvän asian" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Käyttäjällä %s ei ole oikeuksia poistaa relaatiota %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Käyttäjällä %s ei ole oikeuksia poistaa ryhmiä" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Käyttäjällä %s ei ole oikeuksia poistaa ryhmää %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Käyttäjällä %s ei ole oikeuksia poistaa organisaatioita" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Käyttäjällä %s ei ole oikeuksia poistaa organisaatiota %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Käyttäjällä %s ei ole oikeutta poistaa task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Ei oikeutta" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1788,7 +1700,7 @@ msgstr "Käyttäjällä %s ei ole oikeutta lukea resurssia %s" msgid "User %s not authorized to read group %s" msgstr "Käyttäjällä %s ei ole oikeuksia lukea joukkoa %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Sinun pitää olla kirjautunut päästäksesi omalle työpöydällesi" @@ -1860,69 +1772,69 @@ msgstr "Käyttäjällä %s ei ole oikeuksia päivittää term_translation taulua #: ckan/logic/auth/update.py:281 msgid "Valid API key needed to edit a package" -msgstr "Tietoaineiston muokkaukseen tarvitaan voimassaoleva API avain" +msgstr "Tietoaineiston muokkaukseen tarvitaan voimassa oleva API-avain" #: ckan/logic/auth/update.py:291 msgid "Valid API key needed to edit a group" -msgstr "Ryhmän muokkaukseen tarvitaan voimassoleva API avain" +msgstr "Ryhmän muokkaukseen tarvitaan voimassa oleva API-avain" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "Lisenssiä ei määritelty" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" -msgstr "Muu (Open)" +msgstr "Muu (avoin)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Muu (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Muu (Attribution)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Muu (Non-Commercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Muu (Not Open)" @@ -1939,7 +1851,7 @@ msgstr "on %s riippuvuus" #: ckan/model/package_relationship.py:53 #, python-format msgid "derives from %s" -msgstr "on johdettavissa %s:stä" +msgstr "on johdettavissa %s:sta" #: ckan/model/package_relationship.py:53 #, python-format @@ -1954,7 +1866,7 @@ msgstr "linkittää %s" #: ckan/model/package_relationship.py:54 #, python-format msgid "is linked from %s" -msgstr "on linkitetty %s:tä" +msgstr "on linkitetty %s:ta" #: ckan/model/package_relationship.py:55 #, python-format @@ -1995,7 +1907,7 @@ msgstr "Ei yhtään osumaa" #: ckan/public/base/javascript/modules/autocomplete.js:32 msgid "Start typing…" -msgstr "Ala kirjoittamaan..." +msgstr "Ala kirjoittaa..." #: ckan/public/base/javascript/modules/autocomplete.js:34 msgid "Input is too short, must be at least one character" @@ -2029,8 +1941,6 @@ msgstr "Vahvista" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Peruuta" @@ -2055,12 +1965,13 @@ msgstr "Linkki" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Poista" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Kuva" @@ -2070,7 +1981,7 @@ msgstr "Lataa tiedosto työasemalta" #: ckan/public/base/javascript/modules/image-upload.js:20 msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "Linkki URL-osoitteeseen intterneteissä (voit myös linkittää API:in)" +msgstr "Linkki URL-osoitteeseen internetissä (voit myös linkittää API:in)" #: ckan/public/base/javascript/modules/related-item.js:25 msgid "show more" @@ -2116,13 +2027,13 @@ msgstr "Lataamisen autentikointi epäonnistui" #: ckan/public/base/javascript/modules/resource-upload-field.js:30 msgid "Unable to get data for uploaded file" -msgstr "Datan saaminen ladattavalle tiedostolle epäonnistui" +msgstr "Datan saaminen ladattavaan tiedostoon epäonnistui" #: ckan/public/base/javascript/modules/resource-upload-field.js:31 msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" -msgstr "Olet olet parhaillaan lataamassa tiedostoa palvelimelle. Oletko varma että haluat navigoida sivukta ja keskeyttää lataamisen?" +msgstr "Olet parhaillaan lataamassa tiedostoa palvelimelle. Oletko varma, että haluat poistua sivulta ja keskeyttää lataamisen?" #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" @@ -2133,7 +2044,6 @@ msgstr "Uudelleenjärjestä resurssinäyttö" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2147,7 +2057,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Muokkaa" @@ -2180,40 +2089,48 @@ msgstr "Open Knowledge Foundation" msgid "" "Powered by CKAN" -msgstr "Toteutettu CKAN -ohjelmistolla" +msgstr "Toteutettu CKAN-ohjelmistolla" #: ckan/templates/header.html:12 msgid "Sysadmin settings" msgstr "Järjestelmän ylläpitäjän asetukset" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "Näytä profiili" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" msgstr[0] "Työpöydällä (%(num)d uusi kohde)" msgstr[1] "Työpöydällä (%(num)d uutta kohdetta)" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Yhteenveto" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "Muokkaa asetuksia" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Asetukset" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "Kirjaudu ulos" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "Kirjaudu sisään" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "Rekisteröidy" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2222,7 +2139,6 @@ msgstr "Rekisteröidy" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2232,15 +2148,13 @@ msgstr "Rekisteröidy" msgid "Datasets" msgstr "Tietoaineistot" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "Etsi tietoaineistoja" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "Etsi" @@ -2276,24 +2190,24 @@ msgstr "Asetus" msgid "Trash" msgstr "Roskakori" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "Haluatko varmasti palauttaa konfiguroinnin oletusasetukset?" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "Oletusasetukset" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "Päivitä asetukset" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "CKAN konfigurointi" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2351,7 +2265,7 @@ msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "Lisäinformaatiota löydät main CKAN Data API and DataStore documentation.

" +msgstr "Lisäinformaatiota löydät main CKAN Data API and DataStore documentation.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" @@ -2364,7 +2278,6 @@ msgid "" msgstr "Data API:a voidaan käyttää seuraavilla CKAN action API:n toiminnoilla." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Lisää uusi" @@ -2416,7 +2329,7 @@ msgstr "Resurssille ei ole esikatselua tällä hetkellä." #: ckan/templates/package/resource_read.html:118 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." -msgstr "Klikkaa tästä saadaksesi lisätietoa ..." +msgstr "Klikkaa tästä saadaksesi lisätietoa..." #: ckan/templates/dataviewer/snippets/data_preview.html:18 #: ckan/templates/package/snippets/resource_view.html:33 @@ -2516,7 +2429,7 @@ msgstr "Valitse" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2549,8 +2462,6 @@ msgstr "Ryhmälomake" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Vahvista poisto" @@ -2568,7 +2479,7 @@ msgstr "Haluatko varmasti poistaa jäsenen - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2647,7 +2558,7 @@ msgstr "Mitäs jos tekisit yhden?" #: ckan/templates/group/member_new.html:8 #: ckan/templates/organization/member_new.html:10 msgid "Back to all members" -msgstr "Takaisin jäsenten listaukseen" +msgstr "Takaisin jäsenlistaukseen" #: ckan/templates/group/member_new.html:10 #: ckan/templates/organization/member_new.html:7 @@ -2713,14 +2624,12 @@ msgstr "Haluatko varmasti poistaa tämän jäsenen?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Poista" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Tallenna" @@ -2797,18 +2706,17 @@ msgstr "Nimi" #: ckan/templates/group/snippets/group_form.html:10 msgid "My Group" -msgstr "Minun ryhmä" +msgstr "Minun ryhmäni" #: ckan/templates/group/snippets/group_form.html:18 msgid "my-group" -msgstr "Minun ryhmä" +msgstr "Minun ryhmäni" #: ckan/templates/group/snippets/group_form.html:20 #: ckan/templates/organization/snippets/organization_form.html:20 #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Kuvaus" @@ -2859,7 +2767,7 @@ msgid "" "could be to catalogue datasets for a particular project or team, or on a " "particular theme, or as a very simple way to help people find and search " "your own published datasets. " -msgstr "Voit luoda ja hallinnoida tietoaineistojen kokoelmia käyttämällä CKANin ryhmiä. Voit koota yhteen ryhmään tietoaineistoja esimerkiksi projektin, käyttäjäryhmän tai teeman mukaisesti ja siten helpottaa aineistojen löytymistä muille käyttäjille. " +msgstr "Voit luoda ja hallinnoida tietoaineistokokonaisuuksia käyttämällä CKAN:in ryhmiä. Voit koota yhteen ryhmään tietoaineistoja esimerkiksi projektin, käyttäjäryhmän tai teeman mukaisesti ja siten helpottaa aineistojen löytymistä." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -2869,7 +2777,7 @@ msgstr "Vertaa" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2937,7 +2845,7 @@ msgid "" "href=\"http://ckan.org/tour/\">http://ckan.org/tour/
Features " "overview: http://ckan.org/features/

" -msgstr "

CKAN on maailman johtava avoimen lähdekoodin dataportaaliratkaisu.

CKAN on täydellinen out-of-the-box sovellusratkaisu joka mahdollistaa helpon pääsyn dataan, korkean käytettävyyden ja sujuvan käyttökokemuksen. CKAN tarjoaa työkalut julkaisuun, jakamiseen, datan käyttöön ja jakamiseen - mukaanlukien datan varastoinnin ja provisioinnin. CKAN tarkoitettu datan julkaisijoille - kansalliselle ja alueelliselle hallinnolle, yrityksille ja organisaatioille, jotka haluavat avata ja julkaista datansa.

Hallitukset ja käyttäjäryhmän ympäri maailmankäyttävät CKAN, ja sen varassa pyörii useita virallisia ja yhteisöllisiä dataportaaleja paikallisille, kansallisille ja kansainvälisille toimijoille, kuten Britannian data.gov.uk Euroopan unionin publicdata.eu,Brasilian dados.gov.br, Saksan ja alankomaiden portaalit, sekä kaupunkien ja kuntien palveluja Yhdysvalloissa, Britanniassa, Argentinassa ja muualla.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features overview: http://ckan.org/features/

" +msgstr "

CKAN on maailman johtava avoimen lähdekoodin dataportaaliratkaisu.

CKAN on täydellinen out-of-the-box sovellusratkaisu, joka mahdollistaa helpon pääsyn dataan, korkean käytettävyyden ja sujuvan käyttökokemuksen. CKAN tarjoaa työkalut julkaisuun, jakamiseen, etsimiseen ja datan käyttöön - mukaanlukien datan varastoinnin ja provisioinnin. CKAN on tarkoitettu datan julkaisijoille - kansalliselle ja alueelliselle hallinnolle, yrityksille ja organisaatioille, jotka haluavat avata ja julkaista datansa.

Hallitukset ja käyttäjäryhmät ympäri maailmaa käyttävät CKAN:ia. Sen varassa pyörii useita virallisia ja yhteisöllisiä dataportaaleja paikallisille, kansallisille ja kansainvälisille toimijoille, kuten Britannian data.gov.uk, Euroopan unionin publicdata.eu, Brasilian dados.gov.br, Saksan ja Alankomaiden portaalit sekä kaupunkien ja kuntien palveluja Yhdysvalloissa, Britanniassa, Argentinassa ja muualla.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features overview: http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" @@ -2963,51 +2871,43 @@ msgstr "Etsi tietoja" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "Suositut tagit" +msgstr "Suositut avainsanat" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" msgstr "{0} tilastoa" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "tietoaineisto" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "tietoaineistoa" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organisaatio" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organisaatiot" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "ryhmä" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "ryhmät" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "liittyvä kohde" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "liittyvät kohteet" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" "You can use Markdown formatting here" -msgstr "Voit käyttää Markdown muotoilu täällä" +msgstr "Voit käyttää tässä Markdown-muotoiluja" #: ckan/templates/macros/form.html:265 msgid "This field is required" @@ -3018,7 +2918,6 @@ msgid "Custom" msgstr "Muokattu" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Lomake sisältää virheellisiä syötteitä" @@ -3031,7 +2930,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "Kuvan URL" @@ -3076,7 +2974,7 @@ msgstr "Luonnos" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3110,6 +3008,20 @@ msgstr "Etsi organisaatioita.." msgid "There are currently no organizations for this site" msgstr "Sivustolla ei ole tällä hetkellä organisaatioita" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Käyttäjätunnus" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Sähköpostiosoite" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Päivitä jäsen" @@ -3121,7 +3033,7 @@ msgid "" "edit datasets, but not manage organization members.

" "

Member: Can view the organization's private datasets, " "but not add new datasets.

" -msgstr "

Ylläpitäjä: Voi lisätä, muokata ja poistaa tietoaineistoja sekä hallinnoida organisaation jäseniä.

Muokkaaja: Voi lisätä ja muokata tietoaineistoja.

Jäsen: Voi katsella oman organisaation yksityisiä tietoaineistoja, mutta ei muokata niitä.

" +msgstr "

Ylläpitäjä: Voi lisätä, muokata ja poistaa tietoaineistoja sekä hallinnoida organisaation jäseniä.

Muokkaaja: Voi lisätä ja muokata tietoaineistoja.

Jäsen: Voi katsella oman organisaationsa yksityisiä tietoaineistoja, mutta ei muokata niitä.

" #: ckan/templates/organization/new.html:3 #: ckan/templates/organization/new.html:5 @@ -3161,18 +3073,18 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "

Organisaatiot toimivat julkaisusivustoina tietojoukoille (esimerkiksi terveydenhuollon osasto). Tämä tarkoittaa että tietojoukkoja voidaan julkaista ja ne kuuluvat osastoille yksittäisten käyttäjien sijaan.

Organisaatioiden sisällä, järjestelmänhoitajat voivat liittää jäsenille rooleja ja luvituksia, antaen yksittäisille käyttäjille oikeuksia julkaista datasettejä organisaation nimissä (esimerkiksi Tilastokeskuksen nimissä).

" +msgstr "

Organisaatiot ovat tietoaineistoja julkaisevia tahoja (esimerkiksi Tilastokeskus). Organisaatiossa julkaistut tietoaineistot kuuluvat yksittäisten käyttäjien sijaan ko. organisaatiolle.

Organisaation ylläpitäjä voi antaa sen jäsenille rooleja ja oikeuksia, jotta yksittäiset käyttäjät voivat julkaista datasettejä organisaation (esimerkiksi Tilastokeskuksen) nimissä.

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" " CKAN Organizations are used to create, manage and publish collections of " "datasets. Users can have different roles within an Organization, depending " "on their level of authorisation to create, edit and publish. " -msgstr "CKAN organisaatioita käytetään tietoaineistojen ja aineistokokoelmien luomiseen, hallinnointiin ja julkaisemiseen. Käyttäjillä voi olla organisaatioissa eri rooleja ja eri tasoisia käyttöoikeuksia tietoaineistojen luomiseen, muokkaamiseen ja julkaisemiseen." +msgstr "CKAN:in organisaatioita käytetään tietoaineistojen ja aineistokokonaisuuksien luomiseen, hallinnointiin ja julkaisemiseen. Käyttäjillä voi olla organisaatioissa eri rooleja ja eri tasoisia käyttöoikeuksia tietoaineistojen luomiseen, muokkaamiseen ja julkaisemiseen." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" -msgstr "Minun organisaatio" +msgstr "Minun organisaationi" #: ckan/templates/organization/snippets/organization_form.html:18 msgid "my-organization" @@ -3211,7 +3123,7 @@ msgid "" " A CKAN Dataset is a collection of data resources (such as files), together " "with a description and other information, at a fixed URL. Datasets are what " "users see when searching for data. " -msgstr "CKAN tietoaineisto on kokoelma resursseja (esim. tiedostoja), sekä niihin liittyvä kuvaus ja muuta tietoa, kuten pysyvä URL -osoite. Kun käyttäjä etsii dataa hänelle näytetään tietoaineistoja." +msgstr "Tietoaineisto tarkoittaa CKAN:issa kokoelmaa resursseja (esim. tiedostoja) sekä niihin liittyvää kuvausta ja muuta metatietoa, kuten pysyvää URL-osoitetta." #: ckan/templates/package/confirm_delete.html:11 msgid "Are you sure you want to delete dataset - {name}?" @@ -3244,13 +3156,12 @@ msgid "Preview" msgstr "Esikatselu" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Päivitä" #: ckan/templates/package/group_list.html:14 msgid "Associate this group with this dataset" -msgstr "Liitä ryhmä tähän datasettiin" +msgstr "Liitä ryhmä tähän aineistoon" #: ckan/templates/package/group_list.html:14 msgid "Add to group" @@ -3258,7 +3169,7 @@ msgstr "Lisää ryhmään" #: ckan/templates/package/group_list.html:23 msgid "There are no groups associated with this dataset" -msgstr "Datasettiin ei ole liitetty ryhmiä" +msgstr "Aineistoon ei ole liitetty ryhmiä" #: ckan/templates/package/new_package_form.html:15 msgid "Update Dataset" @@ -3296,14 +3207,14 @@ msgid "" "href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-" "structured-data-the-data-explorer' target='_blank'>Data Explorer " "documentation. " -msgstr " Data Explorer näytöt voivat olla hitaita ja epäluotettavia jos DataStore laajennus ei ole käytössä. Lisätietojen saamiseksi, katso Data Explorer dokumentointi. " +msgstr "Data Explorer -näkymät voivat olla hitaita ja epäluotettavia, jos DataStore-laajennus ei ole käytössä. Lisätietojen saamiseksi katso Data Explorer -dokumentaatio. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" msgstr "Lisää" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3320,11 +3231,11 @@ msgstr "Ei liittyviä asioita" #: ckan/templates/package/related_list.html:17 msgid "Add Related Item" -msgstr "Lisää liittyvä osio" +msgstr "Lisää liittyvä asia" #: ckan/templates/package/resource_data.html:12 msgid "Upload to DataStore" -msgstr "Lataa DataStore:en" +msgstr "Lataa DataStoreen" #: ckan/templates/package/resource_data.html:19 msgid "Upload error:" @@ -3335,28 +3246,32 @@ msgstr "Latausvirhe:" msgid "Error:" msgstr "Virhe:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Tila" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Viimeksi päivitetty" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Ei koskaan" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Lataa lokitiedosto" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Yksityiskohdat" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Lokitiedoston loppu" @@ -3379,11 +3294,11 @@ msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "Näytöt" +msgstr "Näkymät" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" -msgstr "API osoite" +msgstr "API-osoite" #: ckan/templates/package/resource_read.html:41 #: ckan/templates/package/snippets/resource_item.html:48 @@ -3411,30 +3326,30 @@ msgstr "Lähde: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "Tälle resurssille ei ole luotu vielä yhtään näyttöä." +msgstr "Tälle resurssille ei ole luotu vielä yhtään näkymää." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "Et näe näyttöjä joita odotit?" +msgstr "Et näe odottamiasi näkymiä?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "Tässä joitakin syitä jos et näe odottamiasi näyttöjä:" +msgstr "Tässä joitakin syitä, jos et näe odottamiasi näkymiä:" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "Tälle resurssille ei ole luotu yhtään sopivaa näyttöä" +msgstr "Tälle resurssille ei ole luotu yhtään sopivaa näkymää" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "Voi olla ettei järjestelmänhoitaja ole ottanut käyttöön asiaanliittyviä liitännäisiä" +msgstr "Voi olla, ettei järjestelmänhoitaja ole ottanut käyttöön asiaan liittyviä liitännäisiä" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "Jos näyttö tarvitsee DataStore:n, voi olla ettei DataStore liitännäistä ole otettu käyttöön, tai ettei tietoja ole sijoitettu DataStore:en, tai ettei DataStore ole vielä saanut prosessointia valmiiksi" +msgstr "Jos näkymä vaatii DataStoren, voi olla, ettei DataStore-liitännäistä ole otettu käyttöön, tai ettei tietoja ole tallennettu DataStoreen, tai ettei DataStore ole vielä saanut prosessointia valmiiksi" #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" @@ -3460,7 +3375,7 @@ msgid "unknown" msgstr "tuntematon" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Luotu" @@ -3478,11 +3393,11 @@ msgstr "Lisenssi" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "Uusi näyttö" +msgstr "Uusi näkymä" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "Tällä resurssille ei ole näyttöjä" +msgstr "Tällä resurssilla ei ole näkymiä" #: ckan/templates/package/resources.html:8 msgid "Add new resource" @@ -3494,11 +3409,15 @@ msgstr "Lisää uusi resurssi" msgid "" "

This dataset has no data, why not " "add some?

" -msgstr "

Tässä tietoaineistossa ei ole dataa, mikset lisäisi dataa? " +msgstr "

Tässä tietoaineistossa ei ole dataa, mikset lisäisi sitä? " + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" #: ckan/templates/package/search.html:53 msgid "API Docs" -msgstr "API dokumentaatio" +msgstr "API-dokumentaatio" #: ckan/templates/package/search.html:55 msgid "full {format} dump" @@ -3520,11 +3439,11 @@ msgstr " Voit käyttää rekisteriä myös %(api_link)s avulla (katso myös %(ap #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "Kaikki näytöt" +msgstr "Kaikki näkymät" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "Näytä näyttö" +msgstr "Näytä näkymä" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" @@ -3552,7 +3471,7 @@ msgid "Version" msgstr "Versio" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Tila" @@ -3567,13 +3486,12 @@ msgstr "Data API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Nimike" #: ckan/templates/package/snippets/package_basic_fields.html:4 msgid "eg. A descriptive title" -msgstr "esim. kuvaava nimike" +msgstr "esim. kuvaava otsikko" #: ckan/templates/package/snippets/package_basic_fields.html:13 msgid "eg. my-dataset" @@ -3581,36 +3499,36 @@ msgstr "esim. my-dataset" #: ckan/templates/package/snippets/package_basic_fields.html:19 msgid "eg. Some useful notes about the data" -msgstr "esim. hyödyllisiä merkintöjä datasta" +msgstr "esim. datan sanallinen kuvaus" #: ckan/templates/package/snippets/package_basic_fields.html:24 msgid "eg. economy, mental health, government" msgstr "esim. talous, mielenterveys, hallinto" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr " Lisenssien määritykset ja lisätiedot löydät osoitteesta opendefinition.org " -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organisaatio" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Ei organisaatiota" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Näkyvyys" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Julkinen" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Aktiivinen" @@ -3621,7 +3539,7 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "Data lisenssin jonka valitset yltä vaikuttaa ainoastaan niiden resurssitiedostojen sisältöön joita lisäät tähän tietojoukkoon. Lähettämällä tämän lomakkeen suostut julkistamaan metatieto arvot jotka annat tällä lomakkeella Open Database Lisenssin mukaisesti." +msgstr "Lisenssi, jonka valitset yllä olevasta valikosta, koskee ainoastaan tähän tietoaineistoon liittämiäsi tiedostoja. Lähettämällä tämän lomakkeen suostut julkaisemaan täyttämäsi metatiedot Open Database Lisenssin mukaisesti." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -3669,11 +3587,11 @@ msgstr "Tiedosto" #: ckan/templates/package/snippets/resource_form.html:28 msgid "eg. January 2011 Gold Prices" -msgstr "esim. Tammikuu 2011 kullan hinta" +msgstr "esim. Kullan hinta tammikuussa 2011" #: ckan/templates/package/snippets/resource_form.html:32 msgid "Some useful notes about the data" -msgstr "Hyödyllisiä merkintöjä datasta" +msgstr "Datan sanallinen kuvaus" #: ckan/templates/package/snippets/resource_form.html:37 msgid "eg. CSV, XML or JSON" @@ -3681,7 +3599,7 @@ msgstr "esim. CSV, XML tai JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "Tämä arvataan automaattisesti. Jätä tyhjäksi jos haluat" +msgstr "Tämä päätellään automaattisesti. Jätä tyhjäksi jos haluat" #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" @@ -3689,7 +3607,7 @@ msgstr "esim. 2012-06-05" #: ckan/templates/package/snippets/resource_form.html:53 msgid "File Size" -msgstr "Tiedostokoko" +msgstr "Tiedoston koko" #: ckan/templates/package/snippets/resource_form.html:53 msgid "eg. 1024" @@ -3698,7 +3616,7 @@ msgstr "esim. 1024" #: ckan/templates/package/snippets/resource_form.html:55 #: ckan/templates/package/snippets/resource_form.html:57 msgid "MIME Type" -msgstr "MIME tyyppi" +msgstr "MIME-tyyppi" #: ckan/templates/package/snippets/resource_form.html:55 #: ckan/templates/package/snippets/resource_form.html:57 @@ -3727,7 +3645,7 @@ msgstr "Mikä on resurssi?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." -msgstr "Resurssi voi olla mikä tahansa tiedosto tai linkki tiedostoon, jossa on hyödyllistä dataa." +msgstr "Resurssi on mikä tahansa tiedosto tai linkki tiedostoon, jossa on hyödyllistä dataa." #: ckan/templates/package/snippets/resource_item.html:24 msgid "Explore" @@ -3737,7 +3655,7 @@ msgstr "Tutki" msgid "More information" msgstr "Lisää tietoa" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Upota" @@ -3753,7 +3671,7 @@ msgstr "Upota resurssinäyttö" msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "Voit leikata ja liimata upotuskoodin sisällönhallintajärjestelmään tai blogiin joka sallii raakaa HTML koodia" +msgstr "Voit leikata ja liimata upotuskoodin sisällönhallintajärjestelmään tai blogiin, joka sallii raakaa HTML-koodia" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" @@ -3797,11 +3715,11 @@ msgstr "Lisää dataa" #: ckan/templates/package/snippets/view_form.html:8 msgid "eg. My View" -msgstr "esim. Minun Näyttö" +msgstr "esim. minun näkymäni" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "esim. Tietoja Minun Näytöstä" +msgstr "esim. tietoja minun näkymästäni" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" @@ -3817,144 +3735,11 @@ msgstr "Suodattimet" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "Mikä on näyttö?" +msgstr "Mikä on näkymä?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "Näyttö on esitys resurssin tiedoista" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Liittyvän osion lomake" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Mitkä ovat liittyvät osiot?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

\"Liittyvä media\" on mikä tahansa tietoaineistoon liittyvä sovellus, artikkeli, visualisaatio tai idea.

Se voi olla esimerkiksi infograafi, kaavio tai sovellus, joka käyttää tietoaineistoa tai sen osaa. Liittyvä media voi olla jopa uutinen, joka viittaa tähän tietoaineistoon.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Haluatko varmasti poistaa liittyvän osion - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Sovellukset & Ideat" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Näytetään %(first)s - %(last)s / %(item_count)s löydetyistä liittyvistä osioista

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

löytyi %(item_count)s liittyvää osiota

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Ei lisättyjä sovelluksia vielä." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Mitä sovellukset ovat?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Nämä ovat tietoaineistoa hyödyntäviä sovelluksia sekä ideoita asioista, joihin tietoaineistoa voisi hyödyntää." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Suodata tuloksia" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Suodata tyypin mukaan" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Kaikki" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Suodata" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Oletus" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Näytä vain näytteille asetetut kohteet" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Tallenna muutokset" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Muokkaa liittyvää osiota" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Muokkaa liittyvää" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Muokkaa liittyvää osiota" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Lisää uusi liittyvä asia" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Luo uusi liittyvä" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Luo uusi liittyvä asia" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Minun tähän liittyvät kohteet" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Vähän lisätietoa osiosta" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Tyyppi" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Haluatko varmasti poistaa tämän liittyvän osion?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Siirry {related_item_type}" +msgstr "Näkymä on esitys resurssin tiedoista" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -4004,11 +3789,11 @@ msgstr "Uusi tapahtuma" #: ckan/templates/snippets/datapreview_embed_dialog.html:4 msgid "Embed Data Viewer" -msgstr "Upota datan näyttäjä" +msgstr "Upota datan näkymä" #: ckan/templates/snippets/datapreview_embed_dialog.html:8 msgid "Embed this view by copying this into your webpage:" -msgstr "Sisällytä tämä näkymä web-sivulle kopioimalla tämä:" +msgstr "Sisällytä tämä näkymä verkkosivulle kopioimalla tämä:" #: ckan/templates/snippets/datapreview_embed_dialog.html:10 msgid "Choose width and height in pixels:" @@ -4043,7 +3828,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Tällä haulla ei löydy {facet_type} -tyypin sisältöä" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Aloitussivu" @@ -4052,7 +3836,7 @@ msgid "Language" msgstr "Kieli" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4064,7 +3848,7 @@ msgstr "Ei lisenssiä" #: ckan/templates/snippets/license.html:28 msgid "This dataset satisfies the Open Definition." -msgstr "Tämä tietoaineisto täyttää Open Definition määrittelyn" +msgstr "Tämä tietoaineisto täyttää Open Definition -määrittelyn" #: ckan/templates/snippets/organization.html:48 msgid "There is no description for this organization" @@ -4084,41 +3868,45 @@ msgstr "Tähän tietoaineistoon ei ole vielä liitetty sovelluksia, ideoita, uut msgid "Add Item" msgstr "Lisää osio" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Lähetä" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Lajittelu" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Suodata tuloksia" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" -msgstr "

Kokeile toisenlaista hakua.

" +msgstr "

Kokeile toisenlaisia hakutermejä.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" -msgstr "

Etsinnässä tapahtui virhe. Yritä uudelleen.

" +msgstr "

Haussa tapahtui virhe. Yritä uudelleen.

" #: ckan/templates/snippets/search_result_text.html:15 msgid "{number} dataset found for \"{query}\"" msgid_plural "{number} datasets found for \"{query}\"" msgstr[0] "Haulla \"{query}\" löytyi {number} datasettiä" -msgstr[1] "Haulla \"{query}\" löytyi {number} tietoaineistoa" +msgstr[1] "Haulla \"{query}\" löytyi {number} aineistoa" #: ckan/templates/snippets/search_result_text.html:16 msgid "No datasets found for \"{query}\"" -msgstr "Haulla \"{query}\" ei löytynyt tietoaineistoa" +msgstr "Haulla \"{query}\" ei löytynyt tietoaineistoja" #: ckan/templates/snippets/search_result_text.html:17 msgid "{number} dataset found" msgid_plural "{number} datasets found" msgstr[0] "Löytyi {number} datasettiä" -msgstr[1] "Löytyi {number} tietoaineistoa" +msgstr[1] "Löytyi {number} aineistoa" #: ckan/templates/snippets/search_result_text.html:18 msgid "No datasets found" @@ -4173,7 +3961,7 @@ msgid "Subscribe" msgstr "Tilaa" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4192,10 +3980,6 @@ msgstr "Muokkaukset" msgid "Search Tags" msgstr "Etsi avainsanoja" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Yhteenveto" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Uutisvirta" @@ -4203,17 +3987,17 @@ msgstr "Uutisvirta" #: ckan/templates/user/dashboard.html:20 #: ckan/templates/user/dashboard_datasets.html:12 msgid "My Datasets" -msgstr "Minun tietoaineistot" +msgstr "Minun tietoaineistoni" #: ckan/templates/user/dashboard.html:21 #: ckan/templates/user/dashboard_organizations.html:12 msgid "My Organizations" -msgstr "Minun organisaatiot" +msgstr "Minun organisaationi" #: ckan/templates/user/dashboard.html:22 #: ckan/templates/user/dashboard_groups.html:12 msgid "My Groups" -msgstr "Minun ryhmät" +msgstr "Minun ryhmäni" #: ckan/templates/user/dashboard.html:39 msgid "Activity from items that I'm following" @@ -4244,7 +4028,7 @@ msgstr "Et ole minkään organisaation jäsen." #: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 #: ckan/templates/user/snippets/user_search.html:2 msgid "Users" -msgstr "Käyttäjät:" +msgstr "Käyttäjät" #: ckan/templates/user/edit.html:17 msgid "Account Info" @@ -4253,42 +4037,33 @@ msgstr "Käyttäjätilin tiedot" #: ckan/templates/user/edit.html:19 msgid "" " Your profile lets other CKAN users know about who you are and what you do. " -msgstr "Profiilin avulla muut CKAN käyttäjät tietävät kuka olet ja mitä teet. " +msgstr "Profiilin avulla muut CKAN:in käyttäjät tietävät kuka olet ja mitä teet. " #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" msgstr "Muuta tietoja" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Käyttäjätunnus" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Koko nimi" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "esim. Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Hieman tietoa itsestäsi" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Tilaa ilmoitukset sähköpostiisi" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Vaihda salasana" @@ -4310,11 +4085,11 @@ msgstr "Haluatko varmasti poistaa tämän käyttäjän?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "Oletko varma että haluat uudistaa API avaimen?" +msgstr "Oletko varma että haluat uudistaa API-avaimen?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "Uudista API avain" +msgstr "Uudista API-avain" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" @@ -4337,7 +4112,7 @@ msgstr "Tarvitsetko käyttäjätilin?" #: ckan/templates/user/login.html:27 msgid "Then sign right up, it only takes a minute." -msgstr "Rekisteröidy, se vie vain hetken" +msgstr "Rekisteröidy, se vie vain hetken." #: ckan/templates/user/login.html:30 msgid "Create an Account" @@ -4353,7 +4128,7 @@ msgstr "Ei ongelmaa, käytä salasanan uudelleenasetuksen lomaketta." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" -msgstr "Unohditko salasanan?" +msgstr "Unohditko salasanasi?" #: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 msgid "Logged Out" @@ -4436,7 +4211,7 @@ msgstr "Miten tämä toimii?" #: ckan/templates/user/perform_reset.html:40 msgid "Simply enter a new password and we'll update your account" -msgstr "Anna salasanasi niin päivitämme käyttäjätilisi tiedot" +msgstr "Anna salasanasi, niin päivitämme käyttäjätilisi tiedot" #: ckan/templates/user/read.html:21 msgid "User hasn't created any datasets." @@ -4464,7 +4239,7 @@ msgstr "Jäsenyys alkanut" #: ckan/templates/user/read_base.html:96 msgid "API Key" -msgstr "API avain" +msgstr "API-avain" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" @@ -4478,7 +4253,7 @@ msgstr "Pyydä uudelleenasettamista" msgid "" "Enter your username into the box and we will send you an email with a link " "to enter a new password." -msgstr "Syötä käyttäjänimesi laatikkoon ja lähetämme sinulle sähköpostin jossa on linkki uuden salasanan syöttämislomakkeelle." +msgstr "Syötä käyttäjänimesi laatikkoon, niin lähetämme sinulle sähköpostin, jossa on linkki uuden salasanan syöttämislomakkeeseen." #: ckan/templates/user/snippets/followee_dropdown.html:14 #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4519,17 +4294,17 @@ msgstr "Tätä ei ole vielä ladattu" #: ckanext/datastore/controller.py:31 msgid "DataStore resource not found" -msgstr "DataStore resurssia ei löytynyt" +msgstr "DataStore-resurssia ei löytynyt" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "Tieto oli virheellistä (esimerkiksi: numeerinen arvo on rajojen ulkopuolella ta oli lisätty tekstitietoon)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Resurssia \"{0}\" ei löytynyt." @@ -4537,13 +4312,21 @@ msgstr "Resurssia \"{0}\" ei löytynyt." msgid "User {0} not authorized to update resource {1}" msgstr "Käyttäjällä {0} ei ole lupaa päivittää resurssia {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Aineistoa sivulla" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testikonfiguraatio" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "Räätälöity kenttä nousevasti" +msgstr "Muokattu kenttä nousevasti" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "Räätälöity kenttä laskevasti" +msgstr "Muokattu kenttä laskevasti" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 @@ -4563,6 +4346,10 @@ msgstr "Maakoodi" msgid "custom resource text" msgstr "muokattu resurssi teksti" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4578,67 +4365,27 @@ msgstr "Kuvan url" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "esim. http://esimerkki.com/kuva.jpg (jos tyhjä käyttää resurssien url:ia)" +msgstr "esim. http://esimerkki.com/kuva.jpg (jos tyhjä ,käyttää resurssien url:ia)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "Data Explorer" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "Taulu" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "Kaavio" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "Kartta" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Tämä SlickGrid versio on käännetty Google Closure\nCompilerilla komennoilla::\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nToimiakseen SlickGrid vaatii kaksi tiedostoa:\n\n * jquery-ui-1.8.16.custom.min.js \n * jquery.event.drag-2.0.min.js\n\nNämä löytyvät Reclinen lähdekoodista, mutta niitä ei ole sisällytetty tähän buildiin, jotta mahdolliset yhteentoimivuusongelmat olisi helpompi ratkoa.\n\nKatso SlickGrid lisenssi MIT-LICENSE.txt tiedostosta.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4686,7 +4433,7 @@ msgstr "Longituudikenttä" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "GeoJSON kenttä" +msgstr "GeoJSON-kenttä" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" @@ -4697,7 +4444,6 @@ msgid "Cluster markers" msgstr "Klusterin markkerit" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Tietoaineistoja yhteensä" @@ -4725,33 +4471,27 @@ msgstr "Uudet tietoaineistot" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Korkeimman arvostelun saaneet tietoaineistot" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Arvostelujen keskiarvo" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Arvostelujen määrä" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" -msgstr "Ei arvostelua" +msgstr "Ei arvosteluja" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Eniten muokatut tietoaineistot" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Muokkausten määrä" @@ -4761,12 +4501,10 @@ msgstr "Ei muokattuja tietoaineistoja" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Suurimmat ryhmät" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Tietoaineistojen lukumäärä" @@ -4776,9 +4514,8 @@ msgstr "Ei ryhmiä" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" -msgstr "Eniten käytetyt avainsanat" +msgstr "Käytetyimmät avainsanat" #: ckanext/stats/templates/ckanext/stats/index.html:136 msgid "Tag Name" @@ -4791,8 +4528,8 @@ msgstr "Tietoaineistojen lukumäärä" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Eniten tietoaineistoja omistavat käyttäjät" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4802,49 +4539,23 @@ msgstr "Tilastovalikko" msgid "Total Number of Datasets" msgstr "Tietoaineistojen kokonaismäärä" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Tilastot" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Revisioita tietoaineistoille viikossa" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Eniten tietoaineistoja omistavat käyttäjät" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Sivu viimeksi päivitetty:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Johtotaulukko - Tilastot" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Teksti" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Tietoaineiston johtotaulukko" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Valitse tietoaineiston attribuutti ja selvitä missä kategorioissa on valitulla alueella eniten tietoaineistoja. Esimerkiksi avainsanat, ryhmät, lisenssi, tiedostoformaatti tai maa" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Valitse alue" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "Web-sivusto" +msgstr "Verkkosivusto" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "Web sivun url" +msgstr "Verkkosivuston url" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "esim. http://esimerkki.com (jos tyhjä käyttää resurssien url:iä)" +msgstr "esim. http://esimerkki.com (jos tyhjä, käyttää resurssien url:iä)" diff --git a/ckan/i18n/fr/LC_MESSAGES/ckan.mo b/ckan/i18n/fr/LC_MESSAGES/ckan.mo index 5ac2e77659a..84084c9ca45 100644 Binary files a/ckan/i18n/fr/LC_MESSAGES/ckan.mo and b/ckan/i18n/fr/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/fr/LC_MESSAGES/ckan.po b/ckan/i18n/fr/LC_MESSAGES/ckan.po index 9e0c7ca7531..4530fd4491a 100644 --- a/ckan/i18n/fr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/fr/LC_MESSAGES/ckan.po @@ -6,11 +6,12 @@ # Adrià Mercader , 2014 # Anne-Marie Luigi-Way, 2013 # arthur.lutz , 2012 +# Diane Mercier , 2015 # Emmanuel , 2013 # , 2011 # keronos , 2012 # Open Knowledge Foundation , 2011 -# Philippe Duchesne, 2014 +# Philippe Duchesne, 2014-2015 # pierre chrzanowski , 2013 # Pierre Pezziardi , 2013 # Yann-Aël , 2015 @@ -18,252 +19,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-02-19 15:03+0000\n" -"Last-Translator: Yann-Aël \n" -"Language-Team: French (http://www.transifex.com/projects/p/ckan/language/fr/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-04 21:03+0000\n" +"Last-Translator: Diane Mercier \n" +"Language-Team: French (http://www.transifex.com/okfn/ckan/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Fonction d'autorisation non trouvée : %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Administrateur" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Éditeur" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Membre" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Vous devez être un administrateur système pour administrer" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Titre du site" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Style" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Slogan du site" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Logo de base du site" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "À propos" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Texte de la page à propos" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Texte d'Intro" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Texte de la page d'accueil" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "CSS personnalisés" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "CSS personnalisés insérés dans l'en-tête de la page" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Page d'accueil" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Impossible de purger le paquet %s car la révision %s associée contient les paquets %s non supprimés" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Un problème a été rencontré lors de la purge de la révision %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Purge terminée" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Action non implémentée." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Vous n'êtes pas autorisé à consulter cette page" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Accès non autorisé" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Indisponible" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Requête incorrecte" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "L'action %s est inconnue" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Erreur JSON : %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Mauvaise requête de données : %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Impossible de lister les entités de type %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Impossible de lire les entités de type %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Ne peut créer un nouvel élément de ce type : %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Échec d'ajout du paquet à l'index de recherche" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Ne peut modifier un élément de ce type : %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Échec de mise à jour de l'index de recherche" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Ne peut supprimer un élément de ce type : %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Aucune révision spécifiée" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "La révision %s n'existe pas" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Terme de recherche manquant ('since_id=UUID' ou 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Impossible de lire les paramètres %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Mauvaise option de recherche : %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Enregistrement %s inconnu" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Valeur qjson malformée : %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Les paramètres de la requête doivent être encodés au format JSON." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Groupe introuvable" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Organisation non trouvée" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Type de groupe incorrect" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Vous n'êtes pas autorisé à lire le groupe %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -274,23 +275,23 @@ msgstr "Vous n'êtes pas autorisé à lire le groupe %s" msgid "Organizations" msgstr "Organisations" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Groupes" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -298,394 +299,303 @@ msgstr "Groupes" msgid "Tags" msgstr "Mots-clés" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formats" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licenses" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Vous n'êtes pas autorisé à effectuer des mises à jour par lots" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Vous n'êtes pas autorisé à créer un groupe" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "L'utilisateur %r n'est pas autorisé à éditer %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Erreur d'intégrité" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "L'utilisateur %r n'est pas autorisé à éditer les droits de %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Vous n'êtes pas autorisé à supprimer le groupe %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Cette organisation a été supprimée." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Ce groupe a été supprimé." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s a été effacé. " + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Vous n'êtes pas autorisé à ajouter un membre au groupe %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Vous n'êtes pas autorisé à supprimer un membre du groupe %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Le membre de ce groupe a été supprimé" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Sélectionner deux révisions pour pouvoir les comparer." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "L'utilisateur %r n'est pas autorisé à éditer %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Historique des révisions du groupe CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Modifications récentes du groupe CKAN : " -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Message de log : " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Vous n'êtes pas autorisé à lire le groupe {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Vous suivez maintenant {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Vous ne suivez plus {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" -msgstr "Vous n'êtes pas autorisé à visualiser les suiveurs %s" +msgstr "Vous n'êtes pas autorisé à visualiser les abonnés à %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Le site est actuellement indisponible. La base de données n'est pas initialisée." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Merci de mettre à jour votre profil et d'ajouter votre adresse e-mail et nom complet. {site} utilise votre adresse e-mail si vous avez besoin de réinitialiser votre mot de passe." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Merci de mettre à jour votre profil et d'ajouter votre adresse e-mail. " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s utilise votre adresse e-mail si vous avez besoin de réinitialiser votre mot de passe." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Merci de mettre à jour votre profil et d'ajouter votre nom complet." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Le paramètre \"{parameter_name}\" n'est pas un entier" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Jeu de données introuvable" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Lecture du paquet %s non autorisée" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Le format de révision %r est invalide" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "La visualisation de jeux de données {package_type} dans le format {format} n'est pas supportée (fichier template {file} introuvable)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Historique des révisions du jeu de données CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Changements récents du jeu de données CKAN : " -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Vous n'êtes pas autorisé à enregistrer un jeu de données" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Vous n'êtes pas autorisé à modifier cette ressource" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Ressource introuvable" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Vous n'êtes pas autorisé à mettre à jour ce jeu de données" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Le jeu de données {id} n'a pas pu être trouvé." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Vous devez ajouter au moins une ressource de données" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Erreur" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Vous n'êtes pas autorisé à créer une ressource" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "Non autorisé à créer une ressource pour cet ensemble" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Échec d'ajout du paquet à l'index de recherche." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Échec de mise à jour de l'index de recherche." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Ce jeu de données a été supprimé." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Vous n'êtes pas autorisé à supprimer le paquet %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Ce jeu de données a été supprimé." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Cette ressource a été supprimée." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Vous n'êtes pas autorisé à supprimer la ressource %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Vous n'êtes pas autorisé à lire le jeu de données %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "La ressource ne peut être affichée" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Vous n'êtes pas autorisé à lire la ressource %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Contenu de la ressource introuvable" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Pas de téléchargement disponible" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Non autorisé à éditer la ressource" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "Ne peut être affiché" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "Non autorisé à voir l'affichage %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "Type d'affichage introuvable" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Données invalides pour cette visualisation de ressource" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Non autorisé à lire l'affichage de la ressource %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "Vue de ressources non fourni" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Aucune prévisualisation n'a été définie." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Les plus vus" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Les plus vus" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Les moins vus" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Les plus récents" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Les plus anciens" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "L'élément lié demandé est introuvable" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "L'élément lié est introuvable" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Non autorisé" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Paquet introuvable" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "La création de l'élément connexe a réussi" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "La mise à jour de l'élément connexe a réussi" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "L'élément lié a été supprimé." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Vous n'êtes pas autorisé à supprimer l'élément connexe %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Application" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idée" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Article d'actualité" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Papier scientifique" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Article de blog" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualisation" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Historique du dépôt CKAN." @@ -711,10 +621,10 @@ msgstr "Autre" msgid "Tag not found" msgstr "Mot-clé introuvable" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Utilisateur introuvable" @@ -734,13 +644,13 @@ msgstr "Non autorisé à supprimer l'utilisateur avec l'identifiant \"{user_id}\ msgid "No user specified" msgstr "Pas d'utilisateur spécifié" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Vous n'êtes pas autorisé à modifier l'utilisateur %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil mis à jour" @@ -764,75 +674,87 @@ msgstr "L'utilisateur \"%s\" est désormais enregistré mais vous êtes toujours msgid "Unauthorized to edit a user." msgstr "Vous n'êtes pas autorisé à modifier un utilisateur." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "L'utilisateur %s n'est pas autorisé à modifier %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Mot de passe entré incorrect" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Ancien mot de passe" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "mot de passe incorrect" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Authentification échouée. Mauvais login ou mot de passe." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Vous n'êtes pas autorisé à demander une réinitialisation de mot de passe." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" correspond à plusieurs utilisateurs" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Pas d'utilisateur correspondant à %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Merci de consulter votre boîte à lettres électronique pour trouver votre code de réinitialisation." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Impossible d'envoyer le lien de réinitialisation : %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Vous n'êtes pas autorisé à réinitialiser un mot de passe." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Clé de réinitialisation invalide. Merci d'essayer à nouveau." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Votre mot de passe a bien été réinitialisé." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Votre mot de passe doit comporter au moins 4 caractères." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Les mots de passe saisis ne correspondent pas." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Vous devez fournir un mot de passe" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "L'élément suivant est introuvable" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} introuvable" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Vous n'êtes pas autorisé à lire {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Tout" @@ -842,7 +764,7 @@ msgstr "valeur manquante" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Redirection vers un site externe non autorisée." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" @@ -954,7 +876,7 @@ msgstr "{actor} a ajouté le {related_type} {related_item} au jeu de données {d msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} a ajouté le {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -962,10 +884,10 @@ msgid "View" msgstr "Afficher" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "1 nouvelle activité de {site_title}" -msgstr[1] "{n} nouvelles activités de {site_title}" +msgstr[0] "" +msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1015,135 +937,135 @@ msgstr "Novembre" msgid "December" msgstr "Décembre" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "A l'instant" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "Il y a {mins} minute" msgstr[1] "Il y a {mins} minutes" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "Il y a {hours} heure" msgstr[1] "Il y a {hours} heures" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "Il y a {days} jour" msgstr[1] "Il y a {days} jours" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "Il y a {months} mois" msgstr[1] "Il y a {months} mois" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "Il y a plus de {years} an" msgstr[1] "Il y a plus de {years} ans" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{day} {month} {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{year} {month} {day} {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day} {month} {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} octets" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} kibi" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} mébi" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} gibi" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} tébi" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Mettez à jour votre avatar sur gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Inconnu(e)" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Ressource sans nom" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Nouveau jeu de données créé." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Ressources mises à jour." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Paramètres mis à jour." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} vue" msgstr[1] "{number} vues" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} vue récente" @@ -1170,16 +1092,16 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Vous avez demandé la réinitialisation de votre mot de passe sur le site {site_title}.\n\nMerci de cliquer sur le lien suivant pour confirmer votre requête :\n{reset_link}\n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Vous avez été invité sur {site_title}. Un utilisateur a déjà été créé pour vous avec l'identifiant {user_name}. Vous pourrez le changer ultérieurement.\n\nPour accepter cette invitation, veuillez réinitialiser votre mot de passe via :\n{reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1199,7 +1121,7 @@ msgstr "Invitation pour {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Valeur manquante" @@ -1212,7 +1134,7 @@ msgstr "Le champ saisi %(name)s n'était pas attendu." msgid "Please enter an integer value" msgstr "Vous devez saisir un nombre entier" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1222,11 +1144,11 @@ msgstr "Vous devez saisir un nombre entier" msgid "Resources" msgstr "Ressources" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Ressource(s) du paquet invalide(s)" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Extras" @@ -1236,25 +1158,22 @@ msgstr "Extras" msgid "Tag vocabulary \"%s\" does not exist" msgstr "le mot-clé \"%s\" n'existe pas" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Utilisateur" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Jeu de données" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Groupe" @@ -1266,378 +1185,369 @@ msgstr "JSON syntaxiquement invalide" msgid "A organization must be supplied" msgstr "Une organisation doit être fournie" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Vous ne pouvez pas supprimer un jeu de données d'une organisation existante" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Cette organisation n'existe pas" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Vous ne pouvez pas ajouter un jeu de données à cette organisation" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Nombre entier invalide" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Ce doit être un nombre naturel" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Ce doit être un nombre entier positif" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Format de date incorrect" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Aucun lien autorisé dans le log_message." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "L'identifiant de l'ensemble de données existe déjà" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Ressource" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Relié" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Ce groupe d'utilisateur ou cet identifiant n'existe pas." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Type d'activité" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Les noms doivent être des chaînes de caractères" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Ce nom ne peut pas être utilisé" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Doit contenir au moins %s caractères" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Le nom doit être d'une longueur inférieur à %i caractères" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "Doit contenir uniquement des caractères alphanumériques en minuscules (ascii) et ces symboles : -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Cette URL est déjà utilisée." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "La longueur du nom \"%s\" est inférieure au minimum %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "La longueur du nom \"%s\" est supérieur au maximum %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "La version ne doit pas être plus longue que %i caractère" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Clé double \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Le nom de groupe existe déjà dans la base de données" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "La longueur du mot-clé \"%s\" est inférieure au minimum requis (%s)" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "La longueur du mot-clé \"%s\" est supérieure à la longueur maximale %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Le mot-clé \"%s\" ne peut contenir que des lettres minuscules, des chiffres ou les symboles : -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Le mot-clé \"%s\" ne peut contenir de lettres majuscules" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Les noms d'utilisateurs doivent être des chaînes de caractères" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Ce nom d'utilisateur n'est pas disponible." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Merci d'entrer les 2 mots de passe" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Les mots de passe doivent être des chaînes de caractères" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Votre mot de passe doit comporter au moins 4 caractères" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Les mots de passe saisis ne correspondent pas" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "La modification n'est pas autorisée car elle ressemble à du spam. Merci d'éviter les liens dans votre description." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Le titre doit comporter au moins %s caractères" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Ce nom de vocabulaire est déjà utilisé." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "On ne peut pas changer le valeur de la clé de %s à %s. Cette clé est en lecture seulement " -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Ce vocabulaire de mots-clés n'a pas été trouvé." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Le mot-clé %s n'appartient pas au vocabulaire %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Aucun nom pour le mot-clé" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Le mot-clé %s appartient déjà au vocabulaire %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Merci de fournir une URL valide" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "Ce rôle n'existe pas" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Les jeux de données n'appartenant pas à une organisation ne peuvent pas être privés." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Ce n'est pas une liste" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Ce n'est pas une chaîne de caractères" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Ce parent créerait une boucle dans la hiérarchie" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "Les valeurs \"filter_fields\" et \"filter_values\" doivent être de même longueur" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +msgstr "\"filter_fields\" est nécessaire lorsque \"filter_values\" est rempli" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "\"filter_values\" est nécessaire lorsque \"filter_fields\" est rempli" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "Il y a un champ de schéma avec le même nom" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "API REST : création de l'objet %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "API REST : création d'une relation de paquet : %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "API REST : création de l'objet membre %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Tentative de création d'une organisation en tant que groupe" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Vous devez fournir un identifiant ou un titre pour le jeu de données (paramètre \"jeu de données\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Veuillez proposer une note (paramètre \"note\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "La note doit être un nombre entier." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "La note doit être comprise entre %i et %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Vous devez vous identifier pour suivre des utilisateurs" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Il n'est pas possible de s'abonner à soi-même" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Vous suivez déjà {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Vous devez vous identifier pour suivre un jeu de données." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "L'utilisateur {username} n'existe pas." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Vous devez vous identifier pour suivre un groupe." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "API REST : suppression du jeu de données : %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "API REST : suppression de %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "API REST : Suppression du Membre: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "cet identifiant n'est pas dans la donnée" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Impossible de trouver le vocabulaire \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Impossible de trouver le tag \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Vous devez vous identifier pour cesser de suivre quelque chose." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Vous ne suivez pas {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Ressource introuvable." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Ne sélectionnez pas cette option si vous utilisez le paramètre \"requête\"" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Paire(s) de : obligatoire" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Le champ \"{field}\" n'est pas reconnu dans resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "utilisateur inconnu :" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Élément introuvable." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Jeu de données introuvable." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "API REST : mise à jour de l'objet %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "API REST : mise à jour de la relation de paquet : %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "Le statut de la tâche est introuvable." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organisation introuvable" @@ -1666,9 +1576,9 @@ msgstr "Vous devez vous identifier pour ajouter un élément lié" #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "Aucun identifiant de jeu de données fourni, impossible de vérifier l'authentification." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Pas de jeu de données trouvé pour cette ressource, impossible de vérifier l'authentification." @@ -1676,96 +1586,100 @@ msgstr "Pas de jeu de données trouvé pour cette ressource, impossible de véri #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "Utilisateur %s non autorisé à créer des ressources sur le jeu de données %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "L'utilisateur %s n'est pas autorisé à modifier ces jeux de données" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "L'utilisateur %s n'est pas autorisé à créer ces groupes" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "L'utilisateur %s n'est pas autorisé à créé des organisations" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "L'utilisateur {user} n'est pas autorisé à créer des utilisateurs via l'API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Non autorisé à créer des utilisateurs" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Groupe introuvable." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Une clé d'API valide est nécessaire pour enregistrer un jeu de données" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Une clé d'API valide est nécessaire pour créer un groupe" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "L'utilisateur %s n'est pas autorisé à ajouter des membres" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "L'utilisateur %s n'est pas autorisé à modifier le groupe %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "L'utilisateur %s n'est pas autorisé à supprimer la ressource %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "Visualisation de ressource introuvable, impossible de vérifier l'authentificaiton" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Seul un propriétaire peut supprimer un élément lié" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "L'utilisateur %s n'est pas autorisé à supprimer la relation %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "L'utilisateur %s n'est pas autorisé à supprimer des groupes" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "L'utilisateur %s n'est pas autorisé à supprimer le groupe %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "L'utilisateur %s n'est pas autorisé à supprimer les organisations" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "L'utilisateur %s n'est pas autorisé à supprimer l'organisation %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "L'utilisateur %s n'est pas autorisé à supprimer task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Non autorisé" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1784,9 +1698,9 @@ msgstr "L'utilisateur %s n'est pas autorisé à lire la ressource %s" #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "Utilisateur %s non autorisé à lire le groupe %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Vous devez vous identifier pour accéder à votre tableau de bord" @@ -1839,7 +1753,7 @@ msgstr "L'utilisateur %s n'est pas autorisé à modifier l'utilisateur %s" #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "Utilisateur {0} non autorisé à mettre à jour l'utilisateur {1}" #: ckan/logic/auth/update.py:236 #, python-format @@ -1864,63 +1778,63 @@ msgstr "Une clé d'API valide est nécessaire pour modifier un jeu de données" msgid "Valid API key needed to edit a group" msgstr "Une clé d'API valide est nécessaire pour modifier un groupe" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "Licence non spécifiée" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Autre (Ouvert)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Autre (Domaine Public)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Autre (Attribution)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (n'importe laquelle)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Autre (Non-Commercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Autre (Fermé)" @@ -2027,8 +1941,6 @@ msgstr "Confirmation" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Annuler" @@ -2053,12 +1965,13 @@ msgstr "Lien" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Supprimer" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Image" @@ -2124,14 +2037,13 @@ msgstr "Vous êtes en train de transférer un fichier. Êtes-vous sûr de vouloi #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Réordonner la visualisation de ressource" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2145,7 +2057,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Éditer" @@ -2184,34 +2095,42 @@ msgstr "Généré par Site Title: This is the title of this CKAN instance It " @@ -2318,7 +2234,7 @@ msgstr "Confirmez la demande de réinitialisation" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Administrer CKAN" #: ckan/templates/admin/index.html:20 #, python-format @@ -2326,15 +2242,15 @@ msgid "" "

As a sysadmin user you have full control over this CKAN instance. " "Proceed with care!

For guidance on using sysadmin features, see the " "CKAN sysadmin guide

" -msgstr "" +msgstr "

Comme administrateur vous avez le plein contrôle de cette instance CKAN. Procédez avec prudence!

Pour des conseils sur l'utilisation des fonctionnalités d'administration, voir le guide d'administration CKAN

" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Purger" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "Purger les jeux de données supprimés définitivement" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" @@ -2349,7 +2265,7 @@ msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +msgstr "Plus d'informations dans la documentation principale de l'API CKAN pour les données et le magasin de données.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" @@ -2362,7 +2278,6 @@ msgid "" msgstr "L'API pour les données peut être accéder via les actions suivantes de l'API CKAN pour les actions" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Créer" @@ -2514,7 +2429,7 @@ msgstr "Sélectionner" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2547,8 +2462,6 @@ msgstr "Formulaire de groupe" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Confirmer la suppression" @@ -2566,7 +2479,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer le membre - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2711,14 +2624,12 @@ msgstr "Etes-vous sûr de vouloir supprimer ce membre?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Supprimer" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Enregistrer" @@ -2806,7 +2717,6 @@ msgstr "mon-groupe" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Description" @@ -2867,7 +2777,7 @@ msgstr "Comparer" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2953,59 +2863,51 @@ msgstr "Ceci est une section sélectionnée" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "Par exemple environnement" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "Données de recherche" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Mots-clés populaires" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" msgstr "{0} statistiques" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "jeu de données" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "jeux de données" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organisation" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organisations" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "groupe" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "groupes" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "élément connexe" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "éléments connexes" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" "You can use Markdown formatting here" -msgstr "" +msgstr "Vous pouvez utiliser le langage Markdown ici" #: ckan/templates/macros/form.html:265 msgid "This field is required" @@ -3016,7 +2918,6 @@ msgid "Custom" msgstr "Personnalisé" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Le formulaire contient des entrées invalides :" @@ -3029,7 +2930,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://exemple.com/mon-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL de l'image" @@ -3074,7 +2974,7 @@ msgstr "Brouillon" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3108,6 +3008,20 @@ msgstr "Rechercher les organisations..." msgid "There are currently no organizations for this site" msgstr "Il n'y a actuellement aucune organisation pour ce site" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nom d'utilisateur" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Adresse e-mail" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Mettre à jour le membre" @@ -3144,7 +3058,7 @@ msgstr "Ajouter un jeu de données" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "Jeux de données de l'organisation : {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 @@ -3159,7 +3073,7 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "" +msgstr "

Les organisations agissent comme des responsables de l'édition d'ensembles de données (par exemple, le ministère de la Santé). Cela signifie que les ensembles de données appartiennent et peuvent être publiées par une organisation à la place d'un utilisateur individuel.

Au sein des organisations, les administrateurs peuvent attribuer des rôles et autoriser leurs membres, donnant ainsi aux utilisateurs individuels le droit de publier des ensembles de données de cette organisation en particulier (par exemple, Office des statistiques nationales).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" @@ -3232,7 +3146,7 @@ msgstr "Editer les métadonnées" #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Éditer la vue" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3242,7 +3156,6 @@ msgid "Preview" msgstr "Aperçu" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Mise à jour" @@ -3285,7 +3198,7 @@ msgstr "Nouvelle ressource" #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Ajouter une vue" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3294,14 +3207,14 @@ msgid "" "href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-" "structured-data-the-data-explorer' target='_blank'>Data Explorer " "documentation. " -msgstr "" +msgstr "Les vues de l'Explorateur de données peuvent être lentes et peu fiables à moins que l'extension du magasin de données soit activée. Pour plus d'informations, s'il vous plaît voir la documentation de l'Explorateur de données. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" msgstr "Ajouter" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3333,28 +3246,32 @@ msgstr "Erreur de chargement :" msgid "Error:" msgstr "Erreur :" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "Erreur de trace d'appels :" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Statut" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Dernière modification" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Jamais" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Journal de Chargement" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Détails" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Fin de journal" @@ -3377,7 +3294,7 @@ msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Vues" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" @@ -3409,30 +3326,30 @@ msgstr "Source: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "Il n'y a encore aucune visualisation créée pour cette ressource" #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "Vous ne voyez pas les vues que vous attendiez?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +msgstr "Voici quelques raisons pour lesquelles vous ne pouvez pas voir les vues attendues :" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "" +msgstr "Il n'existe aucune visualisation adéquate pour cette ressource" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +msgstr "Les administrateurs du site n'ont pas autorisé les extensions pertinentes pour l'affichage" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "" +msgstr "Si une vue exige le magasin de données, l'extension du magasin de données ne peut pas être activé, les données ne peuvent pas avoir été poussées vers le magasin de données ou le magasin de données n'a pas encore fini de traiter les données" #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" @@ -3458,7 +3375,7 @@ msgid "unknown" msgstr "inconnu" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Créé le" @@ -3476,11 +3393,11 @@ msgstr "Licence" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "Nouvelle vue" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "Cette ressource n'a aucune visualisation définie" #: ckan/templates/package/resources.html:8 msgid "Add new resource" @@ -3494,6 +3411,10 @@ msgid "" "add some?

" msgstr "

Ce jeu de données n'a pas de données, pourquoi ne pas en ajouter?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Documentation de l'API" @@ -3518,15 +3439,15 @@ msgstr "Vous pouvez également accéder à ce catalogue en utilisant %(api_link) #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "Toutes les vues" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "Afficher" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "Voir l'aperçu" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 @@ -3550,14 +3471,14 @@ msgid "Version" msgstr "Version" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "État" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "Dernière modification" #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" @@ -3565,7 +3486,6 @@ msgstr "API de données" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Titre" @@ -3585,30 +3505,30 @@ msgstr "par exemple : quelques notes utiles sur les données" msgid "eg. economy, mental health, government" msgstr "par exemple : économie, santé mentale, gouvernement" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Les définitions de la licence et des informations complémentaires peuvent être trouvées chez opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Aucune organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Visibilité" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Publique" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Actif" @@ -3619,7 +3539,7 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "" +msgstr "La licence des données que vous sélectionnez ci-dessus ne vaut que pour le contenu de tous les fichiers de ressources que vous ajoutez à cet ensemble de données. En soumettant ce formulaire, vous vous engagez à libérer les valeurs des métadonnées que vous entrez dans le formulaire en vertu de la Licence de base de données ouvertes." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -3679,7 +3599,7 @@ msgstr "par exemple : CSV, XML ou JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" +msgstr "Ceci sera généré automatiquement. Laissez ce champ vide si vous le souhaitez" #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" @@ -3735,23 +3655,23 @@ msgstr "Explorer" msgid "More information" msgstr "Plus d'information" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Embarquer sur un site" #: ckan/templates/package/snippets/resource_view.html:24 msgid "This resource view is not available at the moment." -msgstr "" +msgstr "Cette visualisation de ressource n'est pas disponible pour le moment" #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "" +msgstr "Incorporer cette visualisation de ressource" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "" +msgstr "Vous pouvez copier et coller le code intégré dans un système de gestion de contenu ou un logiciel de blogue qui prend en charge le HTML brut" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" @@ -3767,7 +3687,7 @@ msgstr "Code" #: ckan/templates/package/snippets/resource_views_list.html:8 msgid "Resource Preview" -msgstr "" +msgstr "Aperçu de la ressource" #: ckan/templates/package/snippets/resources_list.html:13 msgid "Data and Resources" @@ -3775,7 +3695,7 @@ msgstr "Données et ressources" #: ckan/templates/package/snippets/resources_list.html:29 msgid "This dataset has no data" -msgstr "" +msgstr "Ce jeu de données est vide" #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format @@ -3795,19 +3715,19 @@ msgstr "Ajouter des données" #: ckan/templates/package/snippets/view_form.html:8 msgid "eg. My View" -msgstr "" +msgstr "p. ex. Ma vue" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "" +msgstr "p. ex. Information à propos de ma vue" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "" +msgstr "Ajouter un filtre" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "Supprimer un filtre" #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" @@ -3815,144 +3735,11 @@ msgstr "Filtres" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "" +msgstr "Qu'est-ce qu'une vue?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Formulaire d'élément lié" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Que sont les éléments liés ?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Un média lié est toute application, article, visualisation ou idée en rapport avec ce jeu de données.

Par exemple, ce pourrait être une visualisation personnalisée, un pictogramme ou un graphique à barres, une application utilisant tout ou partie de ces données, ou même un article d'information qui fait référence à ce jeu de données.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Êtes-vous sûr de vouloir supprimer l'élément lié - {name} ?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Applications & Idées" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Présentation des éléments %(first)s - %(last)s sur %(item_count)s éléments liés trouvés

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s éléments liés trouvés

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Aucune application n'a encore été soumise." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Que sont des applications ?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Ce sont des applications construites à partir des jeux de données ou des idées de choses qui pourraient être faites avec." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filtrer les resultats" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtrer par type" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Tous" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Ordonner par" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Défaut" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Montrer uniquement les éléments sélectionnés" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Appliquer" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Modifier l'élément lié" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Modifier l'élément lié" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Modifier l'élément lié" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Créer un élément lié" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Créer un élément lié" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Créer un élément lié" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Mon élément lié" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Un peu d'information au sujet de l'élément..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Type" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Êtes-vous sûr de vouloir supprimer cet élément lié ?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Aller à {related_item_type}" +msgstr "Une vue est une représentation des données détenues par une ressource" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -4041,7 +3828,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Il n'y a pas de {facet_type} qui corresponde à cette recherche" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Accueil" @@ -4050,7 +3836,7 @@ msgid "Language" msgstr "Langue" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4082,21 +3868,25 @@ msgstr "Il n'y a encore ni application, ni idée, ni article d'actualité, ni im msgid "Add Item" msgstr "Ajouter un élément" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Envoyer" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Par Ordre" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtrer les resultats" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Veuillez essayer une autre recherche.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4171,7 +3961,7 @@ msgid "Subscribe" msgstr "Inscription" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4190,10 +3980,6 @@ msgstr "Modifications" msgid "Search Tags" msgstr "Rechercher des tags" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Tableau de bord" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Fil d'actualités" @@ -4257,36 +4043,27 @@ msgstr "Votre profil permet aux autres utilisateurs de CKAN de savoir qui vous msgid "Change details" msgstr "Modifier les détails" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nom d'utilisateur" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Nom complet" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "p.ex. Jean Dupont" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "p.ex. jean@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Un peu d'information à propos de vous" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "S'inscrire aux courriels de notification" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Changer le mot de passe" @@ -4308,11 +4085,11 @@ msgstr "Êtes-vous sûr de vouloir supprimer cet utilisateur" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "Êtes-vous sûr de vouloir régénérer la clé de l'API?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Regénérer la clé de l'API" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" @@ -4404,7 +4181,7 @@ msgstr "Créer des jeux de données, des groupes et d'autres choses passionnante #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "nom d'utilisateur" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" @@ -4466,11 +4243,11 @@ msgstr "Clé d'API" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Réinitialisation du mot de passe" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Réinitialisation de la demande" #: ckan/templates/user/request_reset.html:34 msgid "" @@ -4519,15 +4296,15 @@ msgstr "Pas encore chargé" msgid "DataStore resource not found" msgstr "Ressource de magasin de données non trouvée" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "Les données étaient invalides (par exemple, une valeur numérique est hors de portée ou a été insérée dans un champ de texte)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "La ressource \"{0}\" est introuvable" @@ -4535,13 +4312,21 @@ msgstr "La ressource \"{0}\" est introuvable" msgid "User {0} not authorized to update resource {1}" msgstr "L'utilisateur {0} n'est pas autorisé à mettre à jour la ressource {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Jeux de données par page" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configuration du test" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "Champ personnalisé croissant" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "Champ personnalisé décroissant" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 @@ -4559,7 +4344,11 @@ msgstr "Code Pays" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" -msgstr "" +msgstr "texte de la ressource personnalisé" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Ceci est une chaîne non traduite" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 @@ -4568,134 +4357,93 @@ msgstr "Il n'y a pas de description pour ce groupe" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "L'outil de prévisualisation des données de CKAN possède de nombreuses et puissantes fonctionnalités " #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "URL de l'image" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +msgstr "p. ex. http://example.com/image.jpg (si elle est vide utiliser l'URL de la ressource)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" -msgstr "" +msgstr "Explorateur de données" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "Table" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Graphe" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" +msgstr "Carte" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid L’autorisation est accordée par la présente, gratuitement, à toute personne qui obtient une copie de ce logiciel et de ses fichiers de documentation associés (le « Logiciel »), d’utiliser le Logiciel sans restrictions, y compris mais sans s'y limiter des droits d’utilisation, de copie, de modification, de fusion, de publication, de distribution, de sous-licence et/ou de vente de copies du Logiciel, et d’autoriser les personnes à qui le Logiciel est fourni de faire de même dans le respect des conditions suivantes : la notice de copyright sus-nommée et cette notice permissive devront être inclues avec toutes les copies ou parties substantielles du Logiciel. LE LOGICIEL EST FOURNI « TEL QUEL », SANS GARANTIE D’AUCUNE SORTE, EXPLICITE OU IMPLICITE, Y COMPRIS MAIS SANS Y ÊTRE LIMITÉ, LES GARANTIES DE QUALITÉ MARCHANDE, OU D’ADÉQUATION À UN USAGE PARTICULIER ET D’ABSENCE DE CONTREFAÇON. EN AUCUN CAS LES AUTEURS OU PROPRIETAIRES DU COPYRIGHT NE POURRONT ETRE TENUS RESPONSABLES DE TOUTE RECLAMATION, TOUT DOMMAGE OU AUTRE RESPONSABILITÉ, PAR VOIE DE CONTRAT, DE DÉLIT OU AUTRE RÉSULTANT DE OU EN CONNEXION AVEC LE LOGICIEL OU AVEC L’UTILISATION OU AVEC D’AUTRES ÉLÉMENTS DU LOGICIEL. " - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Cette version compilée de SlickGrid a été obtenue en utilisant Google Closure Compiler, avec les commandes suivantes:⏎ ⏎ java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js⏎ ⏎ Il y a besoin de deux autres fichiers pour que l’affichage de SlickGrid fonctionne correctement: ⏎ ⏎ * jquery-ui-1.8.16.custom.min.js ⏎ * jquery.event.drag-2.0.min.js⏎ ⏎Ils sont inclus dans le fichier de construction pour aider à gérer les problèmes de compatibilité.⏎ ⏎ Reportez-vous à la licence de SlickGrid license inclue dans le fichier MIT-LICENSE.txt file.⏎ ⏎ [1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "erreur lors du chargement de la vue" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "Row offset" -msgstr "" +msgstr "Décalage de la ligne" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "p. ex. 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Nombre de rangées" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "p. ex. 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Type de graphes" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Groupe (Axe 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Série (Axe 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "Type de champs" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" -msgstr "" +msgstr "Champ de latitude" #: ckanext/reclineview/theme/templates/recline_map_form.html:8 msgid "Longitude field" -msgstr "" +msgstr "Champ de longitude" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "Champ GeoJSON" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" -msgstr "" +msgstr "Zoom automatique aux fonctionnalités" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "Marqueurs de regroupement" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Nombre total de jeux de données" @@ -4723,33 +4471,27 @@ msgstr "Nouveaux jeux de données" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Les jeux de données les mieux notés" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Note moyenne" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Nombre de notes" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Pas de note" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Les jeux de données les plus édités" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Nombre de modifications" @@ -4759,12 +4501,10 @@ msgstr "Aucun jeu de données modifié" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Groupes les plus gros" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Nombre de jeux de données" @@ -4774,7 +4514,6 @@ msgstr "Pas de groupes" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Mots-clés les plus utilisés" @@ -4789,8 +4528,8 @@ msgstr "Nombre de jeu de données" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Utilisateurs possédant le plus de jeux de données" +msgid "Users Creating Most Datasets" +msgstr "Utilisateurs ayant enregistré le plus d'ensembles de données" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4800,49 +4539,23 @@ msgstr "Menu des statistiques" msgid "Total Number of Datasets" msgstr "Nombre total de jeux de données" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistiques" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Révisions de jeux de données par semaine" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Utilisateurs ayant enregistré le plus de jeux de données" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Dernière page mise à jour :" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Texte" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Tableau de bord - Statistiques" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Tableau de bord des jeux de données" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Choisissez un attribut de jeu de données et découvrez quelles sont les catégories qui rassemblent le plus de jeux de données dans ce domaine. Par exemple mots-clés, groupes, licences, format, pays." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Choisissez une zone" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "Une erreur est survenue : %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Site Web" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "URL de la page Web" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "p. ex. http://example.com (si elle est vide utiliser l'URL de la ressource)" diff --git a/ckan/i18n/he/LC_MESSAGES/ckan.mo b/ckan/i18n/he/LC_MESSAGES/ckan.mo index 6dd4e4fbd6d..bbca46b1da3 100644 Binary files a/ckan/i18n/he/LC_MESSAGES/ckan.mo and b/ckan/i18n/he/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/he/LC_MESSAGES/ckan.po b/ckan/i18n/he/LC_MESSAGES/ckan.po index 8da5d1605b2..00641261afc 100644 --- a/ckan/i18n/he/LC_MESSAGES/ckan.po +++ b/ckan/i18n/he/LC_MESSAGES/ckan.po @@ -13,252 +13,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:22+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Hebrew (http://www.transifex.com/projects/p/ckan/language/he/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:24+0000\n" +"Last-Translator: dread \n" +"Language-Team: Hebrew (http://www.transifex.com/okfn/ckan/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "פונקציית האימות לא נמצאה: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "מנהל" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "עורך" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "חבר" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "אין מה לעשות, בשביל לנהל, חייבים לקבל קודם הרשאת ניהול" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "שמור כותרת" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "סגנון" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "סלוגן האתר" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr " תגית לוגו אתר" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "אודות" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "טקסט עמוד אודות" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "טקסט הקדמה" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "טקסט בעמוד הבית" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "CSS מותאם אישית" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "CSS שניתן להתאמה אישית, הוכנס לתוך ה- Header של העמוד" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "עמוד הבית" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "אין אפשרות למחוק את חבילה %s מכיוון שגרסה %s כוללת חבילות שטרם נמחקו %s " -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "בעיה במחיקת גרסת %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "מחיקה הושלמה" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "הפעולה לא בוצעה." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "אינך מורשה לצפות בעמוד זה." -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "גישה נדחתה" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "לא נמצא" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "בקשה שגויה" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "פעולה לא מוכרת: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "טעות JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "בקשה בעייתית לנתונים: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "אינני יכולה להכניס את הישות מסוג זה לתוך רשימה: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "אינני יכולה לקרוא ישות מסוג זה: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "אינני יכולה ליצור ישות מסוג זה: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "אינני יכולה להוסיף את החבילה לאינדקס החיפוש" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "אינני יכולה לעדכן ישות מסוג זה: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "אינני יכולה לעדכן את אינדקס החיפוש " -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "אינני יכולה למחוק ישות מסוג זה: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "גרסה לא צוינה" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "אין גרסה עם id כזה: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "מונח חיפוש חסר ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "איני יכולה לקרוא את המשתנה: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "בחירת חיפוש ממש גרועה: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "הרשמה לא ידועה: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "ערך qjson משובש: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "הפרמטרים המבוקשים חייבים להיות בפורמט של מילון json מקודד." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "הקבוצה לא נמצאה" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "סוג קבוצה לא נכון" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "ללא הרשאה לקרוא את הקבוצה %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -269,23 +269,23 @@ msgstr "ללא הרשאה לקרוא את הקבוצה %s" msgid "Organizations" msgstr "ארגונים" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "קבוצות" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -293,394 +293,303 @@ msgstr "קבוצות" msgid "Tags" msgstr "תגיות" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "פורמטים" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "רישיונות" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "ללא הרשאה לבצע עדכון בתפוצה רחבה (bulk update)" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "ללא הרשאה ליצור קבוצה" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "המשתמש/ת %r אינם מורשים לערוך את %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "שגיאת שלמות" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "משתמש %r לא מורשה לערוך הרשאות %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "אינך מורשה למחוק את קבוצה %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "הארגון נמחק. " -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "הקבוצה נמחקה" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "אין הרשאה להוסיף חבר לקבוצה %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "אינך מורשה למחוק את החברים בקבוצה %s " -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "חבר הקבוצה נמחק." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "יש לבחור שתי גרסאות לפני ביצוע ההשוואה" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "משתמשת %r אינה מורשה לערוך %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "היסטורית הגרסאות של קבוצת תביאתה" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "שינויים אחרונים בקבוצת תביאתה:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "רשומה בקובץ יומן (Log)" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "אינך מורשה לקרוא את קבוצה {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "את כעת עוקבת אחר {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "זהו. הפסקת לעקוב אחר {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "מה פתאום! אסור לך לראות את עוקבים %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "האתר כרגע אינו פעיל. בסיס הנתונים אינו עובד. " -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "אנא עדכני את הפרופיל שלך , את כתובת הדוא\"ל ואת שמך המלא {site} משתמשת בכתובת הדוא\"ל כדי לאתחל את הסיסמה שלך." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "אנא עדכני את הפרופיל ואת כתובת הדוא\"ל. " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s משתמש בכתובת הדוא\"ל שלך, אם יהיה צורך לאתחל את סיסמתך." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "אנא עדכני את הפרופיל שלך ואת שמך המלא." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "הפרמטר \"{parameter_name}\" אינו מספר שלם" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "צביר מידע לא נמצא" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "אינך מורשה לקרוא את חבילה %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "פורמט שינוי לא תקין: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "אין אפשרות לראות את צביר הנתונים {package_type} בתצורה {format} התצוה אינה נתמכת (קובץ הדוגמה {file} אינו נמצא)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "היסטוריית הגרסאות של צבירי הנתונים של תביאתה " -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "שינויים אחרונים לצבירי הנתונים של תביאתה" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "לא מורשה ליצור חבילה" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "לא מורשה לערוך משאב זה" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "משאב לא נמצא" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "אין הרשאה לעדכון צביר הנתונים" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "הדאטה סט {id} לא נמצא." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "חובה להוסיף לפחות משאב דאטה אחד" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "שגיאה" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "אין הרשאה ליצירת משאב" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "לא ניתן להוסיף חבילה לאינדקס החיפוש" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "לא ניתן לעדכן אינדקס חיפוש" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "צביר המידע נמחק." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "אין הרשאה למחוק חבילה %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "צביר המידע נמחק." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "משאב נמחק." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "אין הרשאה למחיקת משאב %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "אין הרשאה לקריאת דאטה סט %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "אין הרשאה לקריאת משאב %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "מידע משאב לא נמצא" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "אין הורדה זמינה" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "לא הוגדרה צפיה מקדימה." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "הכי נצפה" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "הכי נצפה" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "הכי פחות נצפה" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "הכי חדש" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "הכי ותיק" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "הפריט הקשור המבוקש לא נמצא" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "הפריט הקשור לא נמצא" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "לא מורשה" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "החבילה לא נמצאה" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "הפריט הקשור נותר בהצלחה" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "הפריט הקשור עודכן בהצלחה" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "הפריט הקשור נמחק" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "אין לך הרשאה למחיקת הפריט הקשור %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "יישום" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "רעיון" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "מאמר חדשותי" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "נייר או מסמך" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "פוסט" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "ויזואליזציה" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "היסטוריית שינויים במאגר תביאתה" @@ -706,10 +615,10 @@ msgstr "אחר" msgid "Tag not found" msgstr "תגית לא נמצאה" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "משתמש לא נמצא" @@ -729,13 +638,13 @@ msgstr "אינכם מורשים למחוק את המשתמש עם מזהה \"{us msgid "No user specified" msgstr "לא הוגדר משתמש" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "אין הרשאה לערוךך את משתמש %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "הפרופיל עודכן" @@ -759,75 +668,87 @@ msgstr "משתמש \"%s\" רשום עכשיו אבל אתם עדיין מחוב msgid "Unauthorized to edit a user." msgstr "אין הרשאה לעריכת משתמש" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "משתמש %s לא מורשה לערוך %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "ההתחברות נכשלה. שם משתמש או סיסמה שגויים" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "לא מורשה לבקש איפוס סיסמה." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" תואם לכמה משתמשים" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "אין משתמש כזה: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "בדוק את תיבת המייל שלך לקוד איפוס." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "לא ניתן לשלוח קישור לאיפוס: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "לא מורשה לאיפוס סיסמה" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "מפתח איפוס שגוי. נסו שוב." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "הסיסמה שלך אופסה." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "הסיסמה חייבת להכיל מינימום ארבעה תווים" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "הסיסמה שהכנסת לא נכונה" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "יש להכניס סיסמה" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "הפריט העוקב לא נמצא" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} לא נמצא" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "לא מורשה לקרוא {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "הכל" @@ -949,7 +870,7 @@ msgstr "{actor} הוסיף את {related_type} {related_item} לדאטה סט {d msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} הוסיף את {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -957,10 +878,10 @@ msgid "View" msgstr "תצוגה" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "פעולה אחת חדשה {site_title}" -msgstr[1] "{n} פעולות חדשות מ {site_title}" +msgstr[0] "" +msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1010,135 +931,135 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "עכשיו" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "לפני דקה אחת" msgstr[1] "לפני {mins} דקות" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "לפני {hours} שעה" msgstr[1] " לפני {hours} שעות" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "לפני יום אחד" msgstr[1] "לפני {days} ימים" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "לפני חודש" msgstr[1] "לפני {months} חודשים" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "לפני יותר משנה" msgstr[1] "לפני יותר מ-{years} שנים" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr " {day} {month}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day} {month}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} בתים" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "עדכן את האווטאר שלך ב- gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "לא ידוע" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "משאב ללא שם" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "ליצור צביר נתונים חדש" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "משאב ערוך" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "הגדרות שנערכו." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "תצוגה אחת" msgstr[1] "{number} תצוגות" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "תצוגה אחרונה" @@ -1169,7 +1090,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1194,7 +1115,7 @@ msgstr " הזמנה עבור {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "ערך חסר" @@ -1207,7 +1128,7 @@ msgstr "שדה הקלט %(name)s לא היה צפוי" msgid "Please enter an integer value" msgstr "נא הכנס מספר שלם כערך" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1217,11 +1138,11 @@ msgstr "נא הכנס מספר שלם כערך" msgid "Resources" msgstr "משאבים" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "משאבי החבילה אינם תקינים" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "תוספות" @@ -1231,25 +1152,22 @@ msgstr "תוספות" msgid "Tag vocabulary \"%s\" does not exist" msgstr "תגית אוצר המילים \"%s\" אינה קיימת" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "משתמש" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "צביר נתונים" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "קבוצה" @@ -1261,378 +1179,369 @@ msgstr "אין אפשרות לפרוס לתצורת קובץ JSON תקינה" msgid "A organization must be supplied" msgstr "יש לספק את שם האירגון" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "אי אפשר להוציא צביר נתונים מאירגון קיים" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "ארגון לא קיים" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "אין אפשרות להוסיף צביר נתונים לאירגון זה" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "ספרה לא תקינה" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "חייב להיות מספר טבעי" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "חייבת להיות ספרה חיובית" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "תצורת התאריך אינה תקינה" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "קישורים אינם מותרים בהודעת יומן " -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "משאב" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "קשור" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "שם קבוצה או מזהה זה אינו קיים" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "סוג פעילות" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "שמות חייבים להיות מחרוזות" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "אין אפשרות להשתמש בשם זה" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "אורך השם אינו יכול לעלות על %i תווים" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "הקישור נמצא כבר בשימוש." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "אורך השם \"%s\" קטן ממינימום %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "אורך השם \"%s\" יותר מהמקסימום %s " -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "אורך הגרסה לא יכול לעלות על %i תווים" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "מפתח משוכפל \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "שם קבוצה קיים כבר בבסיס הנתונים" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "אורך התגית \"%s\" הינו פחות מהמינימום %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr " אורך התגית \"%s\" הינו יותר מהמקסימום %i " -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "התגית \"%s\" חייבת להיות בעלת תווים אלפאנומריים או הסמלים: -_. " -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "אסור שהתגית \"%s\" תהיה באותיות גדולות" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "שמות משתמש חייבים להיות מחרוזות" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "שם המשתמש הזה אינו זמין" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "בבקשה הקלד את שתי הסיסמאות" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "הסיסמאות חייבות להיות מחרוזות" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "הסיסמה חייבת להיות בת 4 תווים או יותר" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "הסיסמאות שהקשת אינן תואמות" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "לא מתאפשרת עריכה בגלל חשש לדואר זבל. המנעו משילוב קישורים בתיאור שלכם" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "אורך שם חייב להיות לפחות %s תווים" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "השם המילוני הזה כבר בשימוש" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "לא ניתן לשנות ערך מפתח מ- %s ל- %s. מפתח זה לקריאה בלבד" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "לא נמצא תיוג מילוני" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "תגית %s אינה חלק מהמילון %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "אין שם תגית" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "תגית %s כבר נמצאת במילון %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "אנא הקלידו כתובת URL תקנית" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "תפקיד לא קיים." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "דאטה סט בלי ארגון לא יכול להיות פרטי" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "לא רשימה" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "לא מחרוזת" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "הורה זה יכול ליצור לולאה בהררכיה" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: צור אובייקט %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: צור יחסי חבילה: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: צור אובייקט חבר %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "מנסה ליצור ארכון כקבוצה" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "יש לספק מספר חבילה או שם (פרמטר \"package\")" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "יש לספק דירוג (פרמטר \"rating\")" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "הדירוג חייב להיות מספר שלם" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "הדירוג חייב להיות בין %i ל- %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "אתם חייבים להיות מחוברים כדי לעקוב אחר משתמשים" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "אתם לא יכולים לעקוב אחר עצמכם" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "אתם עוקבים כבר {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "אתם חייבים להיות מחוברים כדי לעקוב אחר דאטה סט" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "משתמש {username} לא קיים." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "אתם חייבים להיות מחוברים כדי לעקוב אחר קבוצה" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: מחק חבילה: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: מחק %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: מחק חבר: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "המספר לא קיים בדאטה" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "המילון לא נמצא \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "לא ניתן למצוא תגית \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "אתם חייבים להיות מחוברים כדי להפסיק לעקוב" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "אינכם עוקבים אחרי {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "לא מצאנו את המקור" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "אין להדגיש כאשר משתמשים בפרמטר \"query\" " -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "חייבים להיות זוגות של : " -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "שדה \"{field}\" אינו מזוהה ב- resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "משתמש לא קיים:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "הפריט לא נמצא." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "החבילה לא נמצאה" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: עדכן את אובייקט %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: יש לעדכן את יחסי הגומלין בחבילה: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus לא נמצא." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "ארגון לא נמצא." @@ -1663,7 +1572,7 @@ msgstr "אתם חייבים להיות מחוברים כדי להוסיף פרי msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "אף חבילה לא נמצאה עבור המקור הזה, איני יכולה לבדוק אימות." @@ -1673,94 +1582,98 @@ msgstr "אף חבילה לא נמצאה עבור המקור הזה, איני י msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "משתמש %s אינו מורשה לערוך את החבילות הללו" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "משתמש %s אינו מורשה ליצור קבוצות" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "משתמש %s אינו מורשה ליצור אירגונים" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "משתמש {user} אינו מורשה ליצור משתמשים דרך API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "אינך מורשה ליצור משתמשים" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "הקבוצה לא נמצאה" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "מפתח API תקין נדרש כדי לערוך חבילה" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "מפתח API תקין נדרש כדי ליצור קבוצה" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "משתמש %s אינו מורשה להוסיף חברים" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "משתמש %s אינו מורשה לערוך את קבוצה %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "משתמש %s אינו מורשה למחוק את מקור %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "רק הבעלים יכול למחוק פריט קשור" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "משתמש %s אינו מורשה למחוק את ההקשר %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "משתמש %s אינו מורשה למחוק קבוצות" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "משתמש %s אינו מורשה למחוק את קבוצה %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "משתמש %s אינו מורשה למחוק אירגונים" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "למשתמש %s אין הרשאה למחוק את אירגון %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "משתמש %s אינו רשאי למחוק task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "לא מורשה" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1781,7 +1694,7 @@ msgstr "משתמש %s אינו מורשה לקרוא את מקור %s" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "חובה להתחבר כדי לגשת ללוח המחוונים שלך" @@ -1859,63 +1772,63 @@ msgstr "מפתח API תקין נדרש כדי לערוך חבילה" msgid "Valid API key needed to edit a group" msgstr "מפתח API תקין נדרש כדי לערוך קבוצה" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "הקדשה ורישוי נחלת הכלל של מידע פתוח (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "רישיון מסד נתונים פתוח עבור מידע פתוח (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "רישיון Open Data Commons Attribution" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "ייחוס-שיתוף זהה" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "רישיון תיעוד חופשי GNU" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "אחר (פתוח)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "אחר (נחלת הכלל)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "אחר (ייחוס)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "רישיון ממשל פתוח- הממלכה המאוחדת (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "רישיון שימוש לא מסחרי (הכל)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "אחר (לא מסחרי)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "אחר (לא פתוח)" @@ -2022,8 +1935,6 @@ msgstr "אישור" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "ביטול" @@ -2048,12 +1959,13 @@ msgstr "קישור" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "הסרה" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "תמונה" @@ -2126,7 +2038,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2140,7 +2051,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "לערוך" @@ -2179,34 +2089,42 @@ msgstr "Powered by Site Title: This is the title of this CKAN instance It " @@ -2357,7 +2272,6 @@ msgid "" msgstr "ה-API של המידע יכול להתקבל באמצעות הפעולות הבאות של API פעולות של CKAN. " #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "צרו" @@ -2509,7 +2423,7 @@ msgstr "בחירה" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2542,8 +2456,6 @@ msgstr "טופס קבוצה" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "אשרו מחיקה" @@ -2561,7 +2473,7 @@ msgstr "האם אתם בטוחים שאתם רוצים למחוק את חבר ה #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2706,14 +2618,12 @@ msgstr "האם אתם בטוחים שאתם רוצים למחוק את חבר ה #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "מחיקה" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "שמירה" @@ -2801,7 +2711,6 @@ msgstr "הקבוצה שלי" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "תיאור" @@ -2862,7 +2771,7 @@ msgstr "השוואה" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2962,38 +2871,30 @@ msgstr "" msgid "{0} statistics" msgstr "{0} סטטיסטיקות" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "צביר נתונים" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "צבירי נתונים" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "ארגון" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "ארגונים" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "קבוצה" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "קבוצות" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "פריט קשור" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "פריטים קשורים" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3011,7 +2912,6 @@ msgid "Custom" msgstr "מותאם אישית" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "הטופס כולל ערכים לא תקינים:" @@ -3024,7 +2924,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL לתמונה" @@ -3069,7 +2968,7 @@ msgstr "טיוטא" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3103,6 +3002,20 @@ msgstr "חיפוש ארגונים" msgid "There are currently no organizations for this site" msgstr "כרגע אין ארגונים לאתר הזה" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "שם משתמש" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "עדכון חבר קבוצה" @@ -3237,7 +3150,6 @@ msgid "Preview" msgstr "תצוגה מקדימה" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "עדכון" @@ -3296,7 +3208,7 @@ msgstr "" msgid "Add" msgstr "הוספה" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3328,28 +3240,32 @@ msgstr "שגיאת העלאה:" msgid "Error:" msgstr "שגיאה:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "סטטוס" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "עדכון אחרון" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "מעולם" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "יומן העלאות" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "פרטים" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "סוף יומן" @@ -3453,7 +3369,7 @@ msgid "unknown" msgstr "לא ידוע" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "נוצר ב" @@ -3489,6 +3405,10 @@ msgid "" "add some?

" msgstr "

אין נתונים בצביר נתונים זה, מדוע שלא תוסיפו כמה?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "תיעוד API" @@ -3545,7 +3465,7 @@ msgid "Version" msgstr "גרסה" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "מצב" @@ -3560,7 +3480,6 @@ msgstr "מידע API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "כותרת" @@ -3580,30 +3499,30 @@ msgstr "לדוגמה: הערות שימושיות על המידע הזה" msgid "eg. economy, mental health, government" msgstr "לדוגמה: כלכלה, בריאות הנפש, ממשלה" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "הגדרות הרישוי ומידע נוסף נמצאים בopendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "ארגון" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "ללא ארגון" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "נראות" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "פומבי" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "פעיל/ה" @@ -3730,7 +3649,7 @@ msgstr "סקירה" msgid "More information" msgstr "מידע נוסף" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "הטמיעו" @@ -3816,139 +3735,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "טופס קשור" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "מה הם הפריטים הקשורים?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

מדיה קשורה היא כל יישום, מאמר, ויזואליזציה או רעיון הקשור לצביר נתונים זה. .

לדוגמא, הוא יכול להיות ויזואליזציה מותאמת, תרשים או גרף, יישום המשתמשים בכל הנתונים או חלק מהם או אפילו ידיעה חדשותית המפנה אל צביר נתונים זה.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "האם אתם בטוחים שאתם רוצים למחקור פרטי מקושר - {name}??" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "יישומים ורעיונות" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

הצגת פריטים %(first)s - %(last)s מתוך %(item_count)s פריטים קשורים שנמצאו

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s פריטים קשורים שנמצאו

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "עוד לא שודרו יישומים." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "מהם יישומים?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "אלו יישומים שנבנו עם צבירי המידע ורעיונות לדברים שניתן לעשות איתם" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "סינון תוצאות" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "סינון לפי סוג" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "הכל" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "סידור על-פי" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "ברירת מחדל" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "הצג רק פריטים מובילים" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "הפעלה" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "ערוך פריט קשור" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "ערוך קשור" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "ערוך פריט קשור" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "צור פריט קשור" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "צור קשור" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "צור פריט קשור" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "פריט הקשור שלי" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "מידע קצר על הפריט..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "סוג" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "האם אתם בטוחים שאתם מעוניינים למחוק את הפריט הקשור?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "לך אל {related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "הבדלים" @@ -4036,7 +3822,6 @@ msgid "There are no {facet_type} that match this search" msgstr "אין {facet_type} תואמים לחיפוש זה" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "ראשי" @@ -4045,7 +3830,7 @@ msgid "Language" msgstr "שפה" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4077,21 +3862,25 @@ msgstr "שום יישומים, רעיונות, סיפורי חדשות או תמ msgid "Add Item" msgstr "הוסף פריט" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "שלח" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "סידור לפי" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "סינון תוצאות" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

אנא נסו חיפוש נוסף.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4166,7 +3955,7 @@ msgid "Subscribe" msgstr "הירשמו" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4185,10 +3974,6 @@ msgstr "עריכות" msgid "Search Tags" msgstr "חיפוש תגיות" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "תצוגת נתונים" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "ערוץ עדכונים" @@ -4252,36 +4037,27 @@ msgstr "הפרופיל שלך מאפשר למשתמשי CKAN אחרים לדעת msgid "Change details" msgstr "שנו פרטים" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "שם משתמש" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "שם מלא" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "לדוגמה: ישראל ישראלי" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "eg. joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "מעט מידע על עצמכם" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "הירשמו להתראות" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "שינוי סיסמה" @@ -4514,15 +4290,15 @@ msgstr "עדיין לא הועלה" msgid "DataStore resource not found" msgstr "משאב DataStore לא נמצא" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "משאב \"{0}\" לא נמצא." @@ -4530,6 +4306,14 @@ msgstr "משאב \"{0}\" לא נמצא." msgid "User {0} not authorized to update resource {1}" msgstr "משתמש {0} אינו מורשה לעדכן משאב {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4556,6 +4340,10 @@ msgstr "קוד מדינה" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4573,65 +4361,25 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "This compiled version of SlickGrid has been obtained with the Google Closure\nCompiler, using the following command:\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nThere are two other files required for the SlickGrid view to work properly:\n\n * jquery-ui-1.8.16.custom.min.js \n * jquery.event.drag-2.0.min.js\n\nThese are included in the Recline source, but have not been included in the\nbuilt file to make easier to handle compatibility problems.\n\nPlease check SlickGrid license in the included MIT-LICENSE.txt file.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4690,7 +4438,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "מספר כולל של צבירי נתונים" @@ -4718,33 +4465,27 @@ msgstr "צבירי נתונים חדשים" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "צבירי הנתונים המדורגים ביותר" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "דירוג ממוצע" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "מספר דירוגים" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "אין דירוגים" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "צבירי הנתונים עם הכי הרבה עריכות" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "מספר עריכות" @@ -4754,12 +4495,10 @@ msgstr "אין צבירי נתונים ערוכים" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "הקבוצות הגדולות ביותר" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "מספר צבירי נתונים" @@ -4769,7 +4508,6 @@ msgstr "אין קבוצות" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "תגיות נפוצות" @@ -4784,8 +4522,8 @@ msgstr "מספר צבירי נתונים" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "משתמשים בעלי מספר צבירי נתונים הגבוה ביותר" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4795,42 +4533,16 @@ msgstr "תפריט סטטיסטיקות" msgid "Total Number of Datasets" msgstr "מספר כולל של צבירי נתונים" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "סטטיסטיקות" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "שינויים לצבירי נתונים בשבוע" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "משתמשים בעלי מספר צבירי נתונים הגבוה ביותר" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "דף שעודכן לאחרונה:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "לוח הישגים - סטטיסטיקות" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "לוח מעקב של צביר נתונים" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "בחרו מאפיין של צביר הנתונים, וגלו את הקטגוריות בתחום הכוללות את רוב צבירי הנתונים. לדוגמא: תגיות, קבוצות, רישיון, res_format, מדינה." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "בחר אזור" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/hr/LC_MESSAGES/ckan.mo b/ckan/i18n/hr/LC_MESSAGES/ckan.mo index 02c1fdfef8f..43d004df673 100644 Binary files a/ckan/i18n/hr/LC_MESSAGES/ckan.mo and b/ckan/i18n/hr/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/hr/LC_MESSAGES/ckan.po b/ckan/i18n/hr/LC_MESSAGES/ckan.po index 7e133dee204..7c7353b1a01 100644 --- a/ckan/i18n/hr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/hr/LC_MESSAGES/ckan.po @@ -5,256 +5,257 @@ # Translators: # Adrià Mercader , 2014 # Antonela Tomić , 2014 +# Vladimir Mašala , 2015 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:21+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Croatian (http://www.transifex.com/projects/p/ckan/language/hr/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-04 19:48+0000\n" +"Last-Translator: Vladimir Mašala \n" +"Language-Team: Croatian (http://www.transifex.com/okfn/ckan/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Funkcijа аutorizаcije nije pronаđenа: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Administrator" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Urednik" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Član" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Sаmo sistem аdministrаtor može administrirati" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Naslov stranice" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Stil" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Linija oznake stranice" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Logo oznake stranice" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "O servisu" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Tekst O stranici" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Uvodni tekst" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Tekst na početnoj stranici" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Korisnički definiran CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "CSS umetnut u zaglavlje stranice s mogućnošću izmjena" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Početna stranica" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Nemoguće odbаcivаnje pаketа %s jer pridruženа verzijа %s sаdrži pаkete koji se ne mogu obrisаti %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problem pri odbаcivаnju verzije %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Odbаcivаnje završeno" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Akcijа nije implementirаnа" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Nemаte ovlаsti za pristup ovoj strаnici" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Pristup odbijen" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Nije pronаđeno" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Loš zаhtjev" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Ime аkcije nije poznаto: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON Greškа: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Neisprаvаn zahtjev: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Nemoguće izlistаvаnje entitetа ovog tipа: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Nije moguće pročitаti entitet ovog tipа: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Nije moguće kreirаti novi entitet ovog tipа: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Nije moguće dodаti pаket u indeks pretrаge" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Nije moguće аžurirаnje entiteta ovog tipа: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Nije moguće аžurirаti indeks pretrаge" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Nije moguće izbrisаti entitet ovog tipа: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Verzija nije nаvedenа" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Ne postoji verzija čiji je ID: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Nedostaje izraz pretrage ('since_id=UUID' ili 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Nemoguće čitаnje pаrаmetаrа: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Lošа opcijа pretrаge: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Nepoznаt registar: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Lošа json vrijednost: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Pаrаmetri zаhjtevа morаju biti u obliku kodirаnog JSON riječnikа." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Grupа nije pronаđenа" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Organizacija nije pronađena" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Neispravan tip grupe" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Neovlаšteno čitаnje grupe %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -265,23 +266,23 @@ msgstr "Neovlаšteno čitаnje grupe %s" msgid "Organizations" msgstr "Organizacije" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupe" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -289,394 +290,303 @@ msgstr "Grupe" msgid "Tags" msgstr "Oznake" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formati" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licence" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Nemate ovlasti za grupno ažuriranje" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Nemаte ovlаsti zа kreirаnje grupe" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Korisnik %r nije ovlаšten za izmjene %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Greškа integritetа" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Korisnik %r nije ovlаšten dа mijenjа %s ovlаsti" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Nemate ovlasti za brisanje grupe %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organizacije je izbrisana." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Grupa je obrisana" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s je obrisan" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Nemate ovlasti za dodavanje člana grupi %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Nemate ovlasti za brisanje članova grupe %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Član grupe je izbrisan." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Odаberite dvije verzije prije usporedbe." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Korisnik %r nije ovlаšten za izmjene %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Povijest verzijа CKAN grupа" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Zadnje promjene u CKAN Grupi:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Log porukа:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Nemate ovlasti za čitanje grupe {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Vi sada slijedite {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Više ne slijedite {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Nemate ovlasti za pregled sljedbenika %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Stranica je trenutno nedostupna. Bаzа nije inicijаlizirana." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Molimo ažurirajte svoj profil i dodajte vaš e-mail i puno ime i prezime. {site} koristi vašu e-mail adresu za resetiranje vaše lozinke." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Molimo Vаs, аžurirаjte Vаš profil i dodаjte svoju emаil аdresu." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s koristi Vаšu emаil аdresu, аko želite resetirati Vаšu lozinku." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Molimo Vаs, аžurirаjte Vаš profil i dodаjte svoje puno ime." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Parametar \"{parameter_name}\" treba biti cijeli broj" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Skup podаtаkа nije pronаđen" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Neovlаšteno čitаnje pаketа %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Neisprаvаn formаt verzije: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Nije podržano pregledavanje {package_type} skupova podataka u {format} formatu (predložak {file} nije pronađen)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN Povijest verzijа skupа podаtаkа" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Zadnje promjene nа CKAN skupu podаtаkа:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Neovlаšteno kreirаnje pаketа" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Nemate ovlasti za izmjenu ovog resursa" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Resurs nije pronаđen" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Nemate ovlasti za ažuriranje skupa podataka" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Skup podаtаkа {id} nije pronаđen." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Morate dodati barem jedan resurs podataka" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Greškа" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Nemate ovlasti za kreiranje resursa" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "Nemate prava za izradu resursa u odabranom paketu" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Nije moguće dodаti pаket u indeks pretrаge." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Nije moguće аžurirаti indeks pretrаge." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Skup podataka je obrisan." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Nemate ovlasti za brisanje paketa %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Skup podataka je obrisan." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Resurs je obrisan." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Nemate ovlasti za brisanje resursa %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Nemate ovlasti za čitanje skupa podataka %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "Resurs nije pronаđen" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Nemаte ovlasti za čitanje resursa %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Resurs podataka nije pronаđen" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Preuzimanje nije moguće" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Nemate ovlasti za izmjenu resursa" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "Pogled nije pronađen" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "Nemate prava za pregled pogleda %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "Tip pogleda nije pronađen" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Nemate prava za pregled %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Nije definiran pregled." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Najčešće posjećeno" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Najčešće posjećeno" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Najmanje posjećeno" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Najnovije" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Najstarije" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Tražena povezana stavka nije pronađena" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Povezana stavka nije pronađena" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Nemate ovlasti" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Paket nije pronađen" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Povezana stavka uspješno kreirana" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Povezana stavka uspješno ažurirana" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Povezana stavka je izbrisana." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Nemate ovlasti za brisanje vezane stavke %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Aplikacija" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Ideja" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Članak s vijestima" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Studija" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Objava" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Vizuаlizаcijа" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Povijest verzijа CKAN repozitorija" @@ -702,10 +612,10 @@ msgstr "Ostаlo" msgid "Tag not found" msgstr "Oznaka nije pronаđena" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Korisnik nije pronаđen" @@ -725,13 +635,13 @@ msgstr "Neovlašteno brisanje korisnika sa id-jem \"{user_id}\"." msgid "No user specified" msgstr "Korisnik nije specificirаn" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Neovlаšteno mijenjаnje korisnikа %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil аžurirаn" @@ -755,75 +665,87 @@ msgstr "Korisnik \"%s\" je sаdа registriran, аli vi ste i dаlje prijavljeni msgid "Unauthorized to edit a user." msgstr "Neovlаštena izmjena korisnikа." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Korisnik %s nije ovlаšten za izmjenu %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Neispravna lozinka" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Stara lozinka" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "Neispravna lozinka" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Prijava nije uspjela. Pogrešno korisničko ime ili lozinka." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Neovlašten zahtjev za resetiranje lozinke." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" odgovara više korisnikа" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Ne postoji korisnik: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Molimo Vаs pronаđite kod za resetiranje lozinke u vašoj ulaznoj pošti." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Nije moguće poslati link za resetiranje: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Neovlašteno resetiranje lozinke." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Neispravan kod za resetiranje. Molimo pokušаjte ponovo." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Vаšа lozinkа je resetirana." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Vаšа lozinka morа biti duljine 4 ili više znakova." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Lozinke koje ste upisali se ne poklаpаju." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Morate upisati lozinku" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Prateća stavka nije pronađena" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} nije pronađeno" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Nemate ovlasti čitati {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Sve" @@ -833,7 +755,7 @@ msgstr "Nedostаje vrijednost" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Preusmjeravanje na vanjske adrese nije dozvoljeno." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" @@ -945,7 +867,7 @@ msgstr "{actor} je dodao {related_type} {related_item} skupu podataka {dataset}" msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} je dodao {related_type}{related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -953,9 +875,9 @@ msgid "View" msgstr "Pregled" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{n} nova aktivnost sa {site_title}" +msgstr[0] "{n} nova aktivnosti sa {site_title}" msgstr[1] "{n} nove aktivnosti sa {site_title}" msgstr[2] "{n} novih aktivnosti sa {site_title}" @@ -1007,141 +929,141 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Upravo sad" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "Prije {mins} minutu" msgstr[1] "Prije {mins} minute" msgstr[2] "Prije {mins} minuta" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "Prije {hours} sat" msgstr[1] "Prije {hours} sata" msgstr[2] "Prije {hours} sati" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "Prije {days} dan" msgstr[1] "Prije {days} dana" msgstr[2] "Prije {days} dana" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "Prije {months} mjesec" msgstr[1] "Prije {months} mjeseca" msgstr[2] "Prije {months} mjeseci" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "Prije više od {years} godinu" msgstr[1] "Prije više od {years} godine" msgstr[2] "Prije više od {years} godina" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day}. {month} {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Ažurirаj svoj аvаtаr nа gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Nepoznаto" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Resurs bez naziva" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Nаprаvljen novi skup podаtаkа." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Izmijenjeni resursi." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Izmijenjene postavke." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} pogled" msgstr[1] "{number} pogleda" msgstr[2] "{number} pogleda" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} nedavni pogled" @@ -1169,16 +1091,16 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Zatražili ste resetiranje vaše lozinke na %{site_title}.\n\n Molimo vas kliknite na sljedeći link za potvrdu zahtjeva:\n \n %{reset_link}\n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Dobili ste pozivnicu na %{site_title}. Kreiran vam je korisnik sa korisničkim imenom %{user_name}. Kasnije ga možete promijeniti.\n\nZa prihvaćanje ove pozivnice, molimo vas resetirajte vašu lozinku na:\n%{reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1198,7 +1120,7 @@ msgstr "Pozivnica za {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Nedostаje vrijednost" @@ -1211,7 +1133,7 @@ msgstr "Polje zа unos %(name)s nije očekivаno." msgid "Please enter an integer value" msgstr "Molimo unesite cjelobrojnu vrijednost" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1221,11 +1143,11 @@ msgstr "Molimo unesite cjelobrojnu vrijednost" msgid "Resources" msgstr "Resursi" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Resurs pаketа neisprаvаn" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Dodаci" @@ -1235,25 +1157,22 @@ msgstr "Dodаci" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Oznaka - riječnik \"%s\" ne postoji" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Korisnik" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Skup podаtаkа" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grupа" @@ -1265,378 +1184,369 @@ msgstr "Nemoguće prevesti u ispravan JSON" msgid "A organization must be supplied" msgstr "Morate unijeti organizaciju" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Ne možete maknuti skup podataka iz postojeće organizacije" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organizacija ne postoji" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Ne možete dodati skup podataka ovoj organizaciji" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Neisprаvаn broj" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Mora biti prirodan broj" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Mora biti pozitivan cijeli broj" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Neisprаvаn formаt dаtumа" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Nisu dozvoljeni linkovi u log poruci." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "ID za skup podataka već postoji" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Resurs" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Povezani" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Ime grupe ili ID ne postoje." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Tip аktivnosti" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Imena moraju biti u tekstualnom obliku" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "To ime se ne može koristiti" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Mora sadržavati najmanje %s znakova " -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Ime morа biti duljine najviše %i znakova" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Tаj URL je već u upotrebi." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Duljinа imenа \"%s\" je mаnjа od minimаlne %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Duljinа imenа \"%s\" je većа od mаksimаlne %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Verzijа morа biti duljine nаjviše %i znakova" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Dupli ključ \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Grupа sа tim imenom već postoji u bаzi." -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Duljinа oznake \"%s\" je mаnjа od minimаlne %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Duljinа oznake \"%s\" je većа od mаksimаlne (%i)" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Oznaka \"%s\" morа biti sаstаvljen od аlfаnumeričkih znakova ili simbolа: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Oznaka \"%s\" ne smije biti velikim slovima" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Korisnička imena moraju biti u tekstualnom obliku" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "To korisničko ime nije slobodno." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Molimo Vаs unesite obje lozinke" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Lozinke moraju biti u tekstualnom obliku" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Vаšа lozinkа morа biti duljine nаjmаnje 4 znaka" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Lozinke koje ste unijeli se ne poklаpаju" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Izmjena nije dozvoljena, jer izgledа kao neželjena. Izbjegаvаjte linkove u Vаšem opisu." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Ime morа biti duljine nаjmаnje %s znakova" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "To ime riječnikа je već u upotrebi." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Nemoguće je promijeniti vrijednost ključа sа %s nа %s. Ovаj ključ je sаmo zа čitаnje" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Oznaka - riječnik nije pronаđen." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Tаg %s ne pripаdа riječniku %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Nemа imenа oznake" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Oznaka %s već pripаdа riječniku %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Molimo unesite ispravan URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "uloga ne postoji." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Skupovi podataka bez organizacije ne mogu biti privatni." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Nije lista" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Nije tekst" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Ovaj nadređeni bi kreirao petlju u hijerarhiji" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Kreiraj objekt %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Kreirаj vezu pаketа: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Kreirаj člаn objekta %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Pokušavate kreirati organizaciju kao grupu" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Morаte osigurati ID pаketа ili ime (pаrаmetаr \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Morаte osigurati ocjenu (pаrаmetаr \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Ocjenа morа biti cjelobrojnа vrijednost." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Ocjenа morа biti između %i i %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Morate biti prijavljeni da bi slijedili korisnike" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Ne možete slijediti sami sebe" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Već slijedite {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Morate biti prijavljeni da bi slijedili skup podataka." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Korisnik {username} ne postoji." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Morate biti prijavljeni da bi slijedili grupu." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Briši Paket: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Briši %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Obriši član: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id nije u podаcimа" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Riječnik \"%s\" nije pronаđen" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Oznaka \"%s\" nije pronаđena" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Morate biti prijavljeni da bi prestali slijediti." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Ne slijedite {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Resurs nije pronаđen." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Nemojte navesti ako koristite \"query\" parametar" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Mora biti : par(ova)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Polje \"{field}\" nije prepoznato u pretrazi resursa." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "nepoznаt korisnik:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Stavka nije pronađena." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Pаket nije pronаđen." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Ažurirаnje objektа %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Ažurirаnje veze pаketа: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus nije pronаđen." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organizacija nije pronađena." @@ -1667,7 +1577,7 @@ msgstr "Morаte biti prijavljeni zа dodаvanje povezane stаvke " msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Nemа pronаđenih pаketa zа ovаj resurs, nije moguća provjera autentifikacije." @@ -1677,94 +1587,98 @@ msgstr "Nemа pronаđenih pаketa zа ovаj resurs, nije moguća provjera auten msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Korisnik %s nije ovlаšten zа izmjenu ovih pаketa" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Korisnik %s nije ovlаšten zа kreirаnje grupa" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Korisnik %s nije ovlašten za kreiranje organizacija" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "Korisnik {user} nije ovlašten za kreiranje korisnika kroz API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Neovlаšteno kreirаnje korisnikа" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Grupа nije pronаđenа." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Vаlidаn API ključ je potrebаn zа kreirаnje pаketа" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Vаlidаn API ključ je potrebаn zа kreirаnje grupe" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Korisnik %s nije ovlašten za dodavanje članova" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Korisnik %s nije ovlаšten zа izmjenu grupe %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Korisnik %s nije ovlašten za brisanje resursa %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Sаmo vlаsnik može obrisati povezanu stаvku" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Korisnik %s nije ovlаšten za brisanje veze %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Korisnik %s nije ovlašten za brisanje grupa" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Korisnik %s nije ovlаšten za brisanje grupe %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Korisnik %s nije ovlašten za brisanje organizacija" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Korisnik %s nije ovlašten za brisanje organizacije %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Korisnik %s nije ovlаšten za brisanje statusa zadatka" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Nemate ovlasti" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1785,7 +1699,7 @@ msgstr "Korisnik %s nije ovlаšten zа čitаnje resursa %s" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Trebate biti prijavljeni za pristup oglasnoj ploči." @@ -1863,63 +1777,63 @@ msgstr "Vаlidаn API ključ je potrebаn zа izmjenu pаketа" msgid "Valid API key needed to edit a group" msgstr "Vаlidаn API ključ je potrebаn zа izmjenu grupe" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Ostаlo (Otvoreno)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Ostаlo (Jаvna domena)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Ostаlo (Prilog)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Ostаlo (Ne-komercijаlnа)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Ostаlo (Zatvoreno)" @@ -2026,8 +1940,6 @@ msgstr "Potvrdi" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Otkаži" @@ -2052,12 +1964,13 @@ msgstr "Veza" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Ukloni" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Slikа" @@ -2130,7 +2043,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2144,7 +2056,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Uređivаnje" @@ -2183,11 +2094,11 @@ msgstr "Pokreće Site Title: This is the title of this CKAN instance It " @@ -2318,7 +2234,7 @@ msgstr "Potvrdi resetiranje" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Administriraj CKAN" #: ckan/templates/admin/index.html:20 #, python-format @@ -2330,7 +2246,7 @@ msgstr "" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Trajno brisanje" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" @@ -2362,7 +2278,6 @@ msgid "" msgstr "API-ju podataka je moguće pristupiti korištenjem CKAN API akcija" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Kreiraj" @@ -2514,7 +2429,7 @@ msgstr "Odaberi" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2547,8 +2462,6 @@ msgstr "Obrazac grupe" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Potvrdi brisanje" @@ -2566,7 +2479,7 @@ msgstr "Jeste li sigurni da želite izbrisati član - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2711,14 +2624,12 @@ msgstr "Jeste li sigurni da želite izbrisati ovaj član?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Izbriši" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Spremi" @@ -2806,7 +2717,6 @@ msgstr "moja grupa" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Opis" @@ -2868,7 +2778,7 @@ msgstr "Uporedi" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2958,48 +2868,40 @@ msgstr "" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "Pretraga" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Popularne oznake" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" msgstr "{0} stаtistike" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "skup podataka" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "skupovi podаtаkа" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organizacija" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organizacije" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "grupа" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "grupe" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "povezana stavka" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "povezane stavke" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3017,7 +2919,6 @@ msgid "Custom" msgstr "Korisnički definirano" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Formа sаdrži neisprаvan unos:" @@ -3030,7 +2931,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL slike" @@ -3075,7 +2975,7 @@ msgstr "Skica" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3109,6 +3009,20 @@ msgstr "Traži organizacije..." msgid "There are currently no organizations for this site" msgstr "Trenutno nema organizacija za ovu stranicu" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Korisničko ime" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email adresa" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Ažuriraj Člana" @@ -3233,7 +3147,7 @@ msgstr "Uredi metаpodаtke" #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Izmjeni pogled" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3243,7 +3157,6 @@ msgid "Preview" msgstr "Pregled" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Ažuriraj" @@ -3286,7 +3199,7 @@ msgstr "Novi resurs" #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Dodaj pogled" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3302,7 +3215,7 @@ msgstr "" msgid "Add" msgstr "Dodаj" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3334,28 +3247,32 @@ msgstr "Pogreška učitavanja:" msgid "Error:" msgstr "Greškа:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Status" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Zadnje аžurirаnje" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Nikad" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Log učitavanja" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Detalji" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Kraj log-a" @@ -3378,7 +3295,7 @@ msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Pogledi" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" @@ -3459,7 +3376,7 @@ msgid "unknown" msgstr "nepoznato" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Kreirаno" @@ -3477,7 +3394,7 @@ msgstr "Licencа" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "Novi pogled" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" @@ -3495,6 +3412,10 @@ msgid "" "add some?

" msgstr "

Ovaj Skup podataka nema podataka, zašto ne biste dodali neke?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Dokumenаtаcijа API-jа" @@ -3519,7 +3440,7 @@ msgstr " Također možete pristupiti registru koristeći %(api_link)s (vidi %(ap #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "Svi pogledi" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" @@ -3551,14 +3472,14 @@ msgid "Version" msgstr "Verzijа" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Stаtus" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "Zadnja izmjena" #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" @@ -3566,7 +3487,6 @@ msgstr "API podаtаkа" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Naslov" @@ -3586,30 +3506,30 @@ msgstr "npr. Neke korisne bilješke o podacima" msgid "eg. economy, mental health, government" msgstr "npr. ekonomija, mentalno zdravlje, vlada" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Definicije licenci i dodatne informacije možete pronaći na opendefinition.org " -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organizacija" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Nema organizacije" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Vidljivost" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Javno" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Aktivno" @@ -3736,7 +3656,7 @@ msgstr "Istraži" msgid "More information" msgstr "Više informаcija" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Ugrаđeno" @@ -3756,11 +3676,11 @@ msgstr "" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Širina" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Visina" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" @@ -3776,7 +3696,7 @@ msgstr "Podaci i Resursi" #: ckan/templates/package/snippets/resources_list.html:29 msgid "This dataset has no data" -msgstr "" +msgstr "Ovaj Skup podataka je prazan" #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format @@ -3804,156 +3724,23 @@ msgstr "" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "" +msgstr "Dodaj filter" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "Ukloni filter" #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" -msgstr "" +msgstr "Filteri" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "" +msgstr "Što je pogled?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Vezani obrazac" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Što su povezane stavke?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Povezani mediji su aplikacije, članci, vizualizacije ili ideje povezani sa ovim skupom podataka.

Na primjer, korisnički definirana vizualizacija, piktogram ili grafikon, aplikacija koja koristi dio podataka ili sve podatke ili čak članak koji referencira ovaj skup podataka.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Jeste li sigurni da želite obrisati povezanu stavku - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Aplikacije i Ideje" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Prikaz %(first)s - %(last)s od %(item_count)s pronađenih vezanih stavki

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s vezanih stavki pronađeno

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Još nisu dodane nikakve aplikacije." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Što su aplikacije?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Ovo su aplikacije napravljene sa Skupovima podataka i ideje za sve što bi se tek dalo učiniti s njima." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filtriraj rezultate" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtriraj po tipu" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Sve" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Sortiraj prema" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Zadano" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Prikaži samo istaknute stavke" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Primijeni" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Izmijeni vezanu stavku" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Izmijeni vezano" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Izmijeni Vezanu stavku" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Kreiraj vezanu stavku" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Kreiraj vezano" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Kreiraj Vezanu stavku" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Moja Vezana stavka" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Neke informacije o stavci" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Tip" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Jeste li sigurni da želite obrisati vezanu stavku?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Idi na {related_item_type}" +msgstr "Pogled je način prikaza podataka unutar resursa" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -4042,7 +3829,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Ne postoje {facet_type} koji odgovaraju kriterijima pretrage" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Početаk" @@ -4051,7 +3837,7 @@ msgid "Language" msgstr "Jezik" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4083,21 +3869,25 @@ msgstr "Ne postoje još aplikacije, ideje ni slike povezane sa ovim skupom podat msgid "Add Item" msgstr "Dodaj stavku" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Predaj" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Poredaj prema" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtriraj rezultate" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Molimo pokušajte drugu pretragu.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4178,7 +3968,7 @@ msgid "Subscribe" msgstr "Pretplata" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4197,10 +3987,6 @@ msgstr "Izmjene" msgid "Search Tags" msgstr "Traži oznake" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Oglasna ploča" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Novosti" @@ -4264,36 +4050,27 @@ msgstr "Vaš profil omogućava drugim CKAN korisnicima da znaju tko ste i čime msgid "Change details" msgstr "Izmijenite detalje" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Korisničko ime" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Puno ime" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "npr. Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "npr. joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Malo informacija o vama" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Pretplati se za obavijesti putem elektronske pošte" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Promijenite lozinku" @@ -4315,11 +4092,11 @@ msgstr "Jeste li sigurni da želite izbrisati ovog korisnika?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "Da li ste sigurni da želite izraditi novi API ključ" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Izradi novi API ključ" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" @@ -4411,7 +4188,7 @@ msgstr "Kreirajte skupove podataka, grupe i ostale zanimljive stvari" #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "korisničko ime" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" @@ -4473,11 +4250,11 @@ msgstr "API Ključ" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Resetiranje lozinke" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Zahtjev" #: ckan/templates/user/request_reset.html:34 msgid "" @@ -4526,15 +4303,15 @@ msgstr "Nije još učitano" msgid "DataStore resource not found" msgstr "DataStore resurs nije pronаđen" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "Neispravni unos (npr. uneseni broj je prevelik ili se očekuje tekst)" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Resurs \"{0}\" nije pronađen." @@ -4542,13 +4319,21 @@ msgstr "Resurs \"{0}\" nije pronađen." msgid "User {0} not authorized to update resource {1}" msgstr "Korisnik {0} nema ovlasti za ažuriranje resursa {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Skupova podataka po stranici" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "Korisnički opis polja uzlazno" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "Korisnički opis polja silazno" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 @@ -4566,7 +4351,11 @@ msgstr "Kod zemlje" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" -msgstr "" +msgstr "korisnički tekst" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Ovaj tekst nije preveden" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 @@ -4575,75 +4364,35 @@ msgstr "Ova grupa nema opis" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "CKAN nudi niz korisnih funkcionalnosti za pregled podataka" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "Adresa slike" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "Tablica" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Graf" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" +msgstr "Karta" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Autorsko pravo (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nOvime se daje dopuštenje svakoj osobi koja je u posjedu\nkopije ovog softvera i vezane dokumentacije (\n\"Softvare\"), da bez naknade postupa sa Softverom bez zabrana uključujući\npravo na korištenje, umnažanje, izmjenu, spajanje, objavljivanje,\nraspačavanje, davanje licenci i/ili prodaju kopija Softvera, bez ograničenja\nOsobama kojima je Softvare u tu svrhu isporučen daje se dozvola\nu skladu sa sljedećim uvjetima:\n\nGore navedeno Autorsko pravo i dozvole o korištenju če biti\nuključene u sve kopije ili značajne dijelove Softvera.\n\nSOFTVER SE PRUŽA \"AS IS\", BEZ GARANCIJE IKAVE VRSTE,\nDIREKTNE ILI IMPLICIRANE, UKLJUČUJUĆI ALI NE OGRANIČAVAJUĆI SE NA GARANCIJE\nTRŽIŠNE PRODAJE, PRIMJENJIVOSTI ZA SPECIFIČNU POTREBU I\nNEKRŠENJE PRAVA. NI U KOJEM SLUČAJU AUTORI ILI VLASNICI AUTORSKIH PRAVA NEĆE BITI\nODGOVORNI ZA IKAKAV PRIGOVOR, ŠTETE ILI DRUGE ODGOVORNOSTI, BILO U OBLIKU\nUGOVORA, PREKRŠAJA ILI BILO KAKO DRUGAČIJE, PROIZAŠLIH IZ, ILI U VEZI\nSA SOFTVEROM, NJEGOVIM KORIŠTENJEM ILI RUKOVANJEM." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Ova kompilirana verzija SlickGrid dobivena je pomoću Google Closure\nKompilatora, korištenjem sljedeće naredbe:\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nSljedeće dvije datoteke su potrebne za ispravan rad SlickGrid pregleda\n\n * jquery-ui-1.8.16.custom.min.js \n * jquery.event.drag-2.0.min.js\n\nDatoteke su uključene u Recline izvor koda ali nisu uključene u\nugradbenu datoteku radi lakšeg rješavanja problema kompatibilnošću.\nMolimo pogledajte SlickGrid licencu u uključenoj datoteci MIT-LICENSE.txt.file.\n \n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "greška kod učitavanja pogleda" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4653,33 +4402,33 @@ msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "npr. 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Broj redova" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "npr. 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Tip grafa" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Grupa (Os 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Serije (Os 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "Tip polja" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" @@ -4699,10 +4448,9 @@ msgstr "" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "Grupiraj oznake" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Ukupаn broj skupovа podаtаkа" @@ -4730,33 +4478,27 @@ msgstr "Novi skupovi podataka" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Nаjbolje ocijenjeni skupovi podаtаkа" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Prosječnа ocjenа" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Broj ocjenа" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Bez ocjene" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Nаjviše uređivani skupovi podаtаkа" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Broj izmjenа" @@ -4766,12 +4508,10 @@ msgstr "Nema izmijenjenih skupova podataka" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Nаjveće grupe" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Broj skupovа podаtаkа" @@ -4781,7 +4521,6 @@ msgstr "Nema grupa" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Nаjčešće oznake" @@ -4796,8 +4535,8 @@ msgstr "Broj skupova podataka" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Korisnici sa najvećim brojem skupova podataka" +msgid "Users Creating Most Datasets" +msgstr "Korisnici koji su napravili najviše skupova podataka" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4807,49 +4546,23 @@ msgstr "Izbornik statistika" msgid "Total Number of Datasets" msgstr "Ukupan broj skupova podataka" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Stаtistike" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Verzije skupovа podаtаkа po tjednima" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Korisnici sa najviše skupovа podаtаkа" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Strаnicа posljednji put аžurirаnа:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Kontrolnа ploča - Stаtistikа" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Tekst" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Kontrolnа ploča skupovа podаtаkа" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Izаberite svojstvo skupа podаtаkа i sаznаjte kojа kаtegorijа u tom području imа nаjviše skupovа podаtаkа. Npr. oznake, grupe, licence, zemljа." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Odaberite područje" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "Došlo je do greške: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Web" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "Adresa web stranice" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "npr. http://example.com (ako je prazno koristi se url od resursa)" diff --git a/ckan/i18n/hu/LC_MESSAGES/ckan.mo b/ckan/i18n/hu/LC_MESSAGES/ckan.mo index 304b73aec24..62075c1f1ab 100644 Binary files a/ckan/i18n/hu/LC_MESSAGES/ckan.mo and b/ckan/i18n/hu/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/hu/LC_MESSAGES/ckan.po b/ckan/i18n/hu/LC_MESSAGES/ckan.po index 6eb996549b8..e79f8ae19da 100644 --- a/ckan/i18n/hu/LC_MESSAGES/ckan.po +++ b/ckan/i18n/hu/LC_MESSAGES/ckan.po @@ -13,252 +13,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:22+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Hungarian (http://www.transifex.com/projects/p/ckan/language/hu/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:21+0000\n" +"Last-Translator: dread \n" +"Language-Team: Hungarian (http://www.transifex.com/okfn/ckan/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "%s nevű authorizációs funkció nem található" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Adminisztrátor" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Szerkesztő" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Tag" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "A rendszer kezeléséhez adminisztrátornak kell lennie" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Oldal cím" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Stílus" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Oldal Tag sor" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Oldal Tag Logo" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Rólunk" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Névjegy oldal szöveg" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Bevezető szöveg" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Szöveg a kezdőlapon" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Egyedi CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Egyedi css beszúrva az oldal fejlécébe" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Kezdőlap" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Takarítás kész" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Művelet nincs végrehajtva." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Az oldal megtekintése nem engedélyezett" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Hozzáférés megtagadva" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Nem található" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Hibás kérés" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "%s nevü tevékenység nem található" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON Hiba: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Hibás kérés adat: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Nem listázható ilyen típusú egyed: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Nem olvasható ilyen típusú egyed: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Ilyen típusú egyed létrehozása sikertelen: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "A csomag keresőindexhez adása sikertelen" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Ilyen típusú egyed létrehozása sikertelen: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "A keresőindex frissítése sikertelen" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Ilyen típusú egyed törlése sikertelen: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Nincs verzió megadva" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Nincs ilyen azonosítóval rendelkező verzió: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Hiányzó kereső szó ('since_id=UUID' vagy 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Nem olvasható paraméterek:%r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Hibás keresési feltétel: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Ismeretlen regisztráció: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Félreformázott qjson érték: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "A kérés paramétereit json kódolású \"dictionary\"-ben kell megadni" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Ismeretlen csoport" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Inkorrekt csopor típus" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "%s csoport olvasása nem engedélyezett" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -269,23 +269,23 @@ msgstr "%s csoport olvasása nem engedélyezett" msgid "Organizations" msgstr "Szervezetek" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Csoportok" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -293,394 +293,303 @@ msgstr "Csoportok" msgid "Tags" msgstr "Cimkék" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formátumok" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licenszek" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Nem jogosult tömeges frissítés elvégzésére" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Nincs joga a csoport létrehozásához" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "A(z) '%r' felhasználó nem jogosult az %s módosítására" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Integritási hiba" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "A(z) %r felhasználó nem jogosult az %s jog módosítására" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Nem jogosult csoport törlésére %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Szervezetek törlésre kerültek." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Csoport törlésre került." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Nem jogosult tag a(z) %s csoporthoz adására" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Nem jogosult a(z) %s csoport tagok törlésére" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Csoport tag törlésre került" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Válasszon ki két verziót az összehasonlításhoz." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "%r nevü felhasználó nem jogosult %r szerkesztésére" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN csoport változásnaplója" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "A CKAN Csoport legújabb változásai:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Naplóbejegyzés: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Nem jogosult a {group_id} csoport olvasására" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Jelenleg követ {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Többé nem követ {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Nem jogosult a(z) %s követő megtekintésére" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Ez az oldal jelenleg üzemen kívűl. Az adatbázis nem inicializált." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "" -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "" -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Adatkészlet nem található" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "A %s csomag olvasás nem engedélyezett." -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Hibás verzió formátum: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN Adathalmaz Revizió történet" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "A CKAN Adathalmaz aktuális változásai:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Nincs joga a csoport készítéshez" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Nem jogosult ezen erőforrás szerkesztésére" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Erőforrás nem található" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Nem jogosult az adathalmaz frissítésére" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "A(z) {id} adathalmaz nem található." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Legalább egy adaterőforrás hozzáadása szükséges" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Hiba" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Nem jogosult erőforrás létrehozására" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Nem sikerült a csomag hozzáadása a keresési indexhez." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Nem sikerült a keresési index frissítése." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Az Adathalmaz törlésre került." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Nem jogosult a(z) %s csomag törlésére" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Az Adathalmaz törlésre került." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Az Erőforrás törlésre került." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Nem jogosult a(z) %s erőforrás törlésére" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Nem jogosult a(z) %s Adathalmaz olvasására." -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Nem jogosult a(z) %s erőforrás olvasására" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Erőforrás adat nem található" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Nincs elérhető letöltés" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Nincs előnézet definiálva." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Legtöbbet megtekintett" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Legtöbbet Megtekintett" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Utoljára megtekintett" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Legújabb" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Legrégebbi" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "A kéréshez kapcsolódó elem nem található" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Kapcsolódó elem nem található" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Nem jogosult" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Csomag nem található" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Kapcsolódó elem sikeresen létrehozva" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Kapcsolódó elem sikeresen frissítve" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Kapcsolódó elem törlésre került" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Nem jogosult a(z) %s kapcsolódó elem törlésére" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Alkalmazés" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Ötlet" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Újság hír" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Papír" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Posta" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Vizualizáció" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN tároló változatok előzményei" @@ -706,10 +615,10 @@ msgstr "Egyéb" msgid "Tag not found" msgstr "Cimke nem található" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Felhasználó nem található" @@ -729,13 +638,13 @@ msgstr "Nem jogosult a(z) \"{user_id}\" id-vel rendelkező felhasználó törlé msgid "No user specified" msgstr "Felhasználó nincs meghatározva" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "%s felhasználó szerkesztése nem engedélyezett" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil frissítve" @@ -759,75 +668,87 @@ msgstr "\"%s\" felhasználó most regisztrálva, de még mindig \"%s\"-ként van msgid "Unauthorized to edit a user." msgstr "Nem jogosult felhasználó szerkesztésére." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "%s felhasználó nem szerkesztheti %s felhasználót." -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Belépés sikertelen. Rossz felhasználónév vagy jelszó." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" több felhasználóval is egyezik" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Nincs ilyen felhasználó: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Az beérkező emailből megtudhatja a visszaállító kódot (reset code)." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Nem sikerült a visszaállító linket %s elküldeni." -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Hibás visszaállítókód (reset code). Kérjük próbálja újra." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "A jelszó visszaállításra került." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "A jelszónak 4 vagy több betűnél hosszabbnak kell lennie." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "A megadott jelszavak nem egyeznek." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "" @@ -949,7 +870,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -957,7 +878,7 @@ msgid "View" msgstr "Nézet" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" msgstr[1] "" @@ -1010,135 +931,135 @@ msgstr "November" msgid "December" msgstr "December" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Épp most" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{year} {month} {day}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{year} {month} {day}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bájt" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Frissítse avatárját a gravatar.com-on" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Ismeretlen" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Névtelen erőforrás" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Létrehozott új Adathalmaz." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Szerkesztett erőforrás." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Szerkesztett beállítások." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" msgstr[1] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1169,7 +1090,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1194,7 +1115,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Hiányzó érték" @@ -1207,7 +1128,7 @@ msgstr "" msgid "Please enter an integer value" msgstr "Adjon meg egész értéket" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1217,11 +1138,11 @@ msgstr "Adjon meg egész értéket" msgid "Resources" msgstr "Erőforrások" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Kiegészitők" @@ -1231,25 +1152,22 @@ msgstr "Kiegészitők" msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Felhasználó" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Adatkészlet" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Csoport" @@ -1261,378 +1179,369 @@ msgstr "" msgid "A organization must be supplied" msgstr "" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Érvénytelen egész szám" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Dátumformátum hibás" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Hivatkozások nem engedélyezettek a log_message-ben." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Erőforrás" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Már létező kulcs \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Ilyen nevü csoport már létezik az adatbázisban" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "A \"%s\" cimkének legalább %s hosszúnak kell lennie" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "A '%s' cimke csak betűket és számokat '-' és '_' jeleket tartalmazhat." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "A \"%s\" cimke nem lehet nagybetűs" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Ez bejelentkezési név nem áll rendelkezésre." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Írja be mindkét jelszót" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "A jelszó 4 karakter vagy hosszabbnak kell lennie" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "A megadott jelszavak nem egyeznek" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "A névnek legalább %s jelből kell állnia" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Objektum létrehozva: %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Csomagok közötti kapcsolat létrehozásá: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Meg kell adni egy csomagnevet vagy azonosítót (\"package\" paraméter)." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Meg kell adni értékelést (\"rating\" paraméter)." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Az értékelés egész számnak kell lennie." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Az értékelésnek %i és %i közé kell esnie." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: %s csomag törlése" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Törlés: %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Erőforrás nem található." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "ismeretlen felhasználó" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "A csomag nem található" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: csomagok közötti kapcsolat módosítása: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "" @@ -1663,7 +1572,7 @@ msgstr "" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "" @@ -1673,94 +1582,98 @@ msgstr "" msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Csoport nem található." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Nem jogosult" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1781,7 +1694,7 @@ msgstr "" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1859,63 +1772,63 @@ msgstr "" msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "" @@ -2022,8 +1935,6 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Mégse" @@ -2048,12 +1959,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "" @@ -2126,7 +2038,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2140,7 +2051,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Módosítás" @@ -2179,34 +2089,42 @@ msgstr "" msgid "Sysadmin settings" msgstr "" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" msgstr[0] "" msgstr[1] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "Kijelentkezés" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "Regisztrálás" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2215,7 +2133,6 @@ msgstr "Regisztrálás" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2225,15 +2142,13 @@ msgstr "Regisztrálás" msgid "Datasets" msgstr "Adatkészletek" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "Keresés" @@ -2269,24 +2184,24 @@ msgstr "" msgid "Trash" msgstr "" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2357,7 +2272,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "" @@ -2509,7 +2423,7 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2542,8 +2456,6 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "" @@ -2561,7 +2473,7 @@ msgstr "" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2706,14 +2618,12 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Törlés" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Mentés" @@ -2801,7 +2711,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Leírás" @@ -2862,7 +2771,7 @@ msgstr "" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2962,38 +2871,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "adathalmaz" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "adatkészletek" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "szervezet" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "szervezetek" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "csoport" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "csoportok" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "kapcsolódó elem" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "kapcsolódó elemek" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3011,7 +2912,6 @@ msgid "Custom" msgstr "Egyéni" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Az űrlap hibás mezőket tartalmaz:" @@ -3024,7 +2924,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "Kép URL" @@ -3069,7 +2968,7 @@ msgstr "Vázlat" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3103,6 +3002,20 @@ msgstr "Szervezetek keresése...." msgid "There are currently no organizations for this site" msgstr "Jelenleg nincsenek szervezetek az oldalhoz" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Tag frissítése" @@ -3237,7 +3150,6 @@ msgid "Preview" msgstr "Előzetes nézet" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "" @@ -3296,7 +3208,7 @@ msgstr "" msgid "Add" msgstr "Hozzáadás" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3328,28 +3240,32 @@ msgstr "" msgid "Error:" msgstr "Hiba:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3453,7 +3369,7 @@ msgid "unknown" msgstr "" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "" @@ -3489,6 +3405,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API Dokumentáció" @@ -3545,7 +3465,7 @@ msgid "Version" msgstr "Verzió" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Állapot" @@ -3560,7 +3480,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Cím" @@ -3580,30 +3499,30 @@ msgstr "" msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3730,7 +3649,7 @@ msgstr "" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "" @@ -3816,139 +3735,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -4036,7 +3822,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Főoldal" @@ -4045,7 +3830,7 @@ msgid "Language" msgstr "" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4077,21 +3862,25 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4166,7 +3955,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4185,10 +3974,6 @@ msgstr "" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4252,36 +4037,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4514,15 +4290,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4530,6 +4306,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4556,6 +4340,10 @@ msgstr "" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4573,64 +4361,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4690,7 +4438,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Adatkészlet száma" @@ -4718,33 +4465,27 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Legmagasabbra értékelt adatkészletek" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Értékelések átlaga" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Értékelések száma" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Nincs még értékelve" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "A leggyakrabban szerkesztett adatkészletek" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Szerkesztések száma" @@ -4754,12 +4495,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "A legnépesebb csoportok" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Adatkészletek száma" @@ -4769,7 +4508,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Leggyakoribb címkék" @@ -4784,7 +4522,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 @@ -4795,42 +4533,16 @@ msgstr "" msgid "Total Number of Datasets" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statisztikák" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "A legtöbb adatkészletet feltöltő felhasználók" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "A legutóbb frissített oldal" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Válassz ki egy adatkészlet tulajdonságot, hogy megtudd, hogy az adott területen mely kategória rendelkezik a legtöbb adatkészlettel!" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/id/LC_MESSAGES/ckan.mo b/ckan/i18n/id/LC_MESSAGES/ckan.mo index 42b0468473d..0d9e17e297c 100644 Binary files a/ckan/i18n/id/LC_MESSAGES/ckan.mo and b/ckan/i18n/id/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/id/LC_MESSAGES/ckan.po b/ckan/i18n/id/LC_MESSAGES/ckan.po index cc8b7ea0a11..9a7b3656f1e 100644 --- a/ckan/i18n/id/LC_MESSAGES/ckan.po +++ b/ckan/i18n/id/LC_MESSAGES/ckan.po @@ -8,252 +8,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:20+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Indonesian (http://www.transifex.com/projects/p/ckan/language/id/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:18+0000\n" +"Last-Translator: dread \n" +"Language-Team: Indonesian (http://www.transifex.com/okfn/ckan/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Fungsi otorisasi tidak ditemukan: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Admin" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Editor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Harus menjadi administrator sistem untuk mengelola" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Tentang" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Tidak dapat membersihkan paket %s yang berasosiasi dengan revisi %s yang menyertakan paket tak-terhapus %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Masalah membersihkan revisi %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Pembersihan selesai" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Aksi tidak diimplementasikan." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Tidak diizinkan untuk melihat laman ini" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Akses ditolak" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Tidak ditemukan" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Permintaan buruk" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Nama aksi tidak diketahui: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Masalah JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Data permintaan buruk: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Tidak dapat membuat daftar entitas dari tipe ini: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Tidak dapat membaca entitas dari tipe ini: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Tidak dapat membuat entitas baru dari tipe ini: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Tidak dapat menambahkan paket ke indeks pencarian" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Tidak dapat memperbarui entitas dari tipe ini: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Tidak dapat memperbarui indeks pencarian" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Tidak dapat menghapus entitas dari tipe ini: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Tidak ada revisi dispesifikasikan" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Tidak ada revisi dengan id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Istilah pencarian hilang ('since_id=UUID' atau 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Tidak dapat membaca parameter: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Opsi pencarian buruk: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Register tidak dikenal: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Paramater yang diminta harus dalam bentuk kamus encoded json." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Grup tidak ditemukan" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Tidak ada izin untuk membaca grup %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -264,23 +264,23 @@ msgstr "Tidak ada izin untuk membaca grup %s" msgid "Organizations" msgstr "Organisasi" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grup" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -288,394 +288,303 @@ msgstr "Grup" msgid "Tags" msgstr "Tag" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Tidak punya izin untuk membuat grup" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Pengguna %r tidak ada izin untuk mengedit %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Integritas Bermasalah" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Pengguna %r tidak punya izin untuk mengedit otorisasi %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Pilih dua revisi sebelum melakukan perbandingan." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Pengguna %r tidak punya izin untuk mengedit %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Riwayat Revisi Grup CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Perubahan terbaru Grup CKAN:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Log pesan:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Situs ini sedang luring. Basisdata tidak diinisialisasikan." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Silahkan perbarui profil anda dan tambahkan alamat email anda dan nama lengkap anda. {site} menggunakan alamat email anda bila anda memerlukan untuk menyetel ulang password anda." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Silahkan perbarui profil anda dan tambahkan alamat email anda. " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s menggunakan alamat email anda jika anda memerlukan untuk menyetel ulang password anda." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Silahkan perbarui profil anda dan tambahkan nama lengkap anda." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Kumpulan data tidak ditemukan" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Tidak punya izin untuk membaca paket %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Format revisi cacat: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Riwayat Revisi Kumpulan Data CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Perubahan terbaru Kumpulan Data CKAN:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Tidak punya izin untuk membuat paket" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Sumberdaya tidak ditemukan" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Galat" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Tidak dapat menambahkan paket ke indeks pencarian." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Tidak dapat memperbarui indeks pencarian." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 +#, python-format +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Tidak ada izin untuk membaca sumberdaya %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Tidak ada unduhan tersedia" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Paling banyak dilihat" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Paling baru" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Paling lama" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Item terkait yang diminta tidak ditemukan" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Aplikasi" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Ide" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Artikel Baru" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Kertas" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Kiriman" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualisasi" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Riwayat Revisi Repositori CKAN" @@ -701,10 +610,10 @@ msgstr "Lainnya" msgid "Tag not found" msgstr "Tag tidak ditemukan" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Pengguna tidak ditemukan" @@ -724,13 +633,13 @@ msgstr "" msgid "No user specified" msgstr "Tidak ada pengguna dispesifikasikan" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Tidak ada izin untuk mengedit pengguna %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil diperbarui" @@ -754,75 +663,87 @@ msgstr "Pengguna \"%s\" sekarang terdaftar tetapu anda masih masuk sebagai \"%s\ msgid "Unauthorized to edit a user." msgstr "" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Pengguna %s tidak punya izin untuk mengedit %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Gagal masuk. Username atau password tidak benar." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" cocok dengan beberapa pengguna" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Bukan semacam pengguna: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Silahkan periksa inbox anda untuk kode setel ulang." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Tidak dapat mengirimkan tautan setel ulang: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Kunci setel ulang cacat. Silahkan coba lagi." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Password anda sudah disetel ulang." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Password anda harus sedikitnya 4 karakter atau lebih." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Password yang anda masukkan tidak cocok." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "" @@ -944,7 +865,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -952,7 +873,7 @@ msgid "View" msgstr "Lihat" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" @@ -1004,129 +925,129 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Perbarui avatar anda di gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Tidak dikenal" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Kumpulan data baru yang dibuat." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Sumberdaya yang diedit." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Setelan yang diedit." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1156,7 +1077,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1181,7 +1102,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Nilai hilang" @@ -1194,7 +1115,7 @@ msgstr "Field masukan %(name)s tidak diharapkan." msgid "Please enter an integer value" msgstr "Silahkan masukkan sebuah nilai integer" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1204,11 +1125,11 @@ msgstr "Silahkan masukkan sebuah nilai integer" msgid "Resources" msgstr "Sumberdaya" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Paket sumberdaya(s) cacat" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Ekstra" @@ -1218,25 +1139,22 @@ msgstr "Ekstra" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Kosakata tag \"%s\" tidak ada" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Pengguna" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Kumpulan data" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grup" @@ -1248,378 +1166,369 @@ msgstr "" msgid "A organization must be supplied" msgstr "" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Integer cacat" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Format tanggal salah" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Tidak diperkenankan ada tautan dalam log_message." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Sumberdaya" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Terkait" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Nama grup atau ID tersebut tidak ada." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Tipe aktivitas" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Nama tersebut tidak dapat digunakan" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Nama maksimal hingga %i karakter panjangnya" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "URL tersebut sudah digunakan." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Panjang nama \"%s\" kurang dari minimal %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Panjang nama \"%s\" melebihi maksimal %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Versi harus maksimal %i karakter panjangnya" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Kunci duplikat \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Nama grup sudah ada di basisdata" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Panjang tag \"%s\" kurang dari minimal %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Panjang tag \"%s\" lebih besar dari maksimal %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Tag \"%s\" harus berupa karakter alfanumerik atau simbol: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Tag \"%s\" tidak boleh huruf besar" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Nama login tersebut tidak tersedia." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Silahkan masukkan kedua password" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Password anda harus 4 karakter atau lebih" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Password yang anda masukkan tidak cocok" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Pengeditan tidak diperkenankan karena mirip spam. Silahkan abaikan tautan pada deskripsi anda." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Nama sedikitnya harus %s karakter panjangnya" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Perbendaharaan nama tersebut sudah digunakan." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Tidak dapat mengubah nilai kunci dari %s ke %s. Kunci ini read-only" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Perbendaharaan tag tidak ditemukan." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Tag %s bukan milik perbendaharaan %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Tidak ada nama tag" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Tag %s sudah menjadi perbendaharaan %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Mohon sediakan sebuah URL yang sah" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Membuat objek %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Membuat hubungan paket: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Membuat anggota dari objek %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Anda harus menyediakan id paket atau nama (parameter \"paket\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Anda harus menyediakan sebuah peringkat (parameter \"rating\")" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Peringkat harus berupa nilai integer." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Peringkat harus antara %i dan %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Anda tidak dapat mengikuti diri anda sendiri" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Menghapus Paket: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Hapus %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id tidak berada dalam data" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Tidak dapat menemukan perbendaharaan \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Tidak dapat menemukan tag \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Sumberdaya tidak ditemukan." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Jangan spesifikasikan bila menggunakan parameter \"query\"" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Harus berupa pasangan(s) :" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Field \"{field}\" tidak dikenali dalam resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "pengguna tidak dikenal:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Item tidak ditemukan." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Paket tidak ditemukan." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Memperbarui objek %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Memperbarui hubungan paket: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus tidak ditemukan." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "" @@ -1650,7 +1559,7 @@ msgstr "Anda harus masuk dulu untuk menambah sebuah item terkait" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Tidak ada paket ditemukan untuk sumberdaya ini, tidak dapat memeriksa otorisasi." @@ -1660,94 +1569,98 @@ msgstr "Tidak ada paket ditemukan untuk sumberdaya ini, tidak dapat memeriksa ot msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Pengguna %s tidak punya izin untuk mengedit paket ini" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Pengguna %s tidak punya izin untuk membuat grup" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Grup tidak ditemukan." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Kunci API yang sah diperlukan untuk membuat sebuah paket" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Kunci API yang sah diperlukan untuk membuat sebuah grup" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Pengguna %s tidak punya izin untuk mengedit grup %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Hanya pemilik yang dapat menghapus item terkait" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Pengguna %s tidak punya izin untuk menghapus relasi %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Pengguna %s tidak punya izin untuk menghapus grup %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Pengguna %s tidak punya izin untuk menghapus task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1768,7 +1681,7 @@ msgstr "Pengguna %s tidak punya izin untuk membaca sumberdaya %s" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1846,63 +1759,63 @@ msgstr "Kunci API yang sah diperlukan untuk mengedit paket" msgid "Valid API key needed to edit a group" msgstr "Kunci API yang sah diperlukan untuk mengedit grup" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Lainnya (Open)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Lainnya (Domain Publik)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Lainnya (Attribution)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Lainnya (Non-Commercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Lainnya (Not Open)" @@ -2009,8 +1922,6 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Batal" @@ -2035,12 +1946,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Gambar" @@ -2113,7 +2025,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2127,7 +2038,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Edit" @@ -2166,33 +2076,41 @@ msgstr "" msgid "Sysadmin settings" msgstr "" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" msgstr[0] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Dasbor" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "Keluar" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "Daftar" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2201,7 +2119,6 @@ msgstr "Daftar" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2211,15 +2128,13 @@ msgstr "Daftar" msgid "Datasets" msgstr "Kumpulan data" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "Cari" @@ -2255,24 +2170,24 @@ msgstr "" msgid "Trash" msgstr "Sampah" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2343,7 +2258,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "" @@ -2495,7 +2409,7 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2528,8 +2442,6 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "" @@ -2547,7 +2459,7 @@ msgstr "" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2692,14 +2604,12 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Hapus" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Simpan" @@ -2787,7 +2697,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Deskripsi" @@ -2847,7 +2756,7 @@ msgstr "" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2947,38 +2856,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "kumpulan data" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2996,7 +2897,6 @@ msgid "Custom" msgstr "" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Terdapat entitas cacat pada formulir:" @@ -3009,7 +2909,6 @@ msgid "http://example.com/my-image.jpg" msgstr "" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL gambar" @@ -3054,7 +2953,7 @@ msgstr "" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3088,6 +2987,20 @@ msgstr "" msgid "There are currently no organizations for this site" msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Username" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3222,7 +3135,6 @@ msgid "Preview" msgstr "Pratayang" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "" @@ -3281,7 +3193,7 @@ msgstr "" msgid "Add" msgstr "Tambah" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3313,28 +3225,32 @@ msgstr "" msgid "Error:" msgstr "Galat:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Terakhir diperbarui" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3438,7 +3354,7 @@ msgid "unknown" msgstr "" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Dibuat" @@ -3474,6 +3390,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Dokumentasi API" @@ -3530,7 +3450,7 @@ msgid "Version" msgstr "Versi" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Kondisi" @@ -3545,7 +3465,6 @@ msgstr "API data" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Judul" @@ -3565,30 +3484,30 @@ msgstr "" msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organisasi" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Publik" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3715,7 +3634,7 @@ msgstr "" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Tanam" @@ -3801,139 +3720,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Apps & Ide" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Saring berdasarkan tipe" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Semua" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Sortir berdasarkan" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Baku" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Terapkan" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -4021,7 +3807,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Beranda" @@ -4030,7 +3815,7 @@ msgid "Language" msgstr "" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4062,21 +3847,25 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Kirim" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4145,7 +3934,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4164,10 +3953,6 @@ msgstr "Edit" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Dasbor" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4231,36 +4016,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Username" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Nama lengkap" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4493,15 +4269,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4509,6 +4285,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4535,6 +4319,10 @@ msgstr "" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4552,64 +4340,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4669,7 +4417,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Jumlah total Kumpulan data" @@ -4697,33 +4444,27 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Peringkat Tertinggi Kumpulan data" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Peringkat rata-rata" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Jumlah peringkat" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Tidak ada peringkat" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Kumpulan Data Paling Sering Diedit" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Jumlah editan" @@ -4733,12 +4474,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Grup Terbesar" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Jumlah kumpulan data" @@ -4748,7 +4487,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Tag Tertinggi" @@ -4763,7 +4501,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 @@ -4774,42 +4512,16 @@ msgstr "" msgid "Total Number of Datasets" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistik" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Revisi Kumpulan data per minggu" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Pengguna paling banyak memiliki kumpulan data" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Terakhir perbaruan laman:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Leaderboard - Statistik" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Leaderboard Kumpulan data" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Pilih sebuah atribut kumpulan data dan temukan kategori mana pada area tersebut yang paling banyak memiliki kumpulan data. Misalnya tag, grup, lisensi, res_format, negara." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Pilih area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/is/LC_MESSAGES/ckan.mo b/ckan/i18n/is/LC_MESSAGES/ckan.mo index 44985e49e90..ae7915cd3d2 100644 Binary files a/ckan/i18n/is/LC_MESSAGES/ckan.mo and b/ckan/i18n/is/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/is/LC_MESSAGES/ckan.po b/ckan/i18n/is/LC_MESSAGES/ckan.po index 7e70cfc16da..d1c8fac8b84 100644 --- a/ckan/i18n/is/LC_MESSAGES/ckan.po +++ b/ckan/i18n/is/LC_MESSAGES/ckan.po @@ -18,252 +18,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Icelandic (http://www.transifex.com/projects/p/ckan/language/is/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:24+0000\n" +"Last-Translator: dread \n" +"Language-Team: Icelandic (http://www.transifex.com/okfn/ckan/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: is\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Virkni aðgangsheimildar fannst ekki: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Kerfisstjóri" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Útgefandi" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Meðlimur" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Þú þarft að vera kerfisstjóri til að geta stjórnað" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Titill síðu" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Útlit" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Slagorð vefsins" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Merki vefsins" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Um vefinn" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Texti um vefinn" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Kynningartexti" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Texti á heimasíðu" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Sérsniðið CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Sérsníðanlegt CSS var sett inn í haus síðunnar" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Heimasíða" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Get ekki varanlega eytt %s þar sem tengd útgáfa %s inniheldur pakka %s sem á eftir að eyða út" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Vandamál við að eyða útgáfu %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Hreinsun lokið" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Aðgerð ekki framkvæmd." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Þú hefur ekki heimild til að opna síðuna" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Aðgangur óheimill" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Fannst ekki" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Villa í fyrirspurn" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Heiti aðgerðar ekki þekkt: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON-villa: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Gagnavilla fyrirspurnar: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Ekki hægt að birta útgáfu af þessari tegund: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Ekki hægt að lesa einingu af þessari tegund: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Get ekki stofnað nýja einingu af þessari tegund: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Ekki tókst að bæta pakka við uppflettitöflu leitarvélar" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Ekki tókst að uppfæra einingu af þessari tegund: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Ekki tókst að uppfæra uppflettitöflu leitarvélar" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Get ekki eytt einingu af þessari tegund: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Engin útgáfa tilgreind" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Það er engin útgáfa með þetta auðkenni: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Leitarstreng vantar ('since_id=UUID' eða 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Gat ekki lesið breytur: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Villa í leitarvalkosti: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Óþekkt skráning: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Villa í qjson gildi: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Fyrirspurnarbreytur verða að vera á json kóðuðu dictionary sniði" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Safn fannst ekki" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Röng safnategund" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Þú hefur ekki lesaðgang að safninu %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -274,23 +274,23 @@ msgstr "Þú hefur ekki lesaðgang að safninu %s" msgid "Organizations" msgstr "Stofnanir" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Söfn" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -298,394 +298,303 @@ msgstr "Söfn" msgid "Tags" msgstr "Efnisorð" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Snið" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Leyfi" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Heimild vantar til að framkvæma uppfærslu á magni" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Þú hefur ekki heimild til að stofna safn" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Notandinn %r hefur ekki heimild til að breyta %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Villa í heilindum gagna" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Notandinn %r hefur ekki heimild til að breyta %s aðgangsheimildum" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Þú hefur ekki heimild til að eyða safninu %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Stofnuninni hefur verið eytt" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Safninu hefur verið eytt." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Þú hefur ekki heimild til að bæta notanda við safnið %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Þú hefur ekki heimild til til að eyða notendum safnsins %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Meðlimi safns hefur verið eytt." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Veljið tvær útgáfur til að hefja samanburð." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Notandinn %r hefur ekki heimild til að breyta %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Útgáfusaga CKAN safnsins" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Nýlegar breytingar á CKAN safninu:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Skilaboð úr kerfisskrá:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Þú hefur ekki lesaðgang að safninu {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Þú fylgist nú með {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Þú ert ekki lengur að fylgjast með {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Ekki heimild til að að skoða fylgjendur %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Vefurinn er ekki virkur. Það á eftir að setja upp gagnagrunninn." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Uppfærðu prófílinn og bættu við netfangi og fullu nafni. {site} notar netfangið þitt til að senda tölvupóst til þín ef þú þarft að breyta aðgangsorðinu." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Uppfærðu prófílinn og bættu við netfangi. " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s notar netfangið þitt ef þú þarft að breyta aðgangsorðinu." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Uppfærðu prófílinn og bættu við fullu nafni." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Breytan „{parameter_name}“ er ekki heiltala" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Gagnapakki fannst ekki" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Ekki heimild til að lesa pakkann %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Ógilt snið á útgáfu: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Skoðun á {package_type} gagnasöfnun á {format} sniði er ekki studd (sniðmátsskráin {file} fannst ekki)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Útgáfusaga CKAN gagnapakka" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Nýlegar breytingar á CKAN gagnapakka:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Þú hefur ekki heimild til að búa til pakka" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Þú hefur ekki heimild til að breyta þessu tilfangi" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Tilfang fannst ekki" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Þú hefur ekki heimild til að uppfæra gagnapakka" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Gagnapakkinn {id} fannst ekki." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Þú verður að bæta við a.m.k. einu tilfangi" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Villa" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Þú hefur ekki heimild til að búa til tilfang" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Ekki tókst að bæta pakka við uppflettitöflu leitarvélar." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Ekki tókst að uppfæra uppflettitöflu leitarvélar." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Gagnapakka hefur verið eytt." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Óheimilt að eyða pakka %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Gagnapakka hefur verið eytt." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Tilfangi hefur verið eytt." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Þú hefur ekki heimild til að eyða tilfanginu %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Óheimilt að lesa gagnapakka %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Þú hefur ekki lesaðgang að tilfanginu %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Tilfangsgögn fundust ekki" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Engar skrár til niðurhals" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Forskoðun hefur ekki verið skilgreind." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Mest skoðað" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Mest skoðað" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Minnst skoðað" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Nýjast" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Elst" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Ítarefnið fannst ekki" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Ítarefnið fannst ekki" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Óheimilt" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Pakkinn fannst ekki" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Ítarefni var búið til" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Ítarefnið var uppfært" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Ítarefninu hefur verið eytt." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Þú hefur ekki heimild til að eyða ítarefninu %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Forrit" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Hugmynd" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Frétt" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Pappír" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Birta" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Framsetning" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Útgáfusaga CKAN gagnageymslu" @@ -711,10 +620,10 @@ msgstr "Annað" msgid "Tag not found" msgstr "Efnisorð fannst ekki" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Notandi fannst ekki" @@ -734,13 +643,13 @@ msgstr "Þú hefur ekki heimild til að eyða notanda með auðkenninu „{user_ msgid "No user specified" msgstr "Enginn notandi var tilgreindur" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Þú hefur ekki heimild til að breyta notandanum %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Prófíllinn var uppfærður" @@ -764,75 +673,87 @@ msgstr "Notandinn „%s“ hefur verið stofnaður en þú ert ennþá inni sem msgid "Unauthorized to edit a user." msgstr "Þú hefur ekki heimild til að breyta notanda." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Notandinn %s hefur ekki heimild til að breyta %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Innskráning mistókst. Rangt notandanafn eða aðgangsorð." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Þú hefur ekki heimild til að biðja um endurstillingu aðgangsorðs." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "„%s“ samræmist fleiri en einum notanda" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Enginn notandi fannst: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Endurstillingarkóði hefur verið sendur til þín í tölvupósti." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Ekki tókst að senda endurstillingartengil: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Þú hefur ekki heimild til að endurstilla aðgangsorð." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Ógildur endurstillingarkóði. Reyndu aftur." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Aðgangsorðinu þínu hefur verið breytt." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Aðgangsorð verður að vera 4 stafir eða lengra." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Aðgangsorðin sem þú slóst inn stemma ekki." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Þú verður að slá inn aðgangsorð" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Eftirfarandi atriði fannst ekki" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} fannst ekki" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Óheimilt að lesa {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Allt" @@ -954,7 +875,7 @@ msgstr "{actor} bætti {related_type} {related_item} við gagnapakkann {dataset} msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} bætti {related_type} við {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -962,10 +883,10 @@ msgid "View" msgstr "Skoða" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "Ný uppfærsla á {site_title}" -msgstr[1] "{n} nýjar uppfærslur á {site_title}" +msgstr[0] "" +msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1015,135 +936,135 @@ msgstr "nóvember" msgid "December" msgstr "desember" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Rétt í þessu" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} mínútu síðan" msgstr[1] "{mins} mínútum síðan" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} klukkustund síðan" msgstr[1] "{hours} klukkustundum síðan" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} degi síðan" msgstr[1] "{days} dögum síðan" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} mánuðum síðan" msgstr[1] "{months} mánuðum síðan" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "meira en {years} ár síðan" msgstr[1] "meira en {years} ár síðan" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day} {month}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bæti" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Uppfærðu myndina á gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Óþekkt" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Nafnlaus skrá" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Stofnaði nýjan gagnapakka." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Breytti tilföngum." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Breytti stillingum." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} fletting" msgstr[1] "{number} flettingar" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} nýleg fletting" @@ -1174,7 +1095,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1199,7 +1120,7 @@ msgstr "Boð á síðuna {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Gildi vantar" @@ -1212,7 +1133,7 @@ msgstr "Ekki gert ráð fyrir innsláttarsvæðinu %(name)s hér." msgid "Please enter an integer value" msgstr "Vinsamlegast sláðu inn heiltölu" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1222,11 +1143,11 @@ msgstr "Vinsamlegast sláðu inn heiltölu" msgid "Resources" msgstr "Tilföng" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Tilföng pakkans eru ógild" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Viðbætur" @@ -1236,25 +1157,22 @@ msgstr "Viðbætur" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Efnisorðið „%s“ er ekki til" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Notandi" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Gagnapakki" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Safn" @@ -1266,378 +1184,369 @@ msgstr "Tókst ekki að greina sem gilt JSON" msgid "A organization must be supplied" msgstr "Þú verður að velja stofnun" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Þú getur ekki fjarlægt gagnapakka úr núverandi stofnun" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Stofnun er ekki til" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Þú getur ekki bætt gagnapakka við þessa stofnun" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Ógild heiltala" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Þarf að vera náttúruleg tala" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Þarf að vera jákvæð heiltala" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Snið dagsetningar er ekki rétt" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Engir tenglar eru leyfðir í log_message." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Skrá" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Ítarefni" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Ekkert safn með þetta heiti eða auðkenni." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Tegund virkni" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Nöfn þurfa að vera strengir" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Það er ekki hægt að nota þetta heiti" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Heiti má ekki vera lengra en %i bókstafir" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Þessi slóð er nú þegar skráð." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Heitið „%s“ er styttra en %s stafa lágmarkslengd" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Heitið „%s“ er lengra en %s stafa hámarkslengdin" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Útgáfa má að hámarki vera %i stafir að lengd" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Lykillinn „%s“ er nú þegar til" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Safn með þessu heiti er þegar til staðar í gagnapakkanum" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Efnisorðið „%s“ nær ekki %s stafa lágmarkslengd " -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Efnisorðið „%s“ fer yfir %i stafa hámarkslengd" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Efnisorðið „%s“ verður að vera gert úr bókstöfum, tölustöfum eða táknunum: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Efnisorðið „%s\" má ekki vera í hástöfum" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Notendanöfn þurfa að vera strengir" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Þetta notandanafn er ekki laust." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Vinsamlegast sláðu inn bæði aðgangsorðin" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Aðgangsorð þurfa að vera strengir" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Aðgangsorðið verður að vera 4 stafir eða lengra" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Aðgangsorðin sem þú slóst inn stemma ekki" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Breytingin er ekki leyfð þar sem hún lítur út fyrir að vera ruslefni. Forðastu að nota tengla í lýsingunni." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Heiti þarf að vera að minnsta kosti %s stafir" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Þetta heiti er þegar í notkun." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Ekki er hægt að breyta gildinu á lyklinum úr %s í %s. Þessi lykill er aðeins með lesaðgang." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Efnisorðið fannst ekki." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Efnisorðið %s tilheyrir ekki orðasafninu %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Ekkert efnisorð" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Efnisorðið %s tilheyrir nú þegar orðasafninu %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Vinsamlegast gefðu upp gilda vefslóð" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "hlutverkið er ekki til." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Gagnapakkar með engar stofnanir geta ekki verið lokaðir." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Ekki listi" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Ekki strengur" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Þetta foreldri myndi skapa lykkju í stigveldinu" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Búa til object %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Stofna vensl milli pakka: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Stofna member object %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Reyni að stofna stofnun sem safn" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Þú þarft að gefa upp auðkenni eða heiti pakka (breytan „pakki“)." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Þú verður að tilgreina einkunn (breytan „rating“)." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Einkunn verður að vera heiltala." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Einkunn verður að vera á milli %i og %i" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Vinsamlegast skráðu þig inn til að fylgjast með notendum" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Þú getur ekki fylgst með sjálfum þér" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Þú fylgist nú þegar með {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Vinsamlegast skráðu þig inn til að fylgjast með gagnapakka." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Notandinn {username} er ekki til." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Vinsamlegast skráðu þig inn til að fylgjast með safni." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Eyða pakka: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Eyða %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Eyða meðlimi: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "auðkenni ekki í gögnum" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Fann ekki orðasafnið „%s“" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Fann ekki efnisorðið „%s“" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Vinsamlegast skráðu þig inn til að hætta að fylgjast með einhverju." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Þú ert ekki að fylgjast með {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Skrá fannst ekki." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Ekki tilgreina ef þú notar breytuna „query“" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Verður að vera : par" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Svæðið „{field}“ virkar ekki í resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "óþekktur notandi:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Atriði fannst ekki." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Pakkinn fannst ekki." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Uppfæra object %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Uppfæra vensl pakka: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus fannst ekki." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Stofnun fannst ekki." @@ -1668,7 +1577,7 @@ msgstr "Skráðu þig inn til að bæta við ítarefni" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Enginn pakki fannst fyrir þessa skrá. Ekki hægt að virkja auðkenningu." @@ -1678,94 +1587,98 @@ msgstr "Enginn pakki fannst fyrir þessa skrá. Ekki hægt að virkja auðkennin msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Notandinn %s hefur ekki heimild til að breyta þessum pökkum" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Notandinn %s hefur ekki heimild til að stofna söfn" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Notandinn %s hefur ekki heimild til að búa til stofnanir" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "Notandinn {user} hefur ekki heimild til að stofna notendur með API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Þú hefur ekki heimild til að búa til notendur" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Safnið fannst ekki." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Þú verður að hafa gildan API lykil til að stofna pakka" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Þú verður að hafa gildan API lykil til að stofna safn" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Notandinn %s hefur ekki heimild til að bæta við notendum" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Notandinn %s hefur ekki heimild til að breyta safninu %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Notandinn %s hefur ekki heimild til að eyða tilfanginu %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Eigandinn er sá eini sem getur eytt ítarefni" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Notandinn %s hefur ekki heimild til að eyða venslunum %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Notandinn %s hefur ekki heimild til að eyða söfnum" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Notandinn %s hefur ekki heimild til að eyða safninu %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Notandinn %s hefur ekki heimild til að eyða stofnunum" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Notandinn %s hefur ekki heimild til að eyða stofnuninni %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Notandinn %s hefur ekki heimild til að eyða task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Óheimilt" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1786,7 +1699,7 @@ msgstr "Notandinn %s hefur ekki heimild til að lesa tilfangið %s" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Skráðu þig inn ef þú vilt skoða stjórnborðið." @@ -1864,63 +1777,63 @@ msgstr "Til að breyta pakka þarftu gildan API lykil" msgid "Valid API key needed to edit a group" msgstr "Þú verður að hafa gildan API lykil til að breyta safni" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Annað (opið)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Annað (í almannaeigu)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Annað (tilvísun)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Annað (ekki til endursölu)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Annað (ekki opið)" @@ -2027,8 +1940,6 @@ msgstr "Staðfesta" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Hætta við" @@ -2053,12 +1964,13 @@ msgstr "Tengill" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Fjarlægja" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Mynd" @@ -2131,7 +2043,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "Vefslóð" @@ -2145,7 +2056,6 @@ msgstr "Vefslóð" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Breyta" @@ -2184,34 +2094,42 @@ msgstr "Keyrir á Site Title: This is the title of this CKAN instance It " @@ -2362,7 +2277,6 @@ msgid "" msgstr "Hægt er opna Data API með eftirfarandi aðgerðum CKAN action API." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Stofna" @@ -2514,7 +2428,7 @@ msgstr "Velja" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2547,8 +2461,6 @@ msgstr "Form fyrir söfn" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Staðfesta eyðingu" @@ -2566,7 +2478,7 @@ msgstr "Ertu viss um að þú viljir eyða meðlimi - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2711,14 +2623,12 @@ msgstr "Ertu viss um að þú viljir eyða þessum meðlim?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Eyða" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Vista" @@ -2806,7 +2716,6 @@ msgstr "mitt-safn" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Lýsing" @@ -2867,7 +2776,7 @@ msgstr "Bera saman" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2967,38 +2876,30 @@ msgstr "" msgid "{0} statistics" msgstr "{0} tölfræði" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "gagnapakki" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "gagnapakkar" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "stofnun" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "stofnanir" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "safn" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "söfn" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "ítarefni" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "ítarefni" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3016,7 +2917,6 @@ msgid "Custom" msgstr "Sérsniðið" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Formið inniheldur ógildar færslur:" @@ -3029,7 +2929,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/myndin-min.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "Slóð á mynd" @@ -3074,7 +2973,7 @@ msgstr "Drög" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3108,6 +3007,20 @@ msgstr "Leita í stofnunum..." msgid "There are currently no organizations for this site" msgstr "Það eru engar stofnanir skilgreindar fyrir þennan vef" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Notandanafn" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Uppfæra meðlim" @@ -3242,7 +3155,6 @@ msgid "Preview" msgstr "Forskoða" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Uppfæra" @@ -3301,7 +3213,7 @@ msgstr "" msgid "Add" msgstr "Bæta við" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3333,28 +3245,32 @@ msgstr "Villa í upphleðslu:" msgid "Error:" msgstr "Villa:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Staða" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Síðast uppfært" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Aldrei" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Upphleðsluskrá" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Upplýsingar" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Endir á skrá" @@ -3458,7 +3374,7 @@ msgid "unknown" msgstr "óþekkt" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Stofnað" @@ -3494,6 +3410,10 @@ msgid "" "add some?

" msgstr "

Þessi gagnapakki er ekki með nein gögn. Viltu ekki bæta nokkrum við?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API skjöl" @@ -3550,7 +3470,7 @@ msgid "Version" msgstr "Útgáfa" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Ríki" @@ -3565,7 +3485,6 @@ msgstr "Data API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Titill" @@ -3585,30 +3504,30 @@ msgstr "t.d. Ýmsar gagnlegar upplýsingar um gögnin" msgid "eg. economy, mental health, government" msgstr "t.d. efnahagur, geðheilsa, stjórnvöld" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Skilgreiningar á leyfisskilmálum má finna á opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Stofnun" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Engin stofnun" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Sýnileiki" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Opinbert" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Virkt" @@ -3735,7 +3654,7 @@ msgstr "Skoða" msgid "More information" msgstr "Frekari upplýsingar" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Fella inn í síðu" @@ -3821,139 +3740,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Tengt form" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Hvað er ítarefni?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Ítarefni getur verið forrit, grein, myndræn framsetning eða hugmynd tengd gagnapakkanum.

Það gæti til dæmis verið sérsniðin framsetning, skýringarmynd eða línurit, eða forrit sem notar öll gögnin eða hluta af þeim eða jafnvel fréttagrein sem vísar í gagnapakkann.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Ertu viss um að þú viljir eyða ítarefninu - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Forrit og hugmyndir" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Sýni atriði %(first)s - %(last)s úr %(item_count)s ítarefni sem fannst

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s ítarefni fundust

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Engin forrit eða öpp hafa verið skráð." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Hvað eru forrit?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Þetta eru kerfi sem byggja á gagnapakkanum og hugmyndir um hvernig má nota þau." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Takmarka leitarniðurstöður" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Takmarka eftir tegund" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Allar" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Raða eftir" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Sjálfgefið" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Sýna aðeins það sem er í kastljósinu" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Nota" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Breyta ítarefni" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Breyta ítarefni" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Breyta ítarefni" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Skrá ítarefni" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Skrá ítarefni" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Skrá ítarefni" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Mitt ítarefni" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/mynd.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Stutt lýsing á efni..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Tegund" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Ertu viss um að þú viljir eyða þessu ítarefni?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Farðu í {related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "Mismunur" @@ -4041,7 +3827,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Engar {facet_type} samræmast þessu leitarorði" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Heim" @@ -4050,7 +3835,7 @@ msgid "Language" msgstr "Tungumál" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4082,21 +3867,25 @@ msgstr "Engin forrit, hugmyndir, fréttir eða myndir eru tengdar þessum gagnap msgid "Add Item" msgstr "Bæta við" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Senda" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Raða eftir" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Takmarka leitarniðurstöður" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Reyndu aðra leit.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4171,7 +3960,7 @@ msgid "Subscribe" msgstr "Gerast áskrifandi" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4190,10 +3979,6 @@ msgstr "Breytingar" msgid "Search Tags" msgstr "Leita eftir efnisorðum" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Stjórnborð" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Fréttaveita" @@ -4257,36 +4042,27 @@ msgstr "Prófíllinn þinn gefur öðrum notendum kost á að kynnast þér betu msgid "Change details" msgstr "Breyta upplýsingum" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Notandanafn" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Fullt nafn" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "t.d. Anna Jónsdóttir" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "t.d. anna@opingogn.is" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Smá upplýsingar um þig" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Gerast áskrifandi að tilkynningum í tölvupósti" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Breyta aðgangsorði" @@ -4519,15 +4295,15 @@ msgstr "Upphleðslu er ekki lokið" msgid "DataStore resource not found" msgstr "Tilfang DataStore fannst ekki" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Tilfangið „{0}“ fannst ekki." @@ -4535,6 +4311,14 @@ msgstr "Tilfangið „{0}“ fannst ekki." msgid "User {0} not authorized to update resource {1}" msgstr "Notandinn {0} hefur ekki heimild til að uppfæra tilfangið {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4561,6 +4345,10 @@ msgstr "Landskóði" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4578,65 +4366,25 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "This compiled version of SlickGrid has been obtained with the Google Closure\nCompiler, using the following command:\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nThere are two other files required for the SlickGrid view to work properly:\n\n * jquery-ui-1.8.16.custom.min.js \n * jquery.event.drag-2.0.min.js\n\nThese are included in the Recline source, but have not been included in the\nbuilt file to make easier to handle compatibility problems.\n\nPlease check SlickGrid license in the included MIT-LICENSE.txt file.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4695,7 +4443,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Heildarfjöldi gagnapakka" @@ -4723,33 +4470,27 @@ msgstr "Nýir gagnapakkar" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Gagnapakkar með hæstu einkunn" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Meðaleinkunn" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Fjöldi einkunna" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Engar einkunnir" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Gagnapakkar sem hafa verið uppfærðir oftast" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Fjöldi breytinga" @@ -4759,12 +4500,10 @@ msgstr "Engir gagnapakkar uppfærðir" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Stærstu söfn" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Fjöldi gagnapakka" @@ -4774,7 +4513,6 @@ msgstr "Engin söfn" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Algengustu efnisorðin" @@ -4789,8 +4527,8 @@ msgstr "Fjöldi gagnapakka" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Notendur skráðir fyrir flestum gagnapökkum" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4800,42 +4538,16 @@ msgstr "Talnagögn" msgid "Total Number of Datasets" msgstr "Heildarfjöldi gagnapakka" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Talnagögn" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Uppfærslur á gagnapökkum í viku" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Notendur skráðir fyrir flestum gagnapökkum" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Síðasta uppfærsla síðu:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Efstu - Talnagögn" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Efstu gagnapakkar" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Veldu eigind fyrir gagnapakka til að sjá hvaða flokkar á því sviði innihalda flesta pakka. T.d. efnisorð, söfn, leyfisskilmála, upplausn, land." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Veldu svæði" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/it/LC_MESSAGES/ckan.mo b/ckan/i18n/it/LC_MESSAGES/ckan.mo index 9f61564666a..0d75bab86c8 100644 Binary files a/ckan/i18n/it/LC_MESSAGES/ckan.mo and b/ckan/i18n/it/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/it/LC_MESSAGES/ckan.po b/ckan/i18n/it/LC_MESSAGES/ckan.po index 6e5654dde43..fa90b00b5d1 100644 --- a/ckan/i18n/it/LC_MESSAGES/ckan.po +++ b/ckan/i18n/it/LC_MESSAGES/ckan.po @@ -3,267 +3,269 @@ # This file is distributed under the same license as the ckan project. # # Translators: -# Adrià Mercader , 2014 # Alessandro , 2013 +# Alessio Felicioni , 2015 # , 2012 +# Enx, 2015 # groundrace , 2013,2015 # , 2011 # lafuga2 , 2012 # Lorenzo Ruzzene , 2014 # Luca De Santis , 2015 # M2M , 2013 +# Maurizio Napolitano , 2015 # Monica Cainarca , 2013 # Romano Trampus , 2015 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-02-19 19:41+0000\n" -"Last-Translator: Romano Trampus \n" -"Language-Team: Italian (http://www.transifex.com/projects/p/ckan/language/it/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 15:06+0000\n" +"Last-Translator: Maurizio Napolitano \n" +"Language-Team: Italian (http://www.transifex.com/okfn/ckan/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Funzione di autorizzazione non trovata: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Amministratore" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Curatore" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Membro" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" -msgstr "E' necessario essere amministratori del sistema per amministrarlo" +msgstr "È necessario essere amministratori per gestire il sistema" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Titolo sito" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Stile" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Sottotitolo del sito" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Logo del sito" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Informazioni" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Informazioni sulla pagina" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Testo Introduzione" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "testo nella pagina principale" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "CSS personalizzato" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "CSS personalizzato inserito nella testata della pagina" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Homepage" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" -msgstr "Impossibile effettuare il purge del pacchetto %s perché la revisione associata %s contiene i pacchetti non ancora cancellati %s" +msgstr "Impossibile effettuare la pulizia del pacchetto %s perché la revisione associata %s contiene i pacchetti non ancora cancellati %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" -msgstr "Problema con il purge della revisione %s: %s" +msgstr "Problema con la puizia della revisione %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" -msgstr "Operazione di purge completata" +msgstr "Operazione di pulizia completata" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Azione non implementata." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" -msgstr "Non sei autorizzato a vedere questa pagina" +msgstr "Non si è autorizzati a vedere questa pagina" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Accesso negato" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Non trovato" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Richiesta non valida" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" -msgstr "Nome di azione non nota: %s" +msgstr "Nome azione non nota: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Errore JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Richiesta dati errata: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Impossibile aggiornare un'entità di questo tipo: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Impossibile leggere un'entità di questo tipo: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Impossibile creare una nuova entità di questo tipo: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Impossibile aggiungere il pacchetto all'indice di ricerca" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Impossibile aggiornare un'entità di questo tipo: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Impossibile aggiornare l'indice di ricerca" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Impossibile eliminare un'entità di questo tipo: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Nessuna revisione specificata" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Non esiste una modifica con id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Termine di ricerca mancante ('since_id=UUID' o 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Impossibile leggere i parametri: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Opzione di ricerca errata: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Registro sconosciuto: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Valore qjson non valido: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "I parametri della richiesta devono essere un dizionario codificato in JSON" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Gruppo non trovato" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "Organizzazione non trovata." -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Tipo del gruppo errato" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Non sei autorizzato a leggere il gruppo %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -274,23 +276,23 @@ msgstr "Non sei autorizzato a leggere il gruppo %s" msgid "Organizations" msgstr "Organizzazioni" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Gruppi" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -298,394 +300,303 @@ msgstr "Gruppi" msgid "Tags" msgstr "Tag" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formati" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licenze" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Non autorizzato ad eseguire gli aggiornamenti" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Non sei autorizzato a creare un gruppo" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "L'utente %r non è autorizzato a modificare %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Errore di integrità" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "L'utente %r non è autorizzato a modificare le autorizzazioni di %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Non autorizzato a eliminare il gruppo %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "L'organizzazione è stata eliminata." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Il gruppo è stato eliminato." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s è stato eliminato." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" -msgstr "Non sei autorizzato ad aggiungere membri al gruppo %s" +msgstr "Non si è autorizzati ad aggiungere membri al gruppo %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" -msgstr "Non sei autorizzato a eliminare membri dal gruppo %s" +msgstr "Non si è autorizzati a eliminare membri dal gruppo %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Il membero del gruppo e' stato eliminato." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Selezionare due revisioni prima di effettuare il confronto" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "L'utente %r non è autorizzato a modificare %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Cronologia delle modifiche nel gruppo" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Modifiche recenti al gruppo CKAN:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Messaggio di log:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" -msgstr "Non sei autorizzato a leggere il gruppo {group_id}" +msgstr "Non si è autorizzati a leggere il gruppo {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Adesso stai seguendo {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Non stai più seguendo {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Non sei autorizzato a leggere chi segue %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." -msgstr "Questo sito al momento è offline. Il database non è inizializzato." +msgstr "Questo sito temporaneamente è offline. Il database non è inizializzato." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Per favore aggiorna il tuo profilo e aggiungi il tuo indirizzo di email e il tuo nome completo. {site} usa il tuo indirizzo di mail se hai bisogno di resettare la tua password." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Per favore aggiorna il tuo profilo e aggiungi il tuo indirizzo email." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s usa il tuo indirizzo email se hai bisogno di azzerare la tua password." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Per favore aggiorna il tuo profilo e il tuo nome completo." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Il parametro \"{parameter_name}\" non è un intero" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Dataset non trovato" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" -msgstr "Non autorizzato a leggere il pacchetto %s" +msgstr "Non si è autorizzati a leggere il pacchetto %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Formato di revisione non valido: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Visualizzare i dataset {package_type} nel formato {format} non é supportato (Il template {file} non é stato trovato)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Cronologia delle Revisioni del Dataset CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Modifiche recenti al Dataset CKAN:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Non sei autorizzato a creare un pacchetto" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Non sei autorizzato a modificare questa risorsa" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Risorsa non trovata" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Non sei autorizzato a modificare il dataset" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Il dataset {id} non é stato trovato." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Devi aggiungere almeno una risorsa" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Errore" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" -msgstr "Non sei autorizzato a creare una risorsa" +msgstr "Non si è autorizzati a creare una risorsa" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "Non sei autorizzato a creare una risorsa per questo pacchetto" +msgstr "Non si è autorizzati a creare una risorsa per questo pacchetto" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Impossibile aggiungere il pacchetto all'indice di ricerca" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Impossibile aggiornare l'indice di ricerca" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Il dataset è stato eliminato." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Non sei autorizzato a rimuovere il pacchetto %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Il dataset è stato eliminato." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "La risorsa è stata eliminata." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" -msgstr "Non sei autorizzato a rimuovere la risorsa %s" +msgstr "Non si è autorizzati a rimuovere la risorsa %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" -msgstr "Non autorizzato a leggere il dataset %s" +msgstr "Non si è autorizzati a leggere il dataset %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "Visualizzazione risorsa non trovata" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" -msgstr "Non sei autorizzato a leggere la risorsa %s" +msgstr "Non si è autorizzati a leggere la risorsa %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Risorsa non trovata" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Nessun download è disponibile" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "Non sei autorizzato a modificare questa risorsa" +msgstr "Non si è autorizzati a modificare questa risorsa" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "Vista non trovata" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "Non sei autorizzato alla vista %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "Tipo di Vista Non trovata" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Informazioni per vista di risorsa difettose" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Non si è autorizzati a leggere la vista di risorsa %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "Vista di risorsa mancante" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "L'anteprima non è stata definita." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "I più visti" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "I più visti" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "I meno visti" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "I più nuovi" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "I più vecchi" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "L'elemento correlato richiesto non è stato trovato" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Elementi correlati non trovati" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Non autorizzato" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Pacchetto non trovato" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "la relazione è stata creata con successo" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "la relazione è stata aggiornata con successo" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "la relazione è stata eliminata." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Non sei autorizzato a rimuovere la relazione %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Applicazione" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idea" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Notizia" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Articolo" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Post" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualizzazione" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Cronologia del catalogo CKAN" @@ -711,43 +622,43 @@ msgstr "Altro" msgid "Tag not found" msgstr "Tag non trovato" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Utente non trovato" #: ckan/controllers/user.py:149 msgid "Unauthorized to register as a user." -msgstr "Non autorizzato a registrarsi come utente" +msgstr "Non si è autorizzati a registrarsi come utente" #: ckan/controllers/user.py:166 msgid "Unauthorized to create a user" -msgstr "Non sei autorizzato a creare un utente" +msgstr "Non si è autorizzati a creare un utente" #: ckan/controllers/user.py:197 msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Non autorizzato a rimuove l'utente con id \"{user_id}\"." +msgstr "Non si è autorizzati a rimuove l'utente con id \"{user_id}\"." #: ckan/controllers/user.py:211 ckan/controllers/user.py:270 msgid "No user specified" msgstr "Nessun utente specificato" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" -msgstr "Non sei autorizzato a modificare l'utente %s" +msgstr "Non si è autorizzati a modificare l'utente %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profilo aggiornato" #: ckan/controllers/user.py:232 #, python-format msgid "Unauthorized to create user %s" -msgstr "Non sei autorizzato a creare l'utente %s" +msgstr "Non si è autorizzati a creare l'utente %s" #: ckan/controllers/user.py:238 msgid "Bad Captcha. Please try again." @@ -764,75 +675,87 @@ msgstr "L'utente \"%s\" è ora registrato ma sei ancora autenticato come \"%s\" msgid "Unauthorized to edit a user." msgstr "Non autorizzato a modificare l'utente." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "L'utente %s non è autorizzato a modificare %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "La password inserita è incorretta" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Vecchia password" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "password incorretta" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Autenticazione fallita. Nome utente o password non corrette." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." -msgstr "Non autorizzato al reset della password." +msgstr "Non si è autorizzati al reset della password." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" corrisponde a diversi utenti" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Nessun utente corrispondente a: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Controlla la tua casella di posta per un codice di reset." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Impossibile inviare il codice di reset: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." -msgstr "Non autorizzato al reset della password." +msgstr "Non si è autorizzati al reset della password." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Chiave di reset non valida. Prova di nuovo per favore." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "La tua password è stata azzerata." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "La tua password deve essere lunga almeno 4 caratteri." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Le due password che hai inserito non corrispondono." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Devi fornire una password" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Elemento seguente non trovato" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} non trovato" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Non autorizzato a leggere {0} {1} " -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Tutto" @@ -954,7 +877,7 @@ msgstr "{actor} ha aggiunto {related_type} {related_item} al dataset {dataset}" msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} ha aggiunto {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -962,9 +885,9 @@ msgid "View" msgstr "Visualizza" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{n} nuova attività da {site_title}" +msgstr[0] "n} nuova attività da {site_title}" msgstr[1] "{n} nuove attività da {site_title}" #: ckan/lib/formatters.py:17 @@ -1015,135 +938,135 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Proprio ora" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} minuto fa" msgstr[1] "{mins} minuti fa" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} ora fa" msgstr[1] "{hours} ore fa" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} giorno fa" msgstr[1] "{days} giorni fa" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} mese fa" msgstr[1] "{months} mesi fa" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "più di {years} anno fa" msgstr[1] "più di {years} anni fa" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{day} {month} {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB " -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Aggiorna il tuo avatar su gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Sconosciuto" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Risorsa senza nome" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Nuovo dataset creato." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Risorse modificate." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Impostazioni modificate." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} visualizzazione" msgstr[1] "{number} visualizzazioni" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} visualizzazione recente" @@ -1174,12 +1097,12 @@ msgstr "Hai richiesto la reimpostazione della password su {site_title}\n\nSelezi #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Sei stato invitato su {site_title}. È già stato creato un utente per te, con nome utente {user_name}. Potrai modificarlo successivamente.\n\nPer accettare questo invito, resetta la tua password cliccando su:\n\n {reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1199,7 +1122,7 @@ msgstr "Invito a {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Valore mancante" @@ -1212,7 +1135,7 @@ msgstr "Il campo di input %(name)s non era previsto." msgid "Please enter an integer value" msgstr "Si prega di inserire un valore intero" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1222,11 +1145,11 @@ msgstr "Si prega di inserire un valore intero" msgid "Resources" msgstr "Risorse" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Risorsa/e del pacchetto non valide" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Extra" @@ -1236,25 +1159,22 @@ msgstr "Extra" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Il vocabolario di tag \"%s\" non esiste" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Utenten" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Dataset" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Gruppo" @@ -1266,378 +1186,369 @@ msgstr "Non è stato possible eseguire il parsing come un JSON valido" msgid "A organization must be supplied" msgstr "Una organizzazione deve essere fornita" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Non è consentito eliminare un dataset da un'organizzazione esistente" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "L'organizzazione non esiste" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Non puoi aggiungere un dataset a questa organizzazione" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Numero intero non valido" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Deve essere un numero naturale" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Deve essere un numero intero positivo" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Formato della data non corretto" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "I link non sono permessi nel log_message." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "Id del dataset già esistente" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Risorsa" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Correlazioni" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Il nome del gruppo o l'ID non esistono." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Tipo di attività" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "I nomi devono essere stringhe" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Questo nome non può essere usato" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "La lunghezza dev'essere di almeno %s caratteri" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Il nome deve contenere un numero massimo di %i caratteri" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "Deve consistere solamente di caratteri (base) minuscoli e questi simboli: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Questa URL è già stata usata." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "La lunghezza del nome \"%s\" è inferiore a %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "La lunghezza del nome \"%s\" è maggiore di quella massima %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Il numero di versione deve essere composta da un massimo di %i caratteri" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Chiave duplicata \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Un gruppo con questo nome esiste già nel database" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "La lunghezza del tag \"%s\" è inferiore alla lunghezza minima %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Il tag \"%s\" è più lungo del massimo di %i caratteri" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Il tag \"%s\" deve contenere solo caratteri alfanumerici o i simboli: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Il tag \"%s\" non deve contenere caratteri maiuscoli" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "I nomi utente devono essere stringhe" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Questo nome utente non è disponibile." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Per favore inserisci entrambe le password" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Le password devono essere stringhe" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "La password deve essere lunga almeno 4 caratteri" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Le due password che hai inserito non corrispondono" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Questa modifica è stata bloccata perché sembra spam. Per favore noninserire link nella tua descrizione." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Il nome deve essere lungo almeno %s caratteri" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Questo nome di vocabolario è già in uso." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Impossibile cambiare il valore della chiave da %s a %s. Questa chiave è in sola lettura" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Il vocabolario del tag non è stato trovato." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Il tag %s non fa parte del vocabolario %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Nome tag assente" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Il tag %s fa già parte del vocabolario %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Per favore inserisci una URL valida" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "il ruolo non esiste." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "I dataset non associati a un'organizzazione non possono essere privati." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Non è una lista" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Non è una stringa" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Questo elemento genitore creerebbe un loop nella gerarchia" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "\"filter_fields\" e \"filter_values\" dovrebbero avere stessa lunghezza" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +msgstr "\"filter_fields\" è obbligatorio quando \"filter_values\" è riempito" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "\"filter_values\" è obbligatorio quando \"filter_fields\" è riempito" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "Esiste un campo di schema con lo stesso nome" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Creare l'oggetto %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Creare una relazione per il pacchetto: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Crea oggetto membro %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Prova a create una organizzazione come gruppo" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Devi fornire l'id o il nome di un pacchetto (parametro \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "È necessario indicare un voto (parametro \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Il voto deve essere un numero intero." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Il voto deve essere compreso tra %i e %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Devi essere autenticato per poter seguire gli utenti" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Non puoi seguire te stesso" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Stai già seguendo {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Devi essere autenticato per seguire un dataset." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "L'utente {username} non esiste." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Devi essere autenticato per seguire un gruppo." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Eliminare il pacchetto: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Eliminare %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Rimuovi Membro: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id assente dai dati" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Impossibile trovare il vocabolario \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Impossibile trovare il tag \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Devi essere autenticato per smettere di seguire un oggetto." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Non stai seguendo {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Risorsa non trovata." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Non specificare se si usa il parametro \"query\"" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Devono essere coppie :" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Campo \"{field}\" non riconosciuto in resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "utente sconosciuto:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Elemento non trovato." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Pacchetto non trovato." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Aggiorna l'oggetto %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Aggiornare la relazione del pacchetto: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus non trovato." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organizzazione non trovata." @@ -1666,9 +1577,9 @@ msgstr "Devi essere autenticato per aggiungere un elemento correlato" #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "Nessun id di dataset fornito, verifica di autorizzazione impossibile." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Nessun pacchetto trovato per questa risorsa, impossibile controllare l'autorizzazione." @@ -1676,96 +1587,100 @@ msgstr "Nessun pacchetto trovato per questa risorsa, impossibile controllare l'a #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "L'utente %s non è autorizzato a creare risorse nel dataset %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "L'utente %s non è autorizzato a modificare questi pacchetti" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "L'utente %s non è autorizzato a creare gruppi" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "L'utente %s non è autorizzato a creare organizzazioni" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "L'utente {user} non è autorizzato a creare utenti tramite l'API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Non autorizzato alla creazione di utenti" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Gruppo non trovato." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "È necessaria una chiave API valida per creare un pacchetto" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "È necessaria una chiave API valida per creare un pacchetto" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "L'utente %s non è autorizzato ad aggiungere membri" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "L'utente %s non è autorizzato a modificare il gruppo %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "L'utente %s non è autorizzato a eliminare la risorsa %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "Vista di risorsa non trovata, impossibile verificare l'autorizzazione." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Soltanto il proprietario può eliminare un elemento correlato" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "L'utente %s non è autorizzato a eliminare la relazione %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "L'utente %s non è autorizzato a eliminare i gruppi" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "L'utente %s non è autorizzato a eliminare il gruppo %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "L'utente %s non è autorizzato a eliminare le organizzazioni" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "L'utente %s non è autorizzato a eliminare l'organizzazione %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "L'utente %s non è autorizzato a eliminare il task status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Non autorizzato" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1784,11 +1699,11 @@ msgstr "L'utente %s non è autorizzato a leggere la risorsa %s" #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "L'utente %s non è autorizzato a leggere il gruppo %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." -msgstr "Devi essere autenticato per accedere al tuo cruscotto" +msgstr "Bisogna essere autenticati per accedere al proprio cruscotto" #: ckan/logic/auth/update.py:37 #, python-format @@ -1839,7 +1754,7 @@ msgstr "L'utente %s non è autorizzato a modificare l'utente %s" #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "L'utente {0} non è autorizzato ad aggiornare l'utente {1}" #: ckan/logic/auth/update.py:236 #, python-format @@ -1864,63 +1779,63 @@ msgstr "È necessaria una chiave API valida per modificare il pacchetto" msgid "Valid API key needed to edit a group" msgstr "È necessaria una chiave API valida per modificare il gruppo" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "Licenza non specificata" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribuzione" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribuzione - Condividi allo stesso modo" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Altro (di tipo Open)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Altro (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Altro (con Attribuzione)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non Commerciale (Qualsiasi tipo)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Altro (Non Commerciale)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Altro (non Open)" @@ -1977,7 +1892,7 @@ msgstr "è parente di %s" #: ckanext/reclineview/theme/templates/recline_view.html:12 #: ckanext/textview/theme/templates/text_view.html:9 msgid "Loading..." -msgstr "Caricando..." +msgstr "Caricamento in corso ..." #: ckan/public/base/javascript/modules/api-info.js:20 msgid "There is no API data to load for this resource" @@ -2009,7 +1924,7 @@ msgstr "Confermare azione" #: ckan/public/base/javascript/modules/confirm-action.js:8 msgid "Are you sure you want to perform this action?" -msgstr "Sei certo di voler confermare questa azione?" +msgstr "Si è certi di voler confermare questa azione?" #: ckan/public/base/javascript/modules/confirm-action.js:9 #: ckan/templates/user/new_user_form.html:9 @@ -2027,8 +1942,6 @@ msgstr "Conferma" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Annulla" @@ -2053,12 +1966,13 @@ msgstr "Link" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Rimuovi" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Immagine" @@ -2120,18 +2034,17 @@ msgstr "Impossibile accedere ai dati per il file caricato" msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" -msgstr "Stai caricando un file. Sei sicuro che vuoi abbandonare questa pagina e interrompere il caricamento?" +msgstr "Stai caricando un file. Si è sicuri di voler abbandonare questa pagina e interrompere il caricamento?" #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Riordina vista di risorsa" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2145,7 +2058,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Modifica" @@ -2184,34 +2096,42 @@ msgstr "Fatto con Site Title: This is the title of this CKAN instance It " @@ -2318,7 +2235,7 @@ msgstr "Conferma il Reset" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Amministra CKAN" #: ckan/templates/admin/index.html:20 #, python-format @@ -2326,15 +2243,15 @@ msgid "" "

As a sysadmin user you have full control over this CKAN instance. " "Proceed with care!

For guidance on using sysadmin features, see the " "CKAN sysadmin guide

" -msgstr "" +msgstr "

In qualità di utente amministratore di sistema hai pieno controllo su questa istanza CKAN. Prosegui con attenzione!

Per informazioni e consigli sulle funzionalità per l'amministratore di sistema, consulta la guida CKAN

" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Purifica" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "

Pulisce i dataset cancellati in maniera definitiva ed irreversibile.

" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" @@ -2342,14 +2259,14 @@ msgstr "CKAN Data API" #: ckan/templates/ajax_snippets/api_info.html:23 msgid "Access resource data via a web API with powerful query support" -msgstr "Access resource data via a web API with powerful query support" +msgstr "Accesso alle informazioni di risorsa via web utilizzando un'ambiente API completamente interrogabile." #: ckan/templates/ajax_snippets/api_info.html:24 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +msgstr "Ulteriori informazioni presso la documentazione principale su CKAN Data API e DataStore.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" @@ -2359,10 +2276,9 @@ msgstr "Endpoints" msgid "" "The Data API can be accessed via the following actions of the CKAN action " "API." -msgstr "The Data API can be accessed via the following actions of the CKAN action API." +msgstr "L'interfaccia Data API può essere consultata attraverso le azioni seguenti tra quelle a disposizione in CKAN API." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Crea" @@ -2400,7 +2316,7 @@ msgstr "Esempio: Javascript" #: ckan/templates/ajax_snippets/api_info.html:97 msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Una richiesta ajax semplice (JSONP) verso l'API dati utilizzando jQuery." #: ckan/templates/ajax_snippets/api_info.html:118 msgid "Example: Python" @@ -2514,7 +2430,7 @@ msgstr "Seleziona" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2547,26 +2463,24 @@ msgstr "Modulo gruppo" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Conferma la cancellazione" #: ckan/templates/group/confirm_delete.html:11 msgid "Are you sure you want to delete group - {name}?" -msgstr "Sei sicuro di voler eliminare il gruppo - {name}?" +msgstr "Si è sicuri di voler eliminare il gruppo - {name}?" #: ckan/templates/group/confirm_delete_member.html:11 #: ckan/templates/organization/confirm_delete_member.html:11 msgid "Are you sure you want to delete member - {name}?" -msgstr "Sei sicuro di voler eliminare il membro - {name}?" +msgstr "Si è sicuri di voler eliminare il membro - {name}?" #: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:11 #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2699,7 +2613,7 @@ msgstr "Ruolo" #: ckan/templates/organization/member_new.html:59 #: ckan/templates/organization/members.html:30 msgid "Are you sure you want to delete this member?" -msgstr "Sei sicuro di voler cancellare questo membro?" +msgstr "Si è sicuri di voler cancellare questo membro?" #: ckan/templates/group/member_new.html:59 #: ckan/templates/group/members.html:35 @@ -2711,14 +2625,12 @@ msgstr "Sei sicuro di voler cancellare questo membro?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Elimina" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Salva" @@ -2799,14 +2711,13 @@ msgstr "Mio Gruppo" #: ckan/templates/group/snippets/group_form.html:18 msgid "my-group" -msgstr "my-group" +msgstr "mio-gruppo" #: ckan/templates/group/snippets/group_form.html:20 #: ckan/templates/organization/snippets/organization_form.html:20 #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Descrizione" @@ -2816,7 +2727,7 @@ msgstr "Alcune informazioni sul mio gruppo..." #: ckan/templates/group/snippets/group_form.html:60 msgid "Are you sure you want to delete this Group?" -msgstr "Sei sicuro di voler cancellare questo Gruppo?" +msgstr "Si è sicuri di voler cancellare questo Gruppo?" #: ckan/templates/group/snippets/group_form.html:64 msgid "Save Group" @@ -2836,7 +2747,7 @@ msgstr[1] "{num} Dataset" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 msgid "0 Datasets" -msgstr "0 Datasets" +msgstr "0 Dataset" #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 @@ -2867,7 +2778,7 @@ msgstr "Confronta »" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2953,7 +2864,7 @@ msgstr "Questa è una sezione in evidenza" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "Per es. ambiente" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" @@ -2961,51 +2872,43 @@ msgstr "Cerca i dati" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Tag popolari" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" msgstr "{0} statistiche" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "dataset" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "dataset" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organizzazione" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organizzazioni" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "gruppo" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "gruppi" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "elemento correlato" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "elementi correlati" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" "You can use Markdown formatting here" -msgstr "" +msgstr "Puoi utilizzare la sintassi Markdown qui" #: ckan/templates/macros/form.html:265 msgid "This field is required" @@ -3016,7 +2919,6 @@ msgid "Custom" msgstr "Personalizzato" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Il form contiene dati non validi" @@ -3029,7 +2931,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL dell'immagine" @@ -3074,7 +2975,7 @@ msgstr "Bozza" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3108,6 +3009,20 @@ msgstr "Cerca organizzazioni..." msgid "There are currently no organizations for this site" msgstr "Al momento non ci sono organizzazioni per questo sito" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nome utente" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Indirizzo email" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Aggiorna membro" @@ -3144,7 +3059,7 @@ msgstr "Aggiungi un dataset" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "Dataset nell'organizzazione: {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 @@ -3159,7 +3074,7 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "" +msgstr "

Le Organizzazioni si comportano come dipartimenti che pubblicano dataset (per esempio, Dipartimento della Salute). Questo significa che i dataset sono pubblicati ed appartengono ad un dipartimento piuttosto che ad un singolo utente.

All'interno di organizzazioni, gli amministratori possono assegnare ruoli ed autorizzare i propri membri, fornendo ai singoli utenti diritti di pubblicazione di dataset per conto di quella particolare organizzazione (e.g. Istituto Nazionale di Statistica).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" @@ -3174,7 +3089,7 @@ msgstr "La mia Organizzazione" #: ckan/templates/organization/snippets/organization_form.html:18 msgid "my-organization" -msgstr "my-organization" +msgstr "mia-organizzazione" #: ckan/templates/organization/snippets/organization_form.html:20 msgid "A little information about my organization..." @@ -3193,7 +3108,7 @@ msgstr "Salva Organizzazione" #: ckan/templates/organization/snippets/organization_item.html:37 #: ckan/templates/organization/snippets/organization_item.html:38 msgid "View {organization_name}" -msgstr "Visualizza {organization_name}" +msgstr "Mostra {organization_name}" #: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 #: ckan/templates/package/snippets/new_package_breadcrumb.html:2 @@ -3232,7 +3147,7 @@ msgstr "Modifica i metadati" #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Modifica vista" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3242,7 +3157,6 @@ msgid "Preview" msgstr "Anteprima" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Aggiorna" @@ -3285,7 +3199,7 @@ msgstr "Nuova risorsa" #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Aggiungi vista" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3294,14 +3208,14 @@ msgid "" "href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-" "structured-data-the-data-explorer' target='_blank'>Data Explorer " "documentation. " -msgstr "" +msgstr "Le viste di Esploratore Dati possono essere lente ed inefficaci fintanto che l'estensione non è abilitata. Per maggiori informazioni, consulta la documentazione Esploratore Dati. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" msgstr "Aggiungi" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3333,28 +3247,32 @@ msgstr "Errore nel caricamento:" msgid "Error:" msgstr "Errore:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "Errore traceback:" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Stato" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Ultimo aggiornamento" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Mai" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" -msgstr "Registro degli upload" +msgstr "Registro dei caricamenti" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Dettagli" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Fine del log" @@ -3377,7 +3295,7 @@ msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Viste" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" @@ -3409,30 +3327,30 @@ msgstr "Sorgente: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "Non è stata ancora creata alcuna vista per questa risorsa." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "Non vedi le viste che ti aspettavi?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +msgstr "Possibili motivi per i quali non sono visibili delle viste che ti aspettavi:" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "" +msgstr "Nessuna tra le viste create è adatta per questa risorsa" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +msgstr "Gli amministratori del sito potrebbero non aver abilitato i plugin di vista rilevante" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "" +msgstr "Se una vista richiede il DataStore, il plugin DataStore potrebbe non essere abilitato, o le informazioni potrebbero non essere state inserite nel DataStore, o il DataStore non ha ancora terminato l'elaborazione dei dati." #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" @@ -3458,7 +3376,7 @@ msgid "unknown" msgstr "sconosciuto" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Creato" @@ -3476,11 +3394,11 @@ msgstr "Licenza" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "Nuova vista" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "Questa risorsra non ha alcuna vista" #: ckan/templates/package/resources.html:8 msgid "Add new resource" @@ -3494,6 +3412,10 @@ msgid "" "add some?

" msgstr "

Questo dataset non possiede dati, perché non aggiungerne?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Documentazione API" @@ -3507,26 +3429,26 @@ msgstr "dump {format} completo" msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "E' possibile inoltre accedere al registro usando il %(api_link)s (vedi %(api_doc_link)s) o scaricarlo da %(dump_link)s." +msgstr "E' possibile inoltre accedere al registro usando le %(api_link)s (vedi %(api_doc_link)s) oppure scaricarlo da %(dump_link)s." #: ckan/templates/package/search.html:60 #, python-format msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " -msgstr "E' possibile inoltre accedere al registro usando il %(api_link)s (vedi %(api_doc_link)s). " +msgstr "E' possibile inoltre accedere al registro usando le %(api_link)s (vedi %(api_doc_link)s). " #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "Tutte le viste" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "Mostra vista" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "Mostra anteprima" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 @@ -3550,7 +3472,7 @@ msgid "Version" msgstr "Versione" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Stato" @@ -3565,17 +3487,16 @@ msgstr "Data API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Titolo" #: ckan/templates/package/snippets/package_basic_fields.html:4 msgid "eg. A descriptive title" -msgstr "eg. Un titolo descrittivo" +msgstr "per es. Un titolo descrittivo" #: ckan/templates/package/snippets/package_basic_fields.html:13 msgid "eg. my-dataset" -msgstr "eg. my-dataset" +msgstr "per es. mio-dataset" #: ckan/templates/package/snippets/package_basic_fields.html:19 msgid "eg. Some useful notes about the data" @@ -3585,30 +3506,30 @@ msgstr "eg. Qualche nota utile sui dati" msgid "eg. economy, mental health, government" msgstr "eg. economia, salute mentale, governo" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Le definizioni delle licenze e ulteriori informazioni sono disponibili su opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organizzazione" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Nessuna organizzazione" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Visibilità" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Pubblico" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Attivo" @@ -3619,7 +3540,7 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "" +msgstr "La licenza sui dati scelta sopra si applica solamente ai contenuti di qualsiasi file di risorsa aggiunto a questo dataset. Inviando questo modulo, acconsenti a rilasciare i valori metadata inseriti attraverso il modulo secondo quanto previsto nella Open Database License." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -3641,7 +3562,7 @@ msgstr "1.0" #: ckan/templates/package/snippets/package_metadata_fields.html:20 #: ckan/templates/user/new_user_form.html:6 msgid "Joe Bloggs" -msgstr "Joe Bloggs" +msgstr "Mario Rossi" #: ckan/templates/package/snippets/package_metadata_fields.html:16 msgid "Author Email" @@ -3651,7 +3572,7 @@ msgstr "Mittente" #: ckan/templates/package/snippets/package_metadata_fields.html:22 #: ckan/templates/user/new_user_form.html:7 msgid "joe@example.com" -msgstr "joe@example.com" +msgstr "mario@esempio.it" #: ckan/templates/package/snippets/package_metadata_fields.html:22 msgid "Maintainer Email" @@ -3667,7 +3588,7 @@ msgstr "File" #: ckan/templates/package/snippets/resource_form.html:28 msgid "eg. January 2011 Gold Prices" -msgstr "eg. Gennaio 2011 Prezzo dell'Oro" +msgstr "per es. Prezzo dell'Oro a Gennaio 2011" #: ckan/templates/package/snippets/resource_form.html:32 msgid "Some useful notes about the data" @@ -3679,7 +3600,7 @@ msgstr "eg. CSV, XML o JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" +msgstr "Sarà determinato automaticamente. Lascia vuoto se lo desideri" #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" @@ -3735,23 +3656,23 @@ msgstr "Esplora" msgid "More information" msgstr "Altre informazioni" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Incorpora" #: ckan/templates/package/snippets/resource_view.html:24 msgid "This resource view is not available at the moment." -msgstr "" +msgstr "Questa vista di risorsa non è al momento disponibile." #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "" +msgstr "Incorpora vista di risorsa" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "" +msgstr "Puoi fare copia ed incolla del codice da incorporare in un CMS o programma blog che supporta HTML grezzo" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" @@ -3795,164 +3716,31 @@ msgstr "Aggiungi dati" #: ckan/templates/package/snippets/view_form.html:8 msgid "eg. My View" -msgstr "" +msgstr "per es. Mia Vista" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "" +msgstr "per es. Dettagli per la mia vista" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "Aggiungi filtro" +msgstr "Aggiungi Filtro" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "Rimuovi Filtro" #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" -msgstr "" +msgstr "Filtri" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "" +msgstr "Cos'è una vista?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Modulo correlato" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Cosa sono gli elemento correlati?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Un Media correlato è qualsiasi app, articolo, visualizzazione o idea correlata a questo dataset.

Per esempio, può essere una visualizzazione personalizzata, un pittogramma o un grafico a barre, una app che usa tutti i dati o una loro parte, o anche una notizia che fa riferimento a questo dataset.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Sei sicuro di voler eliminare l'elemento correlato - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Apps & Idee" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Mostro elementi %(first)s - %(last)s di %(item_count)s elementi correlati trovati

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s trovati elementi correlati

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Non sono state ancora inviate app." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Cosa sono le applicazioni?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Sono applicazioni sviluppate con i dataset oltre a idee su cosa si potrebbe fare con i dataset." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Risultato del Filtro" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtra per tipo" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Tutti" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Ordina per" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Default" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Mostra solo gli elementi in evidenza" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Richiedi" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Modifica elemento correlato" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Modifica Elemento Correlato" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Modifica Elemento Correlato" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Crea un elemento correlato" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Crea un elemento correlato" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Crea un elemento correlato" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Il mio elemento correlato" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Qualche informazione sull'elemento..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Tipo" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Sei sicuro di voler eliminare questo elemento correlato?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Vai a {related_item_type}" +msgstr "Una vista è una rappresentazione dei dati attribuita nei confronti di una risorsa" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -4041,7 +3829,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Non ci sono {facet_type} che corrispondono a questa ricerca" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Home" @@ -4050,7 +3837,7 @@ msgid "Language" msgstr "Linguaggio" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4082,21 +3869,25 @@ msgstr "Non ci sono ancora app, idee, notizie o immagini per questo dataset." msgid "Add Item" msgstr "Aggiungi elemento" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Invia" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Ordina per" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Risultato del Filtro" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Per favore effettua un'altra ricerca.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4125,7 +3916,7 @@ msgstr "Nessun dataset trovato" #: ckan/templates/snippets/search_result_text.html:21 msgid "{number} group found for \"{query}\"" msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "nessun gruppo trovato per \"{query}\"" +msgstr[0] "{number} gruppo trovato per \"{query}\"" msgstr[1] "{number} gruppi trovati per \"{query}\"" #: ckan/templates/snippets/search_result_text.html:22 @@ -4171,7 +3962,7 @@ msgid "Subscribe" msgstr "Sottoscrivi" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4190,10 +3981,6 @@ msgstr "Modifiche" msgid "Search Tags" msgstr "Cerca tag" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Pannello" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "News feed" @@ -4257,36 +4044,27 @@ msgstr "Il tuo profilo racconta qualcosa di te agli altri utenti CKAN." msgid "Change details" msgstr "Modifica dettagli" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nome utente" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Nome completo" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" -msgstr "eg. Joe Bloggs" +msgstr "eg. Mario Rossi" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" -msgstr "eg. joe@example.com" +msgstr "eg. mario@esempio.it" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Alcune informazioni su te stesso" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Sottoscrivi alle notificazioni email" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Modifica password" @@ -4308,11 +4086,11 @@ msgstr "Sei sicuro di voler cancellare questo utente?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "Sei sicuro di voler generare di nuovo la chiave API?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Rigenera Chiave API" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" @@ -4462,15 +4240,15 @@ msgstr "Membro dal" #: ckan/templates/user/read_base.html:96 msgid "API Key" -msgstr "API Key" +msgstr "Chiave API" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Azzeramento password" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Richiedi azzeramento" #: ckan/templates/user/request_reset.html:34 msgid "" @@ -4519,29 +4297,37 @@ msgstr "Non ancora caricato" msgid "DataStore resource not found" msgstr "Risorsa DataStore non trovata" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "Dato non valido (per esempio: un valore numerico fuori intervallo od inserito in un campo di testo)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "La risorsa \"{0}\" non è stata trovata." #: ckanext/datastore/logic/auth.py:16 msgid "User {0} not authorized to update resource {1}" -msgstr "L'utente {0} non è autorizzato ad aggiornarre la risorsa {1}" +msgstr "L'utente {0} non è autorizzato ad aggiornare la risorsa {1}" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Dataset per pagina" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configurazione di test" #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "Campo Libero in Crescente" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "Campo Libero in Decrescente" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 @@ -4559,7 +4345,11 @@ msgstr "Codice nazione" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" -msgstr "" +msgstr "testo di risorsa personalizzata" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Questa è una stringa non tradotta" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 @@ -4568,7 +4358,7 @@ msgstr "Questo gruppo non ha descrizioni" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "Lo strumento di anteprima dati CKAN ha numerose funzioni avanzate" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" @@ -4576,72 +4366,32 @@ msgstr "URL dell'immagine" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +msgstr "per es. http://example.com/image.jpg (se vuoto usa url di risorsa)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" -msgstr "" +msgstr "Esploratore Dati" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "Tabella" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Grafo" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "Mappa" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nCon il presente si concede il permesso, in via gratuita, a qualsiasi persona\nche ottenga una copia di questo software e della documentazione \nassociata (il \"Software\") di gestire il Software senza restrizioni, inclusi \nsenza limitazioni i diritti di usare, copiare, modificare, unire, pubblicare,\ndistribuire, concedere in sublicenza, e/o vendere copie del Software, e di\nconsentire di fare altrettanto alle persone a cui viene fornito il Software, \nalle seguenti condizioni:\n\nLa nota sul copyright sopra riportata e questa nota sui permessi dovranno\nessere incluse in tutte le copie o porzioni sostanziali del Software.\n\nIL SOFTWARE VIENE FORNITO \"COSÌ COM'È\", SENZA GARANZIE DI NESSUN TIPO, ESPLICITE O IMPLICITE, INCLUSE SENZA LIMITI LE GARANZIE DI COMMERCIABILITÀ, IDONEITÀ PER UNO SCOPO PARTICOLARE E NON VIOLAZIONE. IN NESSUN CASO GLI AUTORI O I TITOLARI DEL COPYRIGHT POTRANNO ESSERE RITENUTI RESPONSABILI PER RIVENDICAZIONI, DANNI O ALTRE RESPONSABILITÀ LEGALI, SIA PER AZIONI DERIVANTI DA CONTRATTO, ATTO ILLECITO O ALTRO, DERIVANTI DA O IN RELAZIONE AL SOFTWARE O ALL'USO DEL SOFTWARE O ALTRE ATTIVITÀ AD ESSO CORRELATE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Questa versione compilata SlickGrid è stato ottenuta con Google Clousure ⏎\nCompilata, utilizzando il seguente comando: ⏎\n⏎\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js⏎\n⏎\nSono necessari altri due file richiesti da SlickGrid affiché funzioni correttamente: ⏎\n⏎\n* Jquery-ui-1.8.16.custom.min.js ⏎\n* Jquery.event.drag-2.0.min.js ⏎\n⏎\nQuesti sono inclusi nei sorgenti di Recline, ma non sono stati inclusi nel ⏎\ndi file generato per facilitare la gestione di problemi di compatibilità. ⏎\n⏎\nSi prega di controllare la licenza di SlickGrid inclusa nel file MIT-LICENSE.txt. ⏎\n⏎\n[1] https://developers.google.com/closure/compiler" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "errore nel caricamento della vista" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "Row offset" -msgstr "" +msgstr "Scostamento della riga" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4651,7 +4401,7 @@ msgstr "es: 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Numero di righe" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 @@ -4660,15 +4410,15 @@ msgstr "es: 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Tipo di Grafo" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Gruppo (Asse 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Serie (Asse 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" @@ -4684,18 +4434,17 @@ msgstr "Campo longitudine" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "Campo GeoJSON" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" -msgstr "" +msgstr "Ingrandimento automatico alle funzioni" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "Raggruppamento di marcatori" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Numero totale di dataset" @@ -4723,33 +4472,27 @@ msgstr "Nuovi dataset" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Dataset più votati" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Voto medio" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Numero di voti" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Nessun voto" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Dataset più modificati" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Numero di modifiche" @@ -4759,12 +4502,10 @@ msgstr "Nessun dataset modificato" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Gruppi più numerosi" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Numero di dataset" @@ -4774,7 +4515,6 @@ msgstr "Nessun gruppo" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Migliori tag" @@ -4789,8 +4529,8 @@ msgstr "Numero di dataset" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Utenti che possiedono il maggior numero di dataset" +msgid "Users Creating Most Datasets" +msgstr "Utenti che hanno creato la maggior parte dei dataset" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4800,42 +4540,16 @@ msgstr "Menu statistiche" msgid "Total Number of Datasets" msgstr "Numero totale di dataset" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistiche" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Revisioni ai dataset per settimana" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Utenti che controllano il maggior numero di dataset" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Testo" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Pagina aggiornata il:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Classifica - Statistiche" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Classifica dataset" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Scegli un attributo del dataset e trova quali categorie in quell'area hanno più dataset. Esempio tag, gruppi, licenza, res_format, paese." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Scegli un'area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "Si è verificato un errore: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "Sito web" @@ -4845,4 +4559,4 @@ msgstr "URL della pagina" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "per es. http://example.com (se vuoto usa url di risorsa)" diff --git a/ckan/i18n/ja/LC_MESSAGES/ckan.mo b/ckan/i18n/ja/LC_MESSAGES/ckan.mo index cf547ccb7c3..2bd990036b2 100644 Binary files a/ckan/i18n/ja/LC_MESSAGES/ckan.mo and b/ckan/i18n/ja/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ja/LC_MESSAGES/ckan.po b/ckan/i18n/ja/LC_MESSAGES/ckan.po index 57ac2b4ad5d..13b1647ea3f 100644 --- a/ckan/i18n/ja/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ja/LC_MESSAGES/ckan.po @@ -15,252 +15,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-02-26 03:06+0000\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-27 07:50+0000\n" "Last-Translator: Fumihiro Kato <>\n" -"Language-Team: Japanese (http://www.transifex.com/projects/p/ckan/language/ja/)\n" +"Language-Team: Japanese (http://www.transifex.com/okfn/ckan/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "承認機能が見つかりません: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "管理者" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "編集者" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "メンバー" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "管理するためにはシステム管理者である必要があります" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "サイトのタイトル" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "スタイル" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "サイトのタグライン" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "サイトのタグロゴ" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "About" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "About ページのテキスト" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "紹介テキスト" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "ホームページ上のテキスト" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "カスタム CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "カスタマイズ可能なCSS がページヘッダに挿入されました" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "ホームページ" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "パッケージ %s を削除できません。関連するリビジョン %s が削除されていないパッケージ %s を含んでいます。" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "リビジョン %sを削除時の問題: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "削除完了" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "未実装のアクション" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "このページの表示は許可されていません" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "アクセスできません" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "見つかりません" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "不正なリクエスト" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "不明のアクション名: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON エラー: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "不正なリクエストデータ: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "このタイプのエンティティは一覧化できません: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "このタイプのエンティティは読み込めません: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "このエンティティのタイプは作成できません: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "検索インデックスにパッケージを追加できません" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "このタイプのエンティティは更新できません: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "検索インデックスを更新できません" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "このタイプのエンティティは削除できません: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "リビジョンが指定されていません" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "以下のリビジョンIDはありません: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "検索用語がありません('since_id=UUID' あるいは 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "パラメータを読み込めません: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "不正な検索オプション: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "不明の登録: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "不正なqjson値: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "要求パラメータはJSON形式の辞書でなければなりません。" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "グループが見つかりません" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "組織が見つかりませんでした" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "不正なグループ型" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "グループ %s の読み込みが許可されていません" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -271,23 +271,23 @@ msgstr "グループ %s の読み込みが許可されていません" msgid "Organizations" msgstr "組織" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "グループ" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -295,394 +295,303 @@ msgstr "グループ" msgid "Tags" msgstr "タグ" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "フォーマット" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "ライセンス" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "バルク更新を実行するための権限がありません" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "グループの作成が許可されていません" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "ユーザ %r には %s の編集権限がありません" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "一貫性保持エラー" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "ユーザ %r には %s 承認の編集権限がありません" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "グループ %s の削除が許可されていません" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "組織が削除されました。" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "グループが削除されました。" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s はすでに削除されています" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "グループ %s へのメンバーの追加は許可されていません" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "グループ %s のメンバーの削除は許可されていません" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "グループメンバーが削除されました。" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "比較対象となる2つのリビジョンを選択してください。" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "ユーザ %r には %r の編集権限がありません" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN グループのリビジョンヒストリー" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "CKANグループへの最近の変更: " -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "ログメッセージ " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "グループ {group_id} の読み込みは許可されていません" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "フォロー中{0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "フォローしていない{0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "フォロワー %s の表示は許可されていません" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "このサイトは現在オフラインです。データベースが起動していません。" -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "あなたのプロファイルを更新して、メールアドレスとフルネームを追加してください。{site} は、あなたがパスワードリセットを行う際にあなたのメールアドレスを使います。" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "プロフィールを更新してメールアドレスを追加してください。 " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "パスワードをリセットする必要があるときには,%sはあたなのメールアドレスを使用します。" -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "プロフィールを更新して氏名を追加してください。" - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "パラメータ \"{parameter_name}\"は整数ではありません" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "データセットが見つかりません" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "%sは読み込みが許可されていないパッケージです" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "無効なリビジョン形式: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "{format} formatでの {package_type} データセットの閲覧はサポートされていません (テンプレート {file} が見つかりません)。" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKANデータセットのリビジョン履歴" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "CKANデータセットの最近の変更: " -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "パッケージの作成が許可されていません" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "このリソースの編集は許可されていません" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "リソースが見つかりません" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "このリソースの更新は許可されていません" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "データセット {id} は見つかりませんでした" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "少なくとも一件以上のリソースを追加しなければなりません" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "エラー" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "リソースの作成が許可されていません" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "このパッケージへのリソース作成は許可されていません。" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "検索インデックスにパッケージを追加できません" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "検索インデックスを更新できません" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "データセットはすでに削除されています" + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "パッケージ %s の削除が許可されていません" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "データセットはすでに削除されています" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "リソースはすでに削除されています" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "リソース %s の削除が許可されていません" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "データセット %s の読み込みが許可されていません" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "リソースビューが見つかりませんでした。" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "リソース %s の読み込みが許可されていません" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "リソースデータがありません" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "利用できるダウンロードはありません" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "このリソースの編集は許可されていません" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "ビューが見つかりません" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "ビュー %s の閲覧は許可されていません" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "ビュータイプが見つかりません" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "問題のあるリソースビューデータ" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "リソース %s の読み込みが許可されていません" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "リソースビューが提供されていません" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "プレビューが定義されていません" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "最も閲覧されたデータ" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "最も閲覧されたデータ" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "閲覧数が少ないデータ" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "投稿の新しいデータ" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "投稿の古いデータ" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "リクエストされた関連アイテムは見つかりませんでした" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "関連するアイテムはありません" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "許可されていません" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "パッケージが見つかりません" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "関連アイテムが作成されました" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "関連アイテムが更新されました" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "関連アイテムはすでに削除されています" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "関連アイテム %s の削除が許可されていません" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "アプリケーション" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "アイデア" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "新着記事" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "紙媒体" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "投稿" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "視覚化" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKANリポジトリのリビジョン履歴" @@ -708,10 +617,10 @@ msgstr "その他" msgid "Tag not found" msgstr "タグが見つかりません" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "ユーザが見つかりません" @@ -731,13 +640,13 @@ msgstr "\"{user_id}\"にはユーザ削除権限がありません" msgid "No user specified" msgstr "ユーザが指定されていません" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "ユーザ %s の編集権限がありません" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "プロフィールが更新されました" @@ -761,75 +670,87 @@ msgstr "ユーザ \"%s\"は今登録されましたが、あたなはまだ\"%s\ msgid "Unauthorized to edit a user." msgstr "ユーザの編集権限がありません" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "ユーザ %s には %s の編集権限がありません" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "入力されたパスワードが間違っていました" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "古いパスワード" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "間違っているパスワード" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "ログイン失敗。ユーザ名かパスワードが違います。" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "パスワードリセットを要求する権限がありません" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" は複数ユーザと一致しました" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "%sというユーザーは見つかりません" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "リセットコードをメールアドレス宛に送付しました。" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "リセットリンクを送れませんでした: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "パスワードをリセットする権限がありません" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "リセットキーが無効です。再度試してください。" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "パスワードがリセットされました。" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "パスワードは4文字以上である必要があります。" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "入力したパスワードが間違っています。" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "パスワードを発行してください" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "フォロー中のアイテムはありません" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} 見つかりません" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "{0}-{1} の読み込みが許可されていません" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "すべて" @@ -951,7 +872,7 @@ msgstr "{actor} がデータセット {dataset} に {related_type} {related_item msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} が {related_type} {related_item} を追加しました" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -959,9 +880,9 @@ msgid "View" msgstr "表示" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{site_title} による 新しいアクティビティ {n}" +msgstr[0] "{site_title} からの 新しいアクティビティ {n}" #: ckan/lib/formatters.py:17 msgid "January" @@ -1011,129 +932,129 @@ msgstr "11月" msgid "December" msgstr "12月" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "たった今" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} 分前" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} 時間前" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} 日前" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} 月前" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "{years} 年以上前" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{year} {month} {day}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{year} {month} {day}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{year} / {month} / {day}," -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "gravatar.comでアバターが更新されました" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "不明" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "名無しのリソース" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "新しいデータセットが作成されました。" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "リソースが編集されました。" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "設定が編集されました。" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "閲覧数 {number}" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "最近の閲覧数 {number}" @@ -1163,7 +1084,7 @@ msgstr "{site_title} であなたのパスワードをリセットするよう #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1188,7 +1109,7 @@ msgstr "{site_title} への招待" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "不明な値" @@ -1201,7 +1122,7 @@ msgstr "入力フィールド %(name)s は期待されていません。" msgid "Please enter an integer value" msgstr "整数値を入力してください" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1211,11 +1132,11 @@ msgstr "整数値を入力してください" msgid "Resources" msgstr "リソース" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "無効なパッケージリソース" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "エキストラ" @@ -1225,25 +1146,22 @@ msgstr "エキストラ" msgid "Tag vocabulary \"%s\" does not exist" msgstr "タグ \"%s\" が見つかりませんでした" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "ユーザ" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "データセット" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "グループ" @@ -1255,378 +1173,369 @@ msgstr "正しいJOSN形式としてペーストできません" msgid "A organization must be supplied" msgstr "組織が必要です" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "既存の組織からはデータセットを削除できません" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "組織がありません" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "組織にデータセットを追加できません" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "無効な整数値" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "自然数を入力してください" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "正の整数値を入力してください" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "データフォーマットが違います" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "log_messageではリンクは許されていません。" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "既に同名のデータセットIDが登録されています" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "リソース" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "関連" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "グループ名かIDが存在しません。" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "アクティビティ型" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "名称は文字列である必要があります" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "その名前は利用できません" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr " %s 文字以上必要です" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "名前は最大 %i 文字以内でなければいけません" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "小文字のアルファベット(ascii)と、asciiに含まれる文字列: -_ のみです。" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "その URL はすでに使用されています。" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "名前 \"%s\" の文字数は最小文字数 %s 文字に達していません" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "名前 \"%s\" の文字数は最大文字数 %s 文字を越えています" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "バージョンは最大 %i 文字以内でなければいけません" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "キー \"%s\" の重複" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "既に同名のグループが登録されています" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "タグ \"%s\" の文字数は最小文字数 %s 文字に達していません" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "タグ \"%s\" の文字数は最大文字数 %i 文字を超えています" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "タグ \"%s\" は英数文字あるいは、以下の記号 -_ のいづれかである必要があります。" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "タグ \"%s\" で大文字を使用することはできません" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "ユーザ名は文字列である必要があります" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "このログイン名は使用できません。" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "パスワードとして同じ文字列を入力してください" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "パスワードは文字列である必要があります" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "パスワードは4文字以上である必要があります" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "入力したパスワードが一致しません" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "SPAMを含む可能性のある投稿はできません。説明文からリンクを除外してください。" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "名前は %s 文字以上必要です" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "そのボキャブラリー名はすでに使用されています。" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "キーの値を %s から %s へ変更できません。このキーは編集できません" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "ボキャブラリーがみつかりませんでした。" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "タグ %s はボキャブラリー %s に属していません" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "そのようなタグはありません" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "タグ %s はすでにボキャブラリー %s に属しています" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "正しいURL を入力してください" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "ロールがありません" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "組織なしのデータセットはプライベートにできません" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "リストではありません" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "文字列ではありません" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "この親は階層構造でループを作ります" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "\"filter_fields\"と\"filter_values\"は同じ長さにすべきです" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "\"filter_fields\" is required when \"filter_values\" is filled" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "\"filter_fields\"が入力されている場合、\"filter_values\"は必須です" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "同じ名前のスキーマフィールドがあります" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: オブジェクト作成: %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: パッケージ間リレーションを作成: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: メンバーオブジェクト作成: %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "組織をグループとして作成します" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "あなたはパッケージidか名前 (パラメータ\"package\")を提供しなければなりません" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "あなたはレーティング (パラメータ\"rating\")を提供しなければなりません" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "レーティングは整数値である必要があります。" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "レーティングは %i から %i の間の値を入力してください。" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "ユーザをフォローするにはログインが必要です" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "自分自身はフォローできません" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "すでにフォロー中 {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "データセットをフォローするにはログインが必要です" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "ユーザ {username} が存在しません" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "グループをフォローするにはログインが必要です" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: パッケージ削除: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: %s を削除" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Delete Member: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "そのidはデータ内にありません" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "ボキャブラリー \"%s\" はありません" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "タグ \"%s\" はありません" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "フォローを解除するにはログインが必要です" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "フォローしていない {0}" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "リソースが見つかりませんでした。" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "\"クエリー\"パラメータ使用時には指定しないでください" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr ": のペアでなければなりません" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr " \"{field}\" フィールドが resource_search 内にありません。" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "不明なユーザ" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "対象のアイテムがありません。" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "パッケージが見つかりませんでした。" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: オブジェクト更新: %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: パッケージ間リレーションの更新: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "タスクステータスが見つかりませんでした。" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "組織が見つかりませんでした" @@ -1657,7 +1566,7 @@ msgstr "関連アイテムを追加するにはログインが必要です" msgid "No dataset id provided, cannot check auth." msgstr "データセットidが提供されていないので認証を確認できません。" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "このリソース用のパッケージが見つからないため、認証をチェックできません。" @@ -1667,94 +1576,98 @@ msgstr "このリソース用のパッケージが見つからないため、認 msgid "User %s not authorized to create resources on dataset %s" msgstr "ユーザ %s にはデータセット %s 上のリソース作成権限がありません" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "ユーザ %s にはパッケージの編集権限がありません" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "ユーザ %s にはグループ作成権限がありません" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "ユーザ %s には組織の作成権限がありません" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "User {user} はAPIでのユーザ作成権限がありません。" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "ユーザの作成権限がありません" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "グループがみつかりませんでした。" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "パッケージを作成するには有効なAPIキーが必要です" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "グループを作成するには有効なAPIキーが必要です" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "ユーザ %s にはメンバーの追加権限がありません" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "ユーザ %s にはグループ %s の編集権限がありません" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "ユーザ %s にはリソース %s の削除権限がありません" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "リソースビューが見つからないので、認証を確認できません。" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "関連アイテムを削除できるのはオーナーだけです" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "ユーザ %s には関係 %s の削除権限がありません" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "ユーザ %s にはグループの削除権限がありません" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "ユーザ %s にはグループ %s の削除権限がありません" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "ユーザ %s には組織の削除権限がありません" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "ユーザ %s には組織 %s の削除権限がありません" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "ユーザ %s にはタスクステータスの削除権限がありません" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "許可されていません" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1775,7 +1688,7 @@ msgstr "ユーザ %s にはリソース %s の閲覧権限がありません" msgid "User %s not authorized to read group %s" msgstr "ユーザ %s には グループ %s の閲覧権限がありません" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "ダッシュボードにアクセスするにはログインが必要です" @@ -1853,63 +1766,63 @@ msgstr "パッケージを編集するには有効なAPIキーが必要です" msgid "Valid API key needed to edit a group" msgstr "グループを編集するには有効なAPIキーが必要です" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "ライセンスが指定されていません" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "クリエイティブ・コモンズ CC0" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "クリエイティブ・コモンズ 表示" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "クリエイティブ・コモンズ 表示 継承" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "その他 (オープンライセンス)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "その他 (パブリックドメイン)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "その他 (表示)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "クリエイティブ・コモンズ 非商用" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "その他 (非商用)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "その他 (非オープンライセンス)" @@ -2016,8 +1929,6 @@ msgstr "確認" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "キャンセル" @@ -2042,12 +1953,13 @@ msgstr "リンク" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "削除" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "画像" @@ -2120,7 +2032,6 @@ msgstr "リソースビューを再整列" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2134,7 +2045,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "編集" @@ -2173,33 +2083,41 @@ msgstr "Powered by Site Title: This is the title of this CKAN instance It " @@ -2350,7 +2265,6 @@ msgid "" msgstr "Data APIはCKAN action APIの次のようなアクションを通してアクセスすることができます。" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "作成" @@ -2502,7 +2416,7 @@ msgstr "選択" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2535,8 +2449,6 @@ msgstr "グループフォーム" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "削除を実行" @@ -2554,7 +2466,7 @@ msgstr "メンバー - {name} を削除してもよろしいですか?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2699,14 +2611,12 @@ msgstr "このメンバーを削除してよろしいですか?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "削除" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "保存" @@ -2794,7 +2704,6 @@ msgstr "マイグループ" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "説明" @@ -2854,7 +2763,7 @@ msgstr "比較" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2954,38 +2863,30 @@ msgstr "人気のあるタグ" msgid "{0} statistics" msgstr "{0} 統計" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "データセット" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "データセット" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "組織" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "組織" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "グループ" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "グループ" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "関連アイテム" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "関連アイテム" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3003,7 +2904,6 @@ msgid "Custom" msgstr "カスタム" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "不正な値があります:" @@ -3016,7 +2916,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "画像URL" @@ -3061,7 +2960,7 @@ msgstr "ドラフト" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3095,6 +2994,20 @@ msgstr "組織を検索..." msgid "There are currently no organizations for this site" msgstr "このサイトに所属している組織がありません" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "ユーザ名" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Emailアドレス" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "メンバーの更新" @@ -3229,7 +3142,6 @@ msgid "Preview" msgstr "プレビュー" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "更新" @@ -3288,7 +3200,7 @@ msgstr "データストア拡張が有効でない場合、データ探索ビュ msgid "Add" msgstr "追加" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3320,28 +3232,32 @@ msgstr "アップロードエラー: " msgid "Error:" msgstr "エラー:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "エラートレースバック" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "状態" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "最終更新" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "決して" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "アップロードログ" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "詳細" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "ログの終わり" @@ -3445,7 +3361,7 @@ msgid "unknown" msgstr "unknown" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "作成日" @@ -3481,6 +3397,10 @@ msgid "" "add some?

" msgstr "

このデータセットにはデータがありませんので、 データを追加しましょう

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "APIドキュメント" @@ -3537,7 +3457,7 @@ msgid "Version" msgstr "バージョン" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "状態" @@ -3552,7 +3472,6 @@ msgstr "データAPI" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "タイトル" @@ -3572,30 +3491,30 @@ msgstr "eg. Some useful notes about the data" msgid "eg. economy, mental health, government" msgstr "例:経済,政府" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "ライセンス定義や追加情報はopendefinition.orgにあります。" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "組織" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "組織なし" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "公開・非公開" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "パブリック" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "アクティブ" @@ -3722,7 +3641,7 @@ msgstr "探索" msgid "More information" msgstr "より多くの情報" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "埋めこみ" @@ -3808,139 +3727,6 @@ msgstr "ビューは何ですか?" msgid "A view is a representation of the data held against a resource" msgstr "ビューはリソースに対して保持されたデータの表現です" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "関連フォーム" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "関連アイテムとは?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

関連するメディアとは、このデータセットに関連するアプリケーションや記事、可視化、アイデアです。

例えば、データ全部または一部を用いた可視化や図表、棒グラフ、アプリケーションだけではなく、データセットを参照する新しいストーリーもです。

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "関連アイテム - {name} を削除してもよろしいですか?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "アプリとアイデア" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

%(item_count)s個の関連アイテムの内%(first)s - %(last)sのアイテムを表示

\n " - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)sの関連アイテムを発見

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "まだアプリが登録されていません" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "アプリケーションとは?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "これらはそのデータセットを利用したアプリケーションや、データセットを用いてできるであろうアイデアになります。" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "フィルタ結果" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "データ種別で検索" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "すべて" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "並び替え順序" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "デフォルト" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "特集アイテムのみ表示" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "適用" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "関連アイテムの編集" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "関連の編集" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "関連アイテムの編集" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "関連アイテムの作成" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "関連の作成" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "関連アイテムの作成" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "私の関連アイテム" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "このアイテムに対する簡単な情報" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "タイプ" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "この関連アイテムを削除してよろしいですか?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "{related_item_type} へ行く" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "差分" @@ -4028,7 +3814,6 @@ msgid "There are no {facet_type} that match this search" msgstr "この検索にマッチする {facet_type} はありません" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "ホーム" @@ -4037,7 +3822,7 @@ msgid "Language" msgstr "言語" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4069,21 +3854,25 @@ msgstr "このデータセットに関連するアプリケーションやアイ msgid "Add Item" msgstr "アイテムの追加" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "投稿" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "並び順" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "フィルタ結果" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

他の検索を試してください。

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4152,7 +3941,7 @@ msgid "Subscribe" msgstr "購読" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4171,10 +3960,6 @@ msgstr "編集" msgid "Search Tags" msgstr "タグを検索" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "ダッシュボード" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "ニュースフィード" @@ -4238,36 +4023,27 @@ msgstr "プロフィールによって、他のCKANユーザにあなたが何 msgid "Change details" msgstr "詳細の変更" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "ユーザ名" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "フルネーム" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "eg. Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "eg. joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "あなたについての簡単な情報" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "購読内容をメールに通知" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "パスワードの変更" @@ -4500,15 +4276,15 @@ msgstr "まだアップロードされていない" msgid "DataStore resource not found" msgstr "データストアリソースが見つかりません" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "不正なデータです (例: 数値が範囲外かテキストフィールドに入力された)" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "リソース \"{0}\" がみつかりませんでした" @@ -4516,6 +4292,14 @@ msgstr "リソース \"{0}\" がみつかりませんでした" msgid "User {0} not authorized to update resource {1}" msgstr "ユーザ {0} には リソース {1} の更新権限がありません" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "ページ毎のデータセット" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "テストコンフィグ" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "カスタムフィールド昇順" @@ -4542,6 +4326,10 @@ msgstr "国コード" msgid "custom resource text" msgstr "カスタムリソーステキスト" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "これは翻訳されていない文字列です" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4559,65 +4347,25 @@ msgstr "画像URL" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "例: http://example.com/image.jpg (空白の場合はリソースURL)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "データエクスプローラー" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "テーブル" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "グラフ" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "マップ" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid⏎ ⏎ Permission is hereby granted, free of charge, to any person obtaining⏎ a copy of this software and associated documentation files (the⏎ \"Software\"), to deal in the Software without restriction, including⏎ without limitation the rights to use, copy, modify, merge, publish,⏎ distribute, sublicense, and/or sell copies of the Software, and to⏎ permit persons to whom the Software is furnished to do so, subject to⏎ the following conditions:⏎ ⏎ The above copyright notice and this permission notice shall be⏎ included in all copies or substantial portions of the Software.⏎ ⏎ THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,⏎ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF⏎ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND⏎ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE⏎ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION⏎ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION⏎ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "このSlickGridのコンパイルされたバージョンはGoogle Closure Compilerによって生成されています。生成には以下のコマンドを使用しています: java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js。SlickGridビューを正しく動かすためには他に二つのファイルが必要です: * jquery-ui-1.8.16.custom.min.js ⏎ * jquery.event.drag-2.0.min.js 。これらはReclineソースに含まれていますが、互換性問題を容易に回避できるようにするためにビルドされたファイルには含まれていません。MIT-LICENSE.txtファイルに含まれているSlickGridライセンスをチェックして下さい。⏎ ⏎ [1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "エラーローディングビュー" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4676,7 +4424,6 @@ msgid "Cluster markers" msgstr "クラスターマーカー" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "データセット数" @@ -4704,33 +4451,27 @@ msgstr "新規データセット" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "最も評価の高いデータセット" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "評価平均" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "評価数" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "評価なし" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "もっとも編集されたデータセット" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "編集回数" @@ -4740,12 +4481,10 @@ msgstr "編集されたデータセットはありません" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "最大グループ" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "データセット数" @@ -4755,7 +4494,6 @@ msgstr "グループがありません" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "トップタグ" @@ -4770,8 +4508,8 @@ msgstr "データセット数" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "最もデータセットを所有しているユーザ" +msgid "Users Creating Most Datasets" +msgstr "最もデータセットを作成しているユーザ" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4781,42 +4519,16 @@ msgstr "統計メニュー" msgid "Total Number of Datasets" msgstr "データセット数" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "統計" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "週毎のデータセットのリビジョン" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "最もデータセットを所有しているユーザ" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "ページの最終更新:" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "テキスト" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "リーダーボード - 状態" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "データセット リーダーボード" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "データセット属性を選択して、最も多いデータセットがある分野のカテゴリを見つけて下さい.例: タグ、グループ、ライセンス、リソース形式、国" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "エリアを選択" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "エラー発生: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "ウェブサイト" diff --git a/ckan/i18n/km/LC_MESSAGES/ckan.mo b/ckan/i18n/km/LC_MESSAGES/ckan.mo index 4f5ded72bad..ee645f97cd4 100644 Binary files a/ckan/i18n/km/LC_MESSAGES/ckan.mo and b/ckan/i18n/km/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/km/LC_MESSAGES/ckan.po b/ckan/i18n/km/LC_MESSAGES/ckan.po index 25b3a296338..cacaa9c9c4e 100644 --- a/ckan/i18n/km/LC_MESSAGES/ckan.po +++ b/ckan/i18n/km/LC_MESSAGES/ckan.po @@ -9,252 +9,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:23+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Khmer (http://www.transifex.com/projects/p/ckan/language/km/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:18+0000\n" +"Last-Translator: dread \n" +"Language-Team: Khmer (http://www.transifex.com/okfn/ckan/language/km/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "ពុំមានមុខងារអនុញ្ញាត៖ %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "អ្នកអភិបាល" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "ពណ្ណាធីការ" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "សមាជិក" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "ចាំបាច់ត្រូវតែជាអ្នកគ្រប់គ្រងប្រព័ន្ធដើម្បីធ្វើការគ្រប់គ្រង" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "ចំណងជើងតំបន់បណ្តាញ" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr " រចនាបថ" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "ស្លាកបន្ទាត់របស់គេហទំព័រ" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "ស្លាករូបសំគាល់របស់គេហទំព័រ" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "អំពី" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "អត្ថបទ អំពីទំព័រ" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "អត្ថបទ ផ្ដើមសេចក្ដីណែនាំ" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "អត្ថបទលើគេហទំព័រ" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "កែរសំរួល CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "CSS ដែលកែរសំរួលត្រូវបានបញ្ចូលទៅក្នុងបឋមកថាទំព័រ​" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "គេហទំព័រដើម" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "សម្អាតទាំងស្រុង" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "សកម្មភាពមិនត្រូវបានអនុវត្ត។" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "ពសិទ្ធិដើម្បីមើលទំព័រនេះ" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "ការចូលត្រូវបានបដិសេធ" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "ពុំអាចរកបាន" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "ការស្នើរសុំមិនត្រូវលក្ខខណ្ឌ" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "កំហុស​ JSON៖ %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "ទិន្នន័យដែលបានស្នើរសុំមិនត្រូវលក្ខខណ្ឌ៖​ %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "មិនអាចធ្វើបច្ចុប្បន្នភាពលិបិក្រមស្វែងរកទេ" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "មិនមានការកែប្រែណាមួយត្រូវបាន​បញ្ជាក់" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "មិនមានការកែប្រែណាមួយមានលេខសម្គាល់នេះ៖ %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "បញ្ជីមិនស្គាល់៖ %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr " ក្រុមរកមិនឃើញ" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "ប្រភេទក្រុមមិនត្រឹមត្រូវ" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "ពុំត្រូវបានអនុញ្ញាតក្នុងការអានក្រុម %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -265,23 +265,23 @@ msgstr "ពុំត្រូវបានអនុញ្ញាតក្នុង msgid "Organizations" msgstr "អង្គភាព" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "ក្រុម" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -289,394 +289,303 @@ msgstr "ក្រុម" msgid "Tags" msgstr "ស្លាក" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "ទ្រង់ទ្រាយ" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "អាជ្ញាប័ណ្ណ" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបង្កើតក្រុម" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "អ្នកប្រើ %r មិនត្រូវបានអនុញ្ញាតក្នុងការកែសម្រួល %s ទេ" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "កំហុសឆ្គងនៃភាពត្រឹមត្រូវ" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "អ្នកប្រើ %r មិនត្រូវបានអនុញ្ញាតក្នុងការកែសម្រួលទៅលើការអនុញ្ញាត %s ទេ" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "ពុំត្រូវបានអនុញ្ញាតអោយលុបក្រុម %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "អង្គការត្រូវបានលុប។" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "ក្រុមត្រូវបានលុបចោល" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបន្ថែមសមាជិកក្រុម %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "ពុំត្រូវបានអនុញ្ញាតអោយលុបសមាជិកក្រុម %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "សមាជិកក្រុមត្រូវបានលុបចោល" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "ជ្រើសការកែប្រែពីរមុនពេលធ្វើការប្រៀបធៀប។" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "អ្នកប្រើ %r មិនត្រូវបានអនុញ្ញាតក្នុងការកែសម្រួលទៅលើ​ %r ទេ" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "ប្រវត្តិនៃការកែប្រែក្រុមរបស់ CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "ការផ្លាស់ប្តូរថ្មីដើម្បីក្រុម CKAN៖" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "សារកំណត់ហេតុ៖" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "បណ្តាញនេះគឺស្ថិតនៅក្រៅបណ្តាញក្នុងពេលបច្ចុប្បន្ន។ មូលដ្ឋានទិន្នន័យមិនត្រូវបានធ្វើការចាប់ផ្ដើម។" -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "សូមធ្វើបច្ចុប្បន្នភាពអំពីពត៍មានផ្ទាល់ខ្លួនរបស់អ្នក ​ហើយនឹងបំពេញអាស័យដ្ឋានអ៊ីម៉ែលនិងឈ្មោះពេញរបស់អ្នក។ {site} ប្រើអាសយដ្ឋានអ៊ីម៉ែលរបស់អ្នក ប្រសិនបើអ្នកត្រូវការធ្វើការកំណត់ពាក្យសម្ងាត់សារជាថ្មី។" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "សូមធ្វើបច្ចុប្បន្នភាពអំពីពត៍មានផ្ទាល់ខ្លួនរបស់អ្នក ​ហើយនឹងបំពេញអាស័យដ្ឋានអ៊ីម៉ែលរបស់អ្នក។" -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s ប្រើអ៊ីម៉ែលរបស់អ្នកប្រសិនបើអ្នកត្រូវការកំណត់ពាក្យសម្ងាត់របស់អ្នកឡើងវិញ។" -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "សូម ធ្វើបច្ចុប្បន្នភាពអំពីពត៍មានផ្ទាល់ខ្លួនរបស់អ្នក ​ហើយនឹងបំពេញឈ្មោះពេញរបស់អ្នក។" - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "រកមិនឃើញបណ្តុំទិន្នន័យ" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "ទ្រង់ទ្រាយនៃការកែប្រែមិនត្រឹមត្រូវ៖ %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "ប្រវត្តិនៃការកែប្រែបណ្តុំទិន្នន័យរបស់ CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "ការផ្លាស់ប្តូរថ្មីលើ បណ្តុំទិន្នន័យ CKAN៖" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួលធនធាននេះ" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "រកមិនឃើញ ធនធាន" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើបច្ចុប្បន្នភាពទិន្នន័យទេ" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "កំហុស" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "បណ្តុំទិន្នន័យត្រូវបានលុបចោល" + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "បណ្តុំទិន្នន័យត្រូវបានលុបចោល" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "ធនធានត្រូវបានលុបចោល" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "ដែលបានចូលមើលច្រើនបំផុត" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "ដែលបានចូលមើលច្រើនបំផុត" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "ដែលបានចូលមើលតិចបំផុត" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "ថ្មីបំផុត" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "ចាស់បំផុត" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "រកមិនឃើញ វត្ថុដែលទាក់ទិន" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "ពុំត្រូវបានអនុញ្ញាត" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "កម្មវិធីអនុវត្ត" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "គំនិត" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "អត្ថបទព័ត៌មាន" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "ក្រដាស" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "ប្រកាស" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "" @@ -702,10 +611,10 @@ msgstr "ផ្សេងៗទៀត" msgid "Tag not found" msgstr "រកមិនឃើញ ស្លាក" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "រកមិនឃើញអ្នកប្រើប្រាស់" @@ -725,13 +634,13 @@ msgstr "ពុំត្រូវបានអនុញ្ញាតដើម្ប msgid "No user specified" msgstr "មិនមានអ្នកប្រើប្រាស់ណាមួយត្រូវបាន​បញ្ជាក់" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួលព័ត៍មានអ្នកប្រើប្រាស់​ %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "ជិវប្រវត្តិត្រូវបានធ្វើបច្ចុប្បន្នភាព" @@ -755,75 +664,87 @@ msgstr "អ្នកប្រើ \"%s\" ឥឡូវនេះបានចុះ msgid "Unauthorized to edit a user." msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួលព័ត៍មានអ្នកប្រើប្រាស់" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "អ្នកប្រើ %s មិនត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួល %s ទេ" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "កត់ត្រា​ចូលបានបរាជ័យ។ ឈ្មោះអ្នកប្រើឬពាក្យសម្ងាត់មិនត្រឹមត្រូវ។" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "ពុំត្រូវបានអនុញ្ញាតក្នុងការស្នើសុំការកំណត់ពាក្យសម្ងាត់ឡើងវិញទេ។" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" ផ្គូផ្គងត្រូវ អ្នកប្រើប្រាស់ជាច្រើន" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "មិនមានអ្នកប្រើប្រាស់នេះទេ៖ %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "សូមពិនិត្យមើលប្រអប់សំបុត្ររបស់អ្នកសម្រាប់កូដកំណត់។" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "ពុំត្រូវបានអនុញ្ញាតក្នុងការកំណត់ពាក្យសម្ងាត់ឡើងវិញទេ។" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "ពាក្យសម្ងាត់របស់លោកអ្នកត្រូវកំណត់ឡើងវិញ។" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "ពាក្យសម្ងាត់របស់អ្នកត្រូវតែ៤តួអក្សរ ឬលើសពីនេះ។" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "ពាក្យសម្ងាត់ដែលអ្នកបានបញ្ចូលមិនត្រូវគ្នា។" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "អ្នកត្រូវតែផ្ដល់ពាក្យសម្ងាត់" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "រកមិនឃើញ វត្ថុដែលតាមដាន" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "រកមិនឃើញ {0} " -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "គ្រប់យ៉ាង" @@ -945,7 +866,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -953,7 +874,7 @@ msgid "View" msgstr "" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" @@ -1005,129 +926,129 @@ msgstr "វិច្ឆិកា" msgid "December" msgstr "ធ្នូ" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "ពេលឥឡូវនេះ" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} កន្លងទៅ" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "ធនធានដែលគ្មានឈ្មោះ" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "បានបង្កើតបណ្តុំទិន្នន័យថ្មី" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "ធនធានដែលបានកែ" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "ការកំណត់ទុកដែលបានកែ" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1157,7 +1078,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1182,7 +1103,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "តំលៃដែលមិនឃើញ" @@ -1195,7 +1116,7 @@ msgstr "" msgid "Please enter an integer value" msgstr "សូមបញ្ចូលតំលៃជាចំនួនគត់" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1205,11 +1126,11 @@ msgstr "សូមបញ្ចូលតំលៃជាចំនួនគត់" msgid "Resources" msgstr "ធនធាន" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "" @@ -1219,25 +1140,22 @@ msgstr "" msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "អ្នកប្រើប្រាស់" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "សំនំុទិន្នន័យ" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "ក្រុម" @@ -1249,378 +1167,369 @@ msgstr "មិនអាចផ្តល់អោយជា JSON បានការ msgid "A organization must be supplied" msgstr "" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "ចំនួនគត់មិនត្រឹមត្រូវ" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "ត្រូវតែជាចំនួនគត់វិជ្ជមាន" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "ទ្រង់ទ្រាយកាលបរិច្ឆេទមិនត្រឹមត្រូវ" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "ធនធាន" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "ដែលជាប់ទាក់ទង" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "ប្រភេទសកម្មភាព" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "ឈ្មោះត្រូវតែជាអក្សរ" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "ឈ្មោះនោះមិនត្រូវបានប្រើប្រាស់" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "អាស័យដ្ឋាន URL នោះស្ថិតក្នុងការប្រើប្រាស់រួចហើយ" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "ឈ្មោះក្រុមមានរួចហើយនៅក្នុងមូលដ្ឋានទិន្នន័យ" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "ឈ្មោះអ្នកប្រើប្រាស់ត្រូវតែជាអក្សរ" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "កំណត់ត្រា​ឈ្មោះចូលនោះមិនមានទេ។" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "សូមបញ្ចូលពាក្យសម្ងាត់ទាំងពីរ" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "ពាក្យសម្ងាត់ត្រូវតែជាខ្សែអក្សរ" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "ពាក្យសម្ងាត់របស់អ្នកត្រូវតែ៤តួអក្សរ ឬលើសពីនេះ។" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "ពាក្យសម្ងាត់ដែលអ្នកបានបញ្ចូលមិនត្រូវគ្នា។" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "ឈ្មោះវាក្យស័ព្ទនោះស្ថិតក្នុងការប្រើប្រាស់រួចហើយ" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "វាក្យស័ព្ទនៃស្លាកពាក្យរកមិនឃើញ" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "គ្មានឈ្មោះស្លាកពាក្យ" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "សូមផ្តល់អាស័យដ្ឋាន URL បានការ" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "តួនាទីមិនមាន" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "មិនមែនជាបញ្ជី" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "មិនមែនជាអក្សរ" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "ការវាយតំលៃត្រូវតែជា" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "រកមិនឃើញ ធនធាន។" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "អ្នកប្រើប្រាស់មិនស្គាល់អត្តសញ្ញាណ៖" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "រកមិនឃើញ វត្ថុ។" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "រកមិនឃើញ អង្គការ។" @@ -1651,7 +1560,7 @@ msgstr "" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "" @@ -1661,94 +1570,98 @@ msgstr "" msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "ពុំបានអនុញ្ញាតអោយបង្កើតអ្នកប្រើប្រាស់" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "រកមិនឃើញ ក្រុម។" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "ពុំត្រូវបានអនុញ្ញាត" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1769,7 +1682,7 @@ msgstr "" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1847,63 +1760,63 @@ msgstr "" msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "" @@ -2010,8 +1923,6 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "" @@ -2036,12 +1947,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "រូបភាព" @@ -2114,7 +2026,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "" @@ -2128,7 +2039,6 @@ msgstr "" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "" @@ -2167,33 +2077,41 @@ msgstr "" msgid "Sysadmin settings" msgstr "" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" msgstr[0] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "កែការកំណត់ទុក" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "ចុះឈ្មោះ" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2202,7 +2120,6 @@ msgstr "ចុះឈ្មោះ" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2212,15 +2129,13 @@ msgstr "ចុះឈ្មោះ" msgid "Datasets" msgstr "បណ្តុំទិន្នន័យ" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "ស្វែងរកបណ្តុំទិន្នន័យ" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "" @@ -2256,24 +2171,24 @@ msgstr "" msgid "Trash" msgstr "" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2344,7 +2259,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "បង្កើត" @@ -2496,7 +2410,7 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2529,8 +2443,6 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "" @@ -2548,7 +2460,7 @@ msgstr "" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2693,14 +2605,12 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "លុបចោល" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "" @@ -2788,7 +2698,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "" @@ -2848,7 +2757,7 @@ msgstr "" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2948,38 +2857,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2997,7 +2898,6 @@ msgid "Custom" msgstr "" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "" @@ -3010,7 +2910,6 @@ msgid "http://example.com/my-image.jpg" msgstr "" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "" @@ -3055,7 +2954,7 @@ msgstr "" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3089,6 +2988,20 @@ msgstr "" msgid "There are currently no organizations for this site" msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "ឈ្មោះអ្នកប្រើប្រាស់" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3223,7 +3136,6 @@ msgid "Preview" msgstr "មើលជាមុន" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "" @@ -3282,7 +3194,7 @@ msgstr "" msgid "Add" msgstr "បន្ថែម" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3314,28 +3226,32 @@ msgstr "" msgid "Error:" msgstr "" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3439,7 +3355,7 @@ msgid "unknown" msgstr "" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "" @@ -3475,6 +3391,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "" @@ -3531,7 +3451,7 @@ msgid "Version" msgstr "" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "" @@ -3546,7 +3466,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "" @@ -3566,30 +3485,30 @@ msgstr "" msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3716,7 +3635,7 @@ msgstr "" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "" @@ -3802,139 +3721,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "ប្រភេទ" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -4022,7 +3808,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "ទំព័រដើម" @@ -4031,7 +3816,7 @@ msgid "Language" msgstr "ភាសា" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4063,21 +3848,25 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4146,7 +3935,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4165,10 +3954,6 @@ msgstr "" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4232,36 +4017,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "ឈ្មោះអ្នកប្រើប្រាស់" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "ឈ្មោះពេញ" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "លាស់ប្តូរពាក្យសម្ងាត់" @@ -4494,15 +4270,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "រកមិនឃើញ ធនធាន \"{0}\" ។" @@ -4510,6 +4286,14 @@ msgstr "រកមិនឃើញ ធនធាន \"{0}\" ។" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4536,6 +4320,10 @@ msgstr "" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4553,64 +4341,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4670,7 +4418,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "" @@ -4698,33 +4445,27 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "" @@ -4734,12 +4475,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "" @@ -4749,7 +4488,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "" @@ -4764,7 +4502,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 @@ -4775,42 +4513,16 @@ msgstr "" msgid "Total Number of Datasets" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "ស្ថិតិ" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "ការកែប្រែចំពោះបណ្តុំទិន្នន័យក្នុងមួយសប្តាហ៍" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo b/ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo index 8c7fa8ca870..47656f9353d 100644 Binary files a/ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo and b/ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po b/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po index 008f8834771..283e53e49ac 100644 --- a/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po @@ -3,257 +3,259 @@ # This file is distributed under the same license as the ckan project. # # Translators: +# haklaekim , 2015 +# James G. Kim , 2015 # Ma, Kyung Keun , 2013 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:21+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/ckan/language/ko_KR/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-04 23:00+0000\n" +"Last-Translator: haklaekim \n" +"Language-Team: Korean (Korea) (http://www.transifex.com/okfn/ckan/language/ko_KR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: ko_KR\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "권한 기능을 찾을 수 없습니다: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "관리" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "편집자" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "멤버" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "관리를 위해 시스템 관리자 권한이 필요합니다" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "사이트 제목" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "스타일" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "사이트 태그 라인" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "사이트 태그 로고" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "About" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "About 페이지 텍스트" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "인트로 텍스트" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "홈페이지에 관한 텍스트" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "사용자 정의 CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "페이지 헤더에 삽입된 설정을 변경할 수 있는 css" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" -msgstr "" +msgstr "홈페이지" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "관련된 개정 %s이 삭제되지 않은 패키지 %s를 포함하여 패키지 %s를 제거할 수 없음" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "수정안 %s의 제거 문제: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "제거 완료" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "작업이 실행되지 않음." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "이 페이지를 보기 위한 권한 없음" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "접근이 거부됨" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "찾을 수 없음" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "잘못된 요청" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "작업명을 알 수 없음: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON 오류: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "잘못된 요청 데이터: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "이 형식의 개체를 목록화할 수 없음: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "이 형식의 개체를 읽을 수 없음: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "이 형식의 새로운 개체를 생성할 수 없음: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "패키지를 검색 인덱스에 추가할 수 없음 " -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "이 형식의 개체를 업데이트할 수 없음: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "검색 인덱스를 업데이트 할 수 없음 " -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "이 형식의 개체를 삭제할 수 없음: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "명시된 수정안 없음" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "아이디의 수정안이 없음: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "검색어 분실 ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "매개변수를 읽을 수 없음: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "잘못된 검색 옵션: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "알 수 없는 레지스터: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" -msgstr "" +msgstr "형식에 맞지 않는 qjson 값: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "요청 매개변수는 디렉토리로 인코딩된 json 형식입니다." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "그룹을 찾을 수 없음 " -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "기관을 찾을 수 없음" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" -msgstr "" +msgstr "정확하지 않은 그룹 형식" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "그룹 %s를 읽기 위한 권한 없음 " -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -264,23 +266,23 @@ msgstr "그룹 %s를 읽기 위한 권한 없음 " msgid "Organizations" msgstr "조직" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "그룹" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -288,394 +290,303 @@ msgstr "그룹" msgid "Tags" msgstr "태그 " -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "포맷" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" -msgstr "" +msgstr "라이선스" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" -msgstr "" +msgstr "대량 업데이트를 위한 권한이 없음" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "그룹을 생성하기 위해 인증되지 않음 " -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "사용자 %r이 %s를 편집할 권한 없음 " -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "무결성 오류" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "사용자 %r은 %s 권한을 편집할 수 있는 권한이 없습니다. " -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "그룹 %s를 삭제하기 위한 권한 없음 " -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "조직이 삭제되었습니다." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "그룹이 삭제 되었습니다." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s가 삭제되었습니다." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "그룹 %s의 멤버를 추가하기 위한 권한 없음" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "그룹 %s의 멤버를 삭제하기 위한 권한 없음" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "그룹의 멤버가 삭제 되었습니다." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "비교를 위해 두 개의 수정안을 선택하세 " -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "사용자 %r은 %r 편집을 위한 권한 없음" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN 그룹 수정 이력 " -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "CKAN 그룹의 최근 변경내:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "로그 메시지: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "그룹 {group_id}를 읽기 위한 권한 없음 " -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "{0}을 팔로잉중입니다." -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "이미 {0}을 팔로잉하지 않고 있습니다." -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "팔로워 %s를 보기 위한 권한 없음" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "이 사이트는 현재 오프라인입니다. 데이터베이스가 초기화되지 않았습니다. " -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "프로파일, 이메일 주소, 성명을 업데이트하세요. 패스워드의 재설정이 필요한 경우 {site}는 이메일 주소를 사용합니다." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "프로파일을 편집하고 이메일 주소를 추가하세요. " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "패스워드의 재설정이 필요한 경우, %s는 이메일 주소를 사용합니다." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "프로파일을 편집하고 이름을 추가하세요." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +msgstr "매개변수 \"{parameter_name}\"는 정수값이 아닙니다." + +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "데이터셋을 찾을 수 없음 " -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "패키지 %s를 읽기 위한 권한 없음" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "유효하지 않은 수 형식: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." -msgstr "" +msgstr "{format} 형식의 {package_type} 데이터셋 보기는 지원하지 않습니다 (템플릿 파일 {file}을 찾을 수 없습니다)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN 데이터셋 수정 이력" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "CKAN 데이터셋의 최근 변경내용: " -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "패키지를 생성하기 위한 권한 없음" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "리소스 를 편집하기 위한 권한 없음 " -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "리소스를 찾을 수 없음 " -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "데이터셋을 갱신하기 위한 권한 없음" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." -msgstr "" +msgstr "데이터셋 {id}는 찾을 수 없습니다." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "최소한 1개 이상의 데이터 리소스를 추가해야 함" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "오류" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "리소스를 생성하기 위한 권한 없음" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "이 패키지를 위한 리소스를 생성하는데 권한이 없음 " -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "패키지에 검색 인덱스를 추가할 수 없음" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "검색 인덱스를 업데이트할 수 없음." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "데이터셋이 삭제 되었습니다." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "패키지 %s의 삭제 권한 없음" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "데이터셋이 삭제 되었습니다." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "리소스가 삭제 되었습니다." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "리소스 %s를 삭제하기 위한 권한 없음 " -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "데이터셋 %s를 읽기 위한 권한 없음" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "리소스 보기를 찾을 수 없음" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "리소스 %s를 읽기 위한 권한 없음 " -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" -msgstr "" +msgstr "리소스 데이터를 찾을 수 없음" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "다운로드를 사용할 수 없음" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "리소스를 편집하기 위한 권한이 없음" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "보기를 찾을 수 없음" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "뷰 (View) %s를 보기 위한 권한이 없음" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "뷰 형식을 찾을 수 없음" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "잘못된 리소스 뷰 데이터" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "리소스 뷰 %s를 읽기 위한 권한 없음" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "리소스 뷰가 제공되지 않음" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "미리보기가 정의되지 않았습니다." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "가장 많이 본 것" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "가장 많이 본 것" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "가장 적게 본 것" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "새로운 것" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "오래된 것" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "요청된 관련 아이템을 찾을 수 없음" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "관련 항목을 찾을 수 없음" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "권한이 없는" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "패키지를 찾을 수 없음 " - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "관련 항목이 성공적으로 생성되었습니다." - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "관련 항목이 성공적으로 갱신되었습니다." - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "관련 항목이 삭제되었습니다." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "관련 항목 %s를 삭제하기 위한 권한 없음 " - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "애플리케이션" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "아이디어" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "뉴스 아티클" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "논문" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "포스트" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "시각화" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN 리퍼지토리 수정 이력" @@ -701,16 +612,16 @@ msgstr "기타 " msgid "Tag not found" msgstr "태그를 찾을 수 없음" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "사용자를 찾을 수 없음 " #: ckan/controllers/user.py:149 msgid "Unauthorized to register as a user." -msgstr "" +msgstr "사용자로 등록하기 위한 권한 없음" #: ckan/controllers/user.py:166 msgid "Unauthorized to create a user" @@ -718,19 +629,19 @@ msgstr "사용자를 생성하기 위한 권한 없음" #: ckan/controllers/user.py:197 msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" +msgstr "id \"{user_id}\"를 갖는 사용자를 삭제할 권한이 없음." #: ckan/controllers/user.py:211 ckan/controllers/user.py:270 msgid "No user specified" msgstr "명시된 사용자 없음" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "사용자 %s를 편집하기 위한 권한 없음" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "프로파일 업데이트됨" @@ -752,77 +663,89 @@ msgstr "사용자 \"%s\" 로 지긂 등록되었지만, 이전에 사용하던 \ #: ckan/controllers/user.py:276 msgid "Unauthorized to edit a user." -msgstr "" +msgstr "사용자를 편집하는 권한 없음." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "사용자 %s는 %s를 편집하기 위한 권한 없음" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "입력된 비밀번호가 정확하지 않습니다" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "오래된 비밀번호" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "잘못된 비밀번호" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "로그인 실패. 잘못된 사용자명 또는 패스워드입니다." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." -msgstr "" +msgstr "비밀번호 초기화를 요청할 권한이 없음." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\"는 몇 명의 사용자와 일치합니다" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "사용자 없음: %s " -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "재설정 코드를 위해 메일함을 확인하세요. " -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "재설정 링크를 보낼 수 없음: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." -msgstr "" +msgstr "비밀번호 초기화할 권한 없음." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "유효하지 않은 재설정 키. 다시 시도하세요. " -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "패스워드가 재설정되었습니다." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "패스워드는 반드시 4 글자 또는 이상으로 설정하세요." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "입력한 패스워드가 일치하지 않습니다." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "비밀번호를 입력하여야 합니다." -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Follow 항목을 찾을 수 없음" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0}를 찾을 수 없음 " -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr " {0} {1}를 읽기 위한 권한 없음" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "모든 것" @@ -832,7 +755,7 @@ msgstr "누락된 값" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "외부 사이트에 리디렉션하는 것이 허용되지 않습니다." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" @@ -865,11 +788,11 @@ msgstr "{actor}가 프로파일을 업데이트함" #: ckan/lib/activity_streams.py:86 msgid "" "{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" +msgstr "{actor}가 데이터셋 {dataset}의 {related_type} {related_item}을 업데이트했습니다. " #: ckan/lib/activity_streams.py:89 msgid "{actor} updated the {related_type} {related_item}" -msgstr "" +msgstr "{actor}가 {related_type} {related_item}을 업데이트했습니다. " #: ckan/lib/activity_streams.py:92 msgid "{actor} deleted the group {group}" @@ -938,13 +861,13 @@ msgstr "{actor}가 {group}를 팔로잉함" #: ckan/lib/activity_streams.py:142 msgid "" "{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" +msgstr "{actor}가 데이터셋 {dataset}의 {related_type} {related_item}을 추가했습니다." #: ckan/lib/activity_streams.py:145 msgid "{actor} added the {related_type} {related_item}" -msgstr "" +msgstr "{actor}가 {related_type} {related_item}을 추가했습니다." -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -952,7 +875,7 @@ msgid "View" msgstr "보기" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "{site_title}에 {n}개의 새로운 활동이 있습니다" @@ -1004,129 +927,129 @@ msgstr "11월" msgid "December" msgstr "12월" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "바로 지금" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} 분 이전" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} 시간 이전" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} 일 이전" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" -msgstr[0] "" +msgstr[0] "{months} 개월 전" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" -msgstr[0] "" +msgstr[0] "{years} 년전" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} 바이트" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "gravatar.com에 아바타를 업데이트해 주세요" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "알 수 없음" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" -msgstr "" +msgstr "이름이 없는 리소스" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "새로운 데이터셋이 생성됨" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "리소스가 편집됨" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." -msgstr "설정이 편집됨" +msgstr "설정 편집됨" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} 뷰" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} 최근 뷰" @@ -1152,16 +1075,16 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "{site_title}의 비밀번호의 초기화를 요청했습니다.\n\n이 요청을 확인하려면 다음 링크를 클릭하세요:\n\n {reset_link}\n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "{site_title}에 초대되었습니다. 당신의 사용자명 {user_name}으로 생성했습니다. 나중에 변경할 수 있습니다.\n\n초대를 수락하려면, 비밀번호를 초기화하세요:\n\n {reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1170,7 +1093,7 @@ msgstr "비밀번호를 재설정하세요" #: ckan/lib/mailer.py:151 msgid "Invite for {site_title}" -msgstr "" +msgstr "{site_title}에 초대" #: ckan/lib/navl/dictization_functions.py:11 #: ckan/lib/navl/dictization_functions.py:13 @@ -1181,7 +1104,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "누락된 값" @@ -1194,7 +1117,7 @@ msgstr "입력 필드 %(name)s은 예상되지 않았습니다." msgid "Please enter an integer value" msgstr "정수값을 입력하세요" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1204,11 +1127,11 @@ msgstr "정수값을 입력하세요" msgid "Resources" msgstr "리소스" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "패키지 리소스가 유효하지 않음" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "여분의 것" @@ -1218,408 +1141,396 @@ msgstr "여분의 것" msgid "Tag vocabulary \"%s\" does not exist" msgstr "태그 어휘 \"%s\" 가 존재하지 않습니다 " -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "사용자" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "데이터셋" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "그룹" #: ckan/logic/converters.py:178 msgid "Could not parse as valid JSON" -msgstr "" +msgstr "유효한 JSON으로 파싱할 수 없음" #: ckan/logic/validators.py:30 ckan/logic/validators.py:39 msgid "A organization must be supplied" msgstr "조직이 등록되어야 합니다." -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "조직이 존재하지 않습니다." -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "이 조직에 데이터셋을 추가할 수 없습니다." -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "유효하지 않은 정수값" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" -msgstr "" +msgstr "자연수만 허용" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" -msgstr "" +msgstr "양수만 허용" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "데이터 형식이 맞지 않음" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "로그 메시지에 허용된 링크가 없음" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "데이터셋이 이미 존재합니다" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "리소스" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "관련됨" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "해당 그룹명 또는 ID가 존재하지 않습니다." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" -msgstr "Activity 형식" +msgstr "활동 유형" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" -msgstr "" +msgstr "이름은 문자열입니다" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "해당 이름은 사용할 수 없습니다" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "적어도 %s 문자 길이입니다" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "이름은 최대 %i 글자입니다" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "완전한 소문자 알파벳 (ascii) 문자와 기호입니다: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "해당 URL은 이미 사용되고 있습니다." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "이름 \"%s\" 길이는 최소 %s 이하입니다. " -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "이름 \"%s\" 길이는 최대 %s 이상입니다" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "버전은 최대 %i 글자 이상입니다" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "중복 키 \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "그룹 이름이 이미 데이터베이스에 있습니다" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "태그 \"%s\" 길이는 최소 %s보다 작아야 합니다. " -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "태그 \"%s\" 길이는 최대 %i 입니다 " -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "태그 \"%s\"는 알파벳 글자 또는 -_ 기호를 사용해야 합니다." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "태그 \"%s\"는 대문자를 허용하지 않습니다 " -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" -msgstr "" +msgstr "사용자 이름은 반드시 문자열이어야 합니다" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "해당 로그인명은 이용할 수 없습니다." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "양쪽에 비밀번호를 입력하세요 " -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" -msgstr "" +msgstr "비밀번호는 반드시 문자열이어야 합니다" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "비밀번호는 4 글자 또는 그 이상입니다 " -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "입력된 비밀번가 일치하지 않습니다" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "스팸으로 보일 경우 편집이 허용되지 않습니다. 설명에 링크를 추가하는 것을 피하세요 " -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "이름은 적어도 %s 글자 이상입니다" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "해당 어휘명은 이미 사용되고 있습니다." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "%s에서 %s로 키값을 변경할 수 없습니다. 이 키는 읽기 전용입니다 " -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "태그 어휘를 찾을 수 없습니다." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "태그 %s는 어휘 %s에서 속하지 않았습니다" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "태그 이름이 없음" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "태그 %s는 이미 어휘 %s에 속해 있습니다 " -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "유효한 URL을 제공해 주세요" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "역할이 존재하지 않습니다." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." -msgstr "" +msgstr "기관이 없는 데이터셋은 비밀로 할 수 없습니다." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" -msgstr "" +msgstr "리스트가 아님" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" -msgstr "" +msgstr "문자열이 아님" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" -msgstr "" +msgstr "이 부모 노드는 계층구조에서 루프를 생성합니다" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "\"filter_fields\"과 \"filter_values\"는 반드시 같은 길이여야 합니다" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +msgstr "\"filter_fields\"는 \"filter_values\"이 채워졌을 때 필요합니다" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "\"filter_values\"는 \"filter_fields\"이 채워졌을 때 필요합니다" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "같은 이름을 갖는 스키마 필드가 있습니다" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: 오브젝트 %s 생성" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: 패키지 관계성 생성: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: 멤버 오브젝트 %s 생성" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "그룹으로써의 조직 생성 시도하기" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "패키지 id 또는 이름 (매개변수 \"package\")를 제공해야 합니다." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "등급 (매개변수 \"rating\")을 제공해야 합니다. " -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "등급은 정수값입니다." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "등급은 %i와 %i 사이 값입니다." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "사용자를 팔로우하기 위해 로그인해야 합니다." -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "당신 스스로 팔로우(follow)할 수 없습니다" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "이미 {0}를 팔로잉하고 있습니다" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "데이터셋을 팔로우하기 위해 반드시 로그인해야 합니다" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." -msgstr "" +msgstr "사용자 {username}는 존재하지 않습니다." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "그룹을 팔로우하기 위해 로그인해야 합니다" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: 패키지 삭제: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: %s 삭제" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: 멤버 삭제: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "데이터에 없는 id" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "어휘 \"%s\"를 찾을 수 없음" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "태그 \"%s\"를 찾을 수 없음" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "언팔로우하기 위해 로그인해야 합니다." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "{0}을 팔로잉하지 않고 있습니다." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "리소스를 찾을 수 없음." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "\"query\" 매개변수를 사용하는 경우 구체화하지 않음" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr ": 쌍이어야 함" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "필드 \"{field}\"가 resource_search에서 인식되지 않음." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "알 수 없는 사용자:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "항목을 찾을 수 없음." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "패키지를 찾을 수 없음" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: 오브젝트 %s를 업데이트함" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: 패키지 관계를 업데이트함: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus를 찾을 수 없음." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "조직이 존재하지 않습니다." @@ -1636,7 +1547,7 @@ msgstr "사용자 %s는 이 그룹을 편집하기 위한 권한 없음" #: ckan/logic/auth/create.py:36 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "" +msgstr "사용자 %s는 이 기관에 데이터셋을 추가하기 위한 권한이 없습니다" #: ckan/logic/auth/create.py:58 msgid "You must be a sysadmin to create a featured related item" @@ -1648,9 +1559,9 @@ msgstr "관련 항목을 추가하기 위해 반드시 로그인해야 합니다 #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "데이터셋이 제공되지 않아, 인증 확인을 할 수 없습니다." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "이 리소스를 위한 패키지가 없으며, 인증을 확인할 수 없음" @@ -1658,96 +1569,100 @@ msgstr "이 리소스를 위한 패키지가 없으며, 인증을 확인할 수 #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "사용자 %s는 데이터셋 %s에 리소스를 생성할 수 있는 권한이 없습니다" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "사용자 %s는 이 패키지를 편집하기 위한 권한 없음" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "사용자 %s는 그룹을 편집하기 위한 권한 없음" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "사용자 %s는 기관을 생성하는 권한이 없습니다. " -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" -msgstr "" +msgstr "사용자 {user}는 API를 통해 사용자를 생성할 수 있는 권한이 없습니다" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" -msgstr "" +msgstr "사용자를 생성할 수 있는 권한 없음" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "그룹을 찾을 수 없음." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "패키지를 생성하기 위해 유효한 API 키가 필요함" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "그룹을 생성하기 위해 유효한 API 키가 필요함" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "사용자 %s는 멤버를 추가하기 위한 권한이 없음" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "사용자 %s는 그룹 %s를 편집하기 위한 권한 없음" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "사용자 %s는 리소스 %s를 삭제하기 위한 권한 없음" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "리소스 뷰를 찾을 수 없어 인을 확인할 수 없습니다" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "소유자만 관련 항목을 삭제할 수 있습니다" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "사용자 %s는 관계 %s를 삭제하기 위한 권한 없음" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "사용자 %s는 그룹을 삭제하기 위한 권한 없음" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "사용자 %s는 그룹 %s를 삭제하기 위한 권한 없음" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "사용자 %s는 그룹을 삭제하기 위한 권한 없음" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "사용자 %s는 조직 %s를 삭제하기 위한 권한 없음" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "사용자 %s는 task_status를 삭제하기 위한 권한 없음" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "권한이 없는" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1766,9 +1681,9 @@ msgstr "사용자 %s는 리소스 %s를 읽기 위한 권한 없음" #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "사용자 %s는 그룹 %s를 읽을 수 있는 권한이 없습니다" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "대시보드에 접근하기 위해 로그인해야 합니다" @@ -1812,7 +1727,7 @@ msgstr "사용자 %s는 그룹 %s의 허가를 편집하기 위한 권한 없음 #: ckan/logic/auth/update.py:209 msgid "Have to be logged in to edit user" -msgstr "" +msgstr "사용자 편집을 위해 반드시 로그인 해야 합니다" #: ckan/logic/auth/update.py:217 #, python-format @@ -1821,7 +1736,7 @@ msgstr "사용자 %s는 사용자 %s를 편집하기 위한 권한 없음" #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "사용자 {0}는 사용자 {1}을 업데이트하는 권한이 없습니다" #: ckan/logic/auth/update.py:236 #, python-format @@ -1846,63 +1761,63 @@ msgstr "유효한 API가 패키지를 편집하기 위해 필요함" msgid "Valid API key needed to edit a group" msgstr "유효한 API 키가 그룹을 편집하기 위해 필요함 " -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "라이선스가 구체화되지 않음" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "기타 (Open)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "기타 (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "기타 (Attribution)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "기타 (Non-Commercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "기타 (Not Open)" @@ -2009,8 +1924,6 @@ msgstr "승인" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "취소" @@ -2030,27 +1943,28 @@ msgstr "업로드" #: ckan/public/base/javascript/modules/image-upload.js:16 msgid "Link" -msgstr "" +msgstr "링크" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "제거" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "이미지" #: ckan/public/base/javascript/modules/image-upload.js:19 msgid "Upload a file on your computer" -msgstr "" +msgstr "컴퓨터에 있는 파일을 업로드하기" #: ckan/public/base/javascript/modules/image-upload.js:20 msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" +msgstr "인터넷에 있는 URL 연결 (API 연결도 가능)" #: ckan/public/base/javascript/modules/related-item.js:25 msgid "show more" @@ -2062,17 +1976,17 @@ msgstr "적게 보기" #: ckan/public/base/javascript/modules/resource-reorder.js:8 msgid "Reorder resources" -msgstr "" +msgstr "리소스 재정리" #: ckan/public/base/javascript/modules/resource-reorder.js:9 #: ckan/public/base/javascript/modules/resource-view-reorder.js:9 msgid "Save order" -msgstr "" +msgstr "순서 저장" #: ckan/public/base/javascript/modules/resource-reorder.js:10 #: ckan/public/base/javascript/modules/resource-view-reorder.js:10 msgid "Saving..." -msgstr "" +msgstr "저장 중" #: ckan/public/base/javascript/modules/resource-upload-field.js:25 msgid "Upload a file" @@ -2102,18 +2016,17 @@ msgstr "파일을 업로드하기 위한 데이터를 가져올 수 없음" msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" -msgstr "" +msgstr "파일을 업로드중입니다. 탐색을 위해 업로드를 중지하겠습니까?" #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "리소스 뷰 재정리" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2127,7 +2040,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "편집" @@ -2166,33 +2078,41 @@ msgstr "Powered by Site Title: This is the title of this CKAN instance It " @@ -2290,7 +2207,7 @@ msgid "" "target=\"_blank\">reading the documentation.

" "

Homepage: This is for choosing a predefined layout for " "the modules that appear on your homepage.

" -msgstr "" +msgstr "

사이트명: CKAN 인스턴스의 이름으로 다양한 곳에서 보여집니다.

스타일: Choose from a list of simple variations of the main colour scheme to get a very quick custom theme working.

사이트 태그 로고: CKAN 인스턴스 템플릿의 헤더에 보여지는 로고입니다.

About: 이 텍스트는 CKAN 인스턴스의 about page에 보여집니다.

Intro Text: 이 텍스트는 방문자를 환영하는 의미로 CKAN 인스턴스의 home page에 보여집니다.

Custom CSS: 모든 페이지의 <head>태그에 보여지는 CSS 블록입니다. 템플릿을 수정하려면 문서를 읽는 것을 추천합니다.

Homepage:홈페이지에 보여줄 모듈의 미리 정의된 레이아웃을 선택합니다.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2299,7 +2216,7 @@ msgstr "리셋 승인" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "CKAN 관리" #: ckan/templates/admin/index.html:20 #, python-format @@ -2307,85 +2224,84 @@ msgid "" "

As a sysadmin user you have full control over this CKAN instance. " "Proceed with care!

For guidance on using sysadmin features, see the " "CKAN sysadmin guide

" -msgstr "" +msgstr "

sysadmin 사용자로써 CKAN 인스턴스에 대한 모든 권한을 갖고 있습니다. 주의를 갖고 처리하세요!

For guidance on using sysadmin 특징을 사용하기 위한 방법은 CKAN sysadmin guide을 참조하세

" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "제거" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "

삭제된 데이터셋을 완전히 제거합니다.

" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" -msgstr "" +msgstr "CKAN 데이 API" #: ckan/templates/ajax_snippets/api_info.html:23 msgid "Access resource data via a web API with powerful query support" -msgstr "" +msgstr "강력한 질의 지원을 하는 웹 API를 통해 리소스 데이터 접근" #: ckan/templates/ajax_snippets/api_info.html:24 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +msgstr "핵심 CKAN 데이터 API와 데이터스토어 문서 참고.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" -msgstr "" +msgstr "엔드포인트" #: ckan/templates/ajax_snippets/api_info.html:37 msgid "" "The Data API can be accessed via the following actions of the CKAN action " "API." -msgstr "" +msgstr "데이터 API는 CKAN 액션 API의 다음 액션들을 통해 접근할 수 있습니다." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "생성하기" #: ckan/templates/ajax_snippets/api_info.html:46 msgid "Update / Insert" -msgstr "" +msgstr "업데이트 / 추가" #: ckan/templates/ajax_snippets/api_info.html:50 msgid "Query" -msgstr "" +msgstr "질" #: ckan/templates/ajax_snippets/api_info.html:54 msgid "Query (via SQL)" -msgstr "" +msgstr "질의 (via SQL)" #: ckan/templates/ajax_snippets/api_info.html:66 msgid "Querying" -msgstr "" +msgstr "질의하기" #: ckan/templates/ajax_snippets/api_info.html:70 msgid "Query example (first 5 results)" -msgstr "" +msgstr "질의 예제 (5개 결과)" #: ckan/templates/ajax_snippets/api_info.html:75 msgid "Query example (results containing 'jones')" -msgstr "" +msgstr "질의 예제 ('jones'을 포함하는 결)" #: ckan/templates/ajax_snippets/api_info.html:81 msgid "Query example (via SQL statement)" -msgstr "" +msgstr "질의 예제 (via SQL 문)" #: ckan/templates/ajax_snippets/api_info.html:93 msgid "Example: Javascript" -msgstr "" +msgstr "예: Javascript" #: ckan/templates/ajax_snippets/api_info.html:97 msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" +msgstr "jQuery를 이용한 데이터 API에 간단한 ajax (JSONP) 요청." #: ckan/templates/ajax_snippets/api_info.html:118 msgid "Example: Python" -msgstr "" +msgstr "예: Python" #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." @@ -2410,7 +2326,7 @@ msgstr "브라우저가 iframes를 지원하지 않습니다." #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." -msgstr "" +msgstr "프리뷰를 지원하지 않음" #: ckan/templates/dataviewer/snippets/no_preview.html:5 msgid "More details..." @@ -2495,7 +2411,7 @@ msgstr "Select" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2528,8 +2444,6 @@ msgstr "그룹 폼" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "삭제 승인" @@ -2547,12 +2461,12 @@ msgstr "멤버의 삭제를 원합니까 - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 msgid "Manage" -msgstr "" +msgstr "관리하기" #: ckan/templates/group/edit.html:12 msgid "Edit Group" @@ -2590,7 +2504,7 @@ msgstr "그룹 추가" #: ckan/templates/group/index.html:20 msgid "Search groups..." -msgstr "" +msgstr "그룹 검색" #: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 #: ckan/templates/organization/bulk_process.html:97 @@ -2646,27 +2560,27 @@ msgstr "멤버 추가" #: ckan/templates/group/member_new.html:18 #: ckan/templates/organization/member_new.html:20 msgid "Existing User" -msgstr "" +msgstr "기존 사용자" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:23 msgid "If you wish to add an existing user, search for their username below." -msgstr "" +msgstr "기존 사용자를 추가할 경우, 아래에서 사용자명을 검색하세요." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:40 msgid "or" -msgstr "" +msgstr "또는" #: ckan/templates/group/member_new.html:42 #: ckan/templates/organization/member_new.html:44 msgid "New User" -msgstr "" +msgstr "신규 사용자" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:47 msgid "If you wish to invite a new user, enter their email address." -msgstr "" +msgstr "신규 사용자를 초대하려면, 이메일 주소를 입력하세요." #: ckan/templates/group/member_new.html:55 #: ckan/templates/group/members.html:18 @@ -2692,14 +2606,12 @@ msgstr "이 멤버의 삭제를 원합니까?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "삭제" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "저장하기" @@ -2713,7 +2625,7 @@ msgid "" "

Admin: Can edit group information, as well as manage " "organization members.

Member: Can add/remove " "datasets from groups

" -msgstr "" +msgstr "

Admin: 그룹 정보를 편집할 수 있고 기관 멤버를 관리할 수 있습니다.

Member: 그룹에 있는 데이터셋을 추가 또는 삭제할 수 있습니다

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -2757,7 +2669,7 @@ msgstr "인기있는" #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." -msgstr "" +msgstr "데이터셋 검색" #: ckan/templates/group/snippets/feeds.html:3 msgid "Datasets in group: {group}" @@ -2787,7 +2699,6 @@ msgstr "내 그룹" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "설명" @@ -2825,7 +2736,7 @@ msgstr "뷰 {name}" #: ckan/templates/group/snippets/group_item.html:43 msgid "Remove dataset from this group" -msgstr "" +msgstr "이 그룹에서 데이터셋 제거" #: ckan/templates/group/snippets/helper.html:4 msgid "What are Groups?" @@ -2837,17 +2748,17 @@ msgid "" "could be to catalogue datasets for a particular project or team, or on a " "particular theme, or as a very simple way to help people find and search " "your own published datasets. " -msgstr "" +msgstr "데이터셋의 집합을 생성하고 관리하기 위해 CKAN 그룹을 사용할 수 있습니다. 그룹은 특정한 프로젝트 또는 팀을 위한 카탈로그 데이터셋일 수 있고, 또는 특정한 주제입니다. 그룹을 통해 다른 사용자들은 출판된 데이터셋을 찾거나 검색할 수 있습니다. " #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 msgid "Compare" -msgstr "" +msgstr "비교하기" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2933,51 +2844,43 @@ msgstr "주요 섹션입니다" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "예. 환경" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "데이터 검색" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "인기있는 태그" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" -msgstr "" +msgstr "{0} 통계" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "데이터셋" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "데이터셋을" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" -msgstr "" +msgstr "기관" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" -msgstr "" +msgstr "기관" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" -msgstr "" +msgstr "그룹" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" +msgstr "그룹" #: ckan/templates/macros/form.html:126 #, python-format @@ -2985,37 +2888,35 @@ msgid "" "You can use Markdown formatting here" -msgstr "" +msgstr "Markdown formatting을 사용할 수 있습니다" #: ckan/templates/macros/form.html:265 msgid "This field is required" -msgstr "" +msgstr "이 필드는 필수입니다" #: ckan/templates/macros/form.html:265 msgid "Custom" msgstr "사용자 정의" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "이 폼은 유효하지 않은 개체를 포함하고 있습니다:" #: ckan/templates/macros/form.html:395 msgid "Required field" -msgstr "" +msgstr "필수 필드" #: ckan/templates/macros/form.html:410 msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "이미지 URL" #: ckan/templates/macros/form.html:424 msgid "Clear Upload" -msgstr "" +msgstr "업로드 취소하기" #: ckan/templates/organization/base_form_page.html:5 msgid "Organization Form" @@ -3024,15 +2925,15 @@ msgstr "조직 폼" #: ckan/templates/organization/bulk_process.html:3 #: ckan/templates/organization/bulk_process.html:11 msgid "Edit datasets" -msgstr "" +msgstr "데이터셋 편집" #: ckan/templates/organization/bulk_process.html:6 msgid "Add dataset" -msgstr "" +msgstr "데이터셋 추가하기" #: ckan/templates/organization/bulk_process.html:16 msgid " found for \"{query}\"" -msgstr "" +msgstr "\"{query}\"로 찾음" #: ckan/templates/organization/bulk_process.html:18 msgid "Sorry no datasets found for \"{query}\"" @@ -3040,11 +2941,11 @@ msgstr "\"{query}\"로 데이터셋을 찾지 못했습니다" #: ckan/templates/organization/bulk_process.html:37 msgid "Make public" -msgstr "" +msgstr "공용으로 하기" #: ckan/templates/organization/bulk_process.html:41 msgid "Make private" -msgstr "" +msgstr "비밀로 하기" #: ckan/templates/organization/bulk_process.html:70 #: ckan/templates/package/read.html:18 @@ -3054,7 +2955,7 @@ msgstr "초안" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3063,7 +2964,7 @@ msgstr "개인" #: ckan/templates/organization/bulk_process.html:88 msgid "This organization has no datasets associated to it" -msgstr "" +msgstr "이 기관은 관련된 데이터셋이 없습니다" #: ckan/templates/organization/confirm_delete.html:11 msgid "Are you sure you want to delete organization - {name}?" @@ -3082,15 +2983,29 @@ msgstr "조직 추가" #: ckan/templates/organization/index.html:20 msgid "Search organizations..." -msgstr "" +msgstr "기관 찾기" #: ckan/templates/organization/index.html:29 msgid "There are currently no organizations for this site" msgstr "현재 이 사이트에 조직이 없습니다." +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "사용자명" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "이메일 주소" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" -msgstr "" +msgstr "멤버 업데이트" #: ckan/templates/organization/member_new.html:82 msgid "" @@ -3124,7 +3039,7 @@ msgstr "데이터셋 추가" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "기관의 데이터: {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 @@ -3139,14 +3054,14 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "" +msgstr "

기관은 데이터셋을 출판하는 부서와 유사합니다 (예. the Department of Health). 데이터셋은 개인 사용자가 아닌 부서에 의해 출판되거나 소유되는 것을 의미합니다.

기관 내에서 어드민은 멤버들에게 역할과 권한을 부여할 수 있습니다. 멤버는 특정 기관으로부터 데이터셋 출판을 위한 권리를 부여받은 개인사용자입니다 (e.g. Office of National Statistics).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" " CKAN Organizations are used to create, manage and publish collections of " "datasets. Users can have different roles within an Organization, depending " "on their level of authorisation to create, edit and publish. " -msgstr "" +msgstr "CKAN 기관은 데이터셋의 집합을 생성, 관리, 출판하는데 사용됩니다. 사용자는 기관내에서 서로 다른 역할을 갖을 수 있으며, 권한의 등급에 따라 생성, 편집, 출판이 다릅니다." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3164,7 +3079,7 @@ msgstr "내 조직에 대한 일부 정보..." msgid "" "Are you sure you want to delete this Organization? This will delete all the " "public and private datasets belonging to this organization." -msgstr "" +msgstr "이 기관을 삭제하시겠습니까? 이 기관에 속한 모든 공용 및 비밀 데이터셋을 삭제합니다." #: ckan/templates/organization/snippets/organization_form.html:64 msgid "Save Organization" @@ -3173,7 +3088,7 @@ msgstr "조직 저장" #: ckan/templates/organization/snippets/organization_item.html:37 #: ckan/templates/organization/snippets/organization_item.html:38 msgid "View {organization_name}" -msgstr "" +msgstr "{organization_name} 보기" #: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 #: ckan/templates/package/snippets/new_package_breadcrumb.html:2 @@ -3189,7 +3104,7 @@ msgid "" " A CKAN Dataset is a collection of data resources (such as files), together " "with a description and other information, at a fixed URL. Datasets are what " "users see when searching for data. " -msgstr "" +msgstr "CKAN 데이터셋은 리소스에 대한 설명과 추가적인 정보를 갖고 있는 리소스의 집합으로, 고정된 URL을 갖고 있습니다. 데이터셋은 데이터를 탐색할 때 사용자가 보는 결과입니다." #: ckan/templates/package/confirm_delete.html:11 msgid "Are you sure you want to delete dataset - {name}?" @@ -3205,14 +3120,14 @@ msgstr "데이터셋 보기" #: ckan/templates/package/edit_base.html:20 msgid "Edit metadata" -msgstr "" +msgstr "메타데이터 편집" #: ckan/templates/package/edit_view.html:3 #: ckan/templates/package/edit_view.html:4 #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "뷰 편집하기" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3222,21 +3137,20 @@ msgid "Preview" msgstr "미리보기" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "갱신" #: ckan/templates/package/group_list.html:14 msgid "Associate this group with this dataset" -msgstr "" +msgstr "이 그룹과 데이터셋을 연계하기" #: ckan/templates/package/group_list.html:14 msgid "Add to group" -msgstr "" +msgstr "그룹에 추가하기" #: ckan/templates/package/group_list.html:23 msgid "There are no groups associated with this dataset" -msgstr "" +msgstr "이 데이터셋과 관련된 그룹이 없습니다" #: ckan/templates/package/new_package_form.html:15 msgid "Update Dataset" @@ -3254,18 +3168,18 @@ msgstr "새로운 리소스 추가" #: ckan/templates/package/new_resource_not_draft.html:3 #: ckan/templates/package/new_resource_not_draft.html:4 msgid "Add resource" -msgstr "" +msgstr "리소스 추가하기" #: ckan/templates/package/new_resource_not_draft.html:16 msgid "New resource" -msgstr "" +msgstr "새로운 리소스" #: ckan/templates/package/new_view.html:3 #: ckan/templates/package/new_view.html:4 #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "뷰 추가하기" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3274,14 +3188,14 @@ msgid "" "href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-" "structured-data-the-data-explorer' target='_blank'>Data Explorer " "documentation. " -msgstr "" +msgstr "데이터스토어 확장판이 활성화되지 않으면, 데이터 탐색기 뷰는 느리거나 신뢰하지 못할 수 있습니다. 추가적인 정보는 다음을 참조하세요 Data Explorer documentation. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" msgstr "추가하기" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3302,45 +3216,49 @@ msgstr "관련 항목 추가" #: ckan/templates/package/resource_data.html:12 msgid "Upload to DataStore" -msgstr "" +msgstr "데이터스토어에 업로드" #: ckan/templates/package/resource_data.html:19 msgid "Upload error:" -msgstr "" +msgstr "업로드 에러:" #: ckan/templates/package/resource_data.html:25 #: ckan/templates/package/resource_data.html:27 msgid "Error:" msgstr "오류:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "오류 역추적:" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" -msgstr "" +msgstr "상태" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "마지막 업데이트" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" -msgstr "" +msgstr "전혀 없음" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" -msgstr "" +msgstr "업로드 로그" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" -msgstr "" +msgstr "상세 정보" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" -msgstr "" +msgstr "로그의 끝" #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" -msgstr "" +msgstr "모든 리소스" #: ckan/templates/package/resource_edit_base.html:19 msgid "View resource" @@ -3349,15 +3267,15 @@ msgstr "리소스 보기" #: ckan/templates/package/resource_edit_base.html:24 #: ckan/templates/package/resource_edit_base.html:32 msgid "Edit resource" -msgstr "" +msgstr "리소스 편집" #: ckan/templates/package/resource_edit_base.html:26 msgid "DataStore" -msgstr "" +msgstr "데이터스토어" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "뷰" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" @@ -3366,7 +3284,7 @@ msgstr "API Endpoint" #: ckan/templates/package/resource_read.html:41 #: ckan/templates/package/snippets/resource_item.html:48 msgid "Go to resource" -msgstr "" +msgstr "리소스로 이동하기" #: ckan/templates/package/resource_read.html:43 #: ckan/templates/package/snippets/resource_item.html:45 @@ -3389,30 +3307,30 @@ msgstr "Source: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "이 리소스를 위해 생성된 뷰가 아직 없습니다." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "예상했던 뷰를 볼 수 없나요?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +msgstr "예상하는 뷰를 보지 못하는 이유들" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "" +msgstr "이 리소스에 적합한 뷰를 생성하지 않았습니다" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +msgstr "사이트 관리자가 관련 있는 뷰 플러그인을 활성화하지 못할 수 있습니다" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "" +msgstr "뷰가 데이터스토어를 필요할 경우, 데이터스토어 플러그인을 활성화되지 않을 수 있거나, 데이터가 데이터 스토어에 저정되지 않을 수 있습니다. 또는 데이터 스토어는 데이터를 처리하는 것을 완료하지 않은 상태일 수 있습니다." #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" @@ -3438,7 +3356,7 @@ msgid "unknown" msgstr "알 수 없는" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "생성됨" @@ -3456,15 +3374,15 @@ msgstr "라이센스" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "새로운 뷰" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "이 리소스는 뷰가 없음" #: ckan/templates/package/resources.html:8 msgid "Add new resource" -msgstr "" +msgstr "새로운 리소스 추가" #: ckan/templates/package/resources.html:19 #: ckan/templates/package/snippets/resources_list.html:25 @@ -3472,7 +3390,11 @@ msgstr "" msgid "" "

This dataset has no data, why not " "add some?

" -msgstr "" +msgstr "

이 데이터셋에 데이터가 없습니다, 추가해 보세요?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" #: ckan/templates/package/search.html:53 msgid "API Docs" @@ -3498,15 +3420,15 @@ msgstr "%(api_link)s (see %(api_doc_link)s)를 이용하여 레지스트리에 #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "모든 뷰" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "뷰 보기" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "뷰 미리보기" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 @@ -3530,14 +3452,14 @@ msgid "Version" msgstr "버전" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "상태" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "최종 업데이트" #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" @@ -3545,7 +3467,6 @@ msgstr "데이터 API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "제목" @@ -3565,32 +3486,32 @@ msgstr "예) 데이터에 관한 일부 쓸만한 기록" msgid "eg. economy, mental health, government" msgstr "예) 경제, 정신 건강, 정부" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "라이센스 정의와 추가적인 정보는 opendefinition.org에서 찾을 수 있습니다" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "조직" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" -msgstr "" +msgstr "기관 없음" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "가시성" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "공공" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" -msgstr "" +msgstr "Active" #: ckan/templates/package/snippets/package_form.html:28 msgid "" @@ -3599,7 +3520,7 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "" +msgstr "선택한 data license는 이 데이터셋에 추가하는 리소스 파일의 컨텐트에만 적용됩니다. 이 양식을 제출하면, Open Database License에 따라 metadata 값을 배포하는데 동의하는 것입니다. " #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -3611,11 +3532,11 @@ msgstr "다음: 데이터 추가" #: ckan/templates/package/snippets/package_metadata_fields.html:6 msgid "http://example.com/dataset.json" -msgstr "" +msgstr "http://example.com/dataset.json" #: ckan/templates/package/snippets/package_metadata_fields.html:10 msgid "1.0" -msgstr "" +msgstr "1.0" #: ckan/templates/package/snippets/package_metadata_fields.html:14 #: ckan/templates/package/snippets/package_metadata_fields.html:20 @@ -3643,7 +3564,7 @@ msgstr "리소스 갱신" #: ckan/templates/package/snippets/resource_form.html:24 msgid "File" -msgstr "" +msgstr "파일" #: ckan/templates/package/snippets/resource_form.html:28 msgid "eg. January 2011 Gold Prices" @@ -3659,7 +3580,7 @@ msgstr "예) CSV, XML or JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" +msgstr "자동으로 추측됩니다. 원할 경우, 공백으로 남길 수 있습니다 " #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" @@ -3713,33 +3634,33 @@ msgstr "탐색" #: ckan/templates/package/snippets/resource_item.html:36 msgid "More information" -msgstr "" +msgstr "추가 정보" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "삽입" #: ckan/templates/package/snippets/resource_view.html:24 msgid "This resource view is not available at the moment." -msgstr "" +msgstr "리소스 뷰는 현재 사용할 수 없습니다." #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "" +msgstr "임베디드 리소스 뷰" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "" +msgstr "Raw HTML (가공하지 않은 HTML)을 지원하는 CMS나 블로그에 임베디드 코드를 복사 및 붙여넣기 할 수 있습니다." #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "넓이" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "높이" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" @@ -3747,7 +3668,7 @@ msgstr "코드" #: ckan/templates/package/snippets/resource_views_list.html:8 msgid "Resource Preview" -msgstr "" +msgstr "리소스 미리보기" #: ckan/templates/package/snippets/resources_list.html:13 msgid "Data and Resources" @@ -3755,7 +3676,7 @@ msgstr "데이터와 리소스" #: ckan/templates/package/snippets/resources_list.html:29 msgid "This dataset has no data" -msgstr "" +msgstr "데이터셋에 데이터가 없습니다" #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format @@ -3775,173 +3696,40 @@ msgstr "데이터 추가하기" #: ckan/templates/package/snippets/view_form.html:8 msgid "eg. My View" -msgstr "" +msgstr "예. 내 뷰" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "" +msgstr "예. 내 뷰에 대한 정보" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "" +msgstr "필터 추가" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "필터 제거" #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" -msgstr "" +msgstr "필터" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "" +msgstr "뷰는 무엇인가?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "관련된 형식" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "관련된 항목은?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

관련 미디어는 이 데이터와 관련된 앱, 기사, 시각화 또는 아이디어를 포함합니다.

예를 들어, 데이터 전체나 일부를 이용하여 시각화, 그림문자, 바 차트, 또는 데이터를 참조하는 새로운 이야기도 포함될 수 있습니다.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "관련 항목을 삭제하시겠습니까 - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Apps & Ideas" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

%(item_count)s 건의 관련된 항목으로 찾은 %(first)s - %(last)s 보여주기

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s 건의 관련 항목을 찾았습니다

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "제출된 앱이 없습니다." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "애플리케이션은 무엇인가?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "데이터셋과 아이디어를 개발된 애플리케이션이 있습니다." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "필터 결과" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "형식에 의한 필터" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "모두" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "에 의한 정렬" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "기본" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "주요 항목만 보여주기" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "적용" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "관련 아이템 편집하기" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "관련 항목 편집하기" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "관련 항목 편집하기" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "관련 항목을 생성하기" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "관련 항목을 생성하기" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "관련된 항목을 생성하기" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "나와 관련있는 항목" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "이 항목에 대한 정보" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "형식" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "관련 항목을 삭제하시겠습니까?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" +msgstr "뷰는 리소스를 갖고 있는 데이터의 표현이다" #: ckan/templates/revision/diff.html:6 msgid "Differences" -msgstr "" +msgstr "차이점" #: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 #: ckan/templates/revision/diff.html:23 msgid "Revision Differences" -msgstr "" +msgstr "개정이력 차이점" #: ckan/templates/revision/diff.html:44 msgid "Difference" @@ -3949,7 +3737,7 @@ msgstr "차이점" #: ckan/templates/revision/diff.html:54 msgid "No Differences" -msgstr "" +msgstr "차이점이 없음" #: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 #: ckan/templates/revision/list.html:10 @@ -4002,7 +3790,7 @@ msgstr "높이:" #: ckan/templates/snippets/datapusher_status.html:8 msgid "Datapusher status: {status}." -msgstr "" +msgstr "Datapusher 상: {status}." #: ckan/templates/snippets/disqus_trackback.html:2 msgid "Trackback URL" @@ -4010,18 +3798,17 @@ msgstr "Trackback URL" #: ckan/templates/snippets/facet_list.html:80 msgid "Show More {facet_type}" -msgstr "" +msgstr "더 많은 {facet_type} 보여주기" #: ckan/templates/snippets/facet_list.html:83 msgid "Show Only Popular {facet_type}" -msgstr "" +msgstr "인기있는 {facet_type}만 보여주기" #: ckan/templates/snippets/facet_list.html:87 msgid "There are no {facet_type} that match this search" -msgstr "" +msgstr "검색에 일치하는 {facet_type}이 없습니다" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Home" @@ -4030,7 +3817,7 @@ msgid "Language" msgstr "언어" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4062,21 +3849,25 @@ msgstr "이 데이터셋과 관련있는 앱, 아이디어, 새로운 스토리 msgid "Add Item" msgstr "항목 추가하기" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "제출" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "로 정렬" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "필터 결과" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

다른 검색을 시도하세요.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4089,7 +3880,7 @@ msgstr[0] "\"{query}\"로 {number}개 데이터셋을 찾았습니다" #: ckan/templates/snippets/search_result_text.html:16 msgid "No datasets found for \"{query}\"" -msgstr "" +msgstr "\"{query}\"의 데이터셋을 찾을 수 없음" #: ckan/templates/snippets/search_result_text.html:17 msgid "{number} dataset found" @@ -4098,7 +3889,7 @@ msgstr[0] "{number}개 데이터셋을 찾았습니다" #: ckan/templates/snippets/search_result_text.html:18 msgid "No datasets found" -msgstr "" +msgstr "데이터셋을 찾을 수 없음" #: ckan/templates/snippets/search_result_text.html:21 msgid "{number} group found for \"{query}\"" @@ -4107,7 +3898,7 @@ msgstr[0] "\"{query}\"로 {number} 개 그룹을 찾았습니다" #: ckan/templates/snippets/search_result_text.html:22 msgid "No groups found for \"{query}\"" -msgstr "" +msgstr "\"{query}\"의 그룹을 찾을 수 없음" #: ckan/templates/snippets/search_result_text.html:23 msgid "{number} group found" @@ -4116,7 +3907,7 @@ msgstr[0] "{number}개 그룹을 찾았습니다" #: ckan/templates/snippets/search_result_text.html:24 msgid "No groups found" -msgstr "" +msgstr "그룹을 찾을 수 없음" #: ckan/templates/snippets/search_result_text.html:27 msgid "{number} organization found for \"{query}\"" @@ -4125,7 +3916,7 @@ msgstr[0] "\"{query}\"로 {number}개 조직을 찾았습니다" #: ckan/templates/snippets/search_result_text.html:28 msgid "No organizations found for \"{query}\"" -msgstr "" +msgstr "\"{query}\"에 대한 기관을 찾을 수 없음" #: ckan/templates/snippets/search_result_text.html:29 msgid "{number} organization found" @@ -4134,7 +3925,7 @@ msgstr[0] "{number}개 조직을 찾았습니다" #: ckan/templates/snippets/search_result_text.html:30 msgid "No organizations found" -msgstr "" +msgstr "기관을 찾을 수 없음" #: ckan/templates/snippets/social.html:5 msgid "Social" @@ -4145,7 +3936,7 @@ msgid "Subscribe" msgstr "구독하기" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4162,11 +3953,7 @@ msgstr "편집" #: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "대시보드" +msgstr "검색 태그" #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" @@ -4180,16 +3967,16 @@ msgstr "내 데이터셋" #: ckan/templates/user/dashboard.html:21 #: ckan/templates/user/dashboard_organizations.html:12 msgid "My Organizations" -msgstr "" +msgstr "내 기관" #: ckan/templates/user/dashboard.html:22 #: ckan/templates/user/dashboard_groups.html:12 msgid "My Groups" -msgstr "" +msgstr "내 그룹" #: ckan/templates/user/dashboard.html:39 msgid "Activity from items that I'm following" -msgstr "" +msgstr "내가 팔로하는 아이템의 활동" #: ckan/templates/user/dashboard_datasets.html:17 #: ckan/templates/user/read.html:14 @@ -4205,11 +3992,11 @@ msgstr "지금 데이터셋을 생성하시겠습니까?" #: ckan/templates/user/dashboard_groups.html:20 msgid "You are not a member of any groups." -msgstr "" +msgstr "당신은 어떤 그룹의 멤버가 아닙니다." #: ckan/templates/user/dashboard_organizations.html:20 msgid "You are not a member of any organizations." -msgstr "" +msgstr "당신은 어떤 기관의 멤버가 아닙니다." #: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 @@ -4229,40 +4016,31 @@ msgstr "프로파일을 CKAN 사용자가 볼 수 있도록 해 주세요" #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" -msgstr "" +msgstr "상세정보 변경" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "사용자명" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "성명" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "eg. Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "eg. joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "당신에 대한 약간의 정보" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "공지 메일에 구독하기" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" -msgstr "" +msgstr "비밀번호 변경" #: ckan/templates/user/edit_user_form.html:29 #: ckan/templates/user/logout_first.html:12 @@ -4278,15 +4056,15 @@ msgstr "비밀번호 확인하기" #: ckan/templates/user/edit_user_form.html:37 msgid "Are you sure you want to delete this User?" -msgstr "" +msgstr "사용자를 삭제하시겠습니까?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "API 키를 다시 생성하시겠습니까?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "API Key 재생성" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" @@ -4317,7 +4095,7 @@ msgstr "계정 생성하기" #: ckan/templates/user/login.html:42 msgid "Forgotten your password?" -msgstr "" +msgstr "비밀번호를 잊으셨나요?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." @@ -4378,7 +4156,7 @@ msgstr "데이터셋, 그룹, 관심있는 것을 생성하기" #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "사용자명" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" @@ -4440,11 +4218,11 @@ msgstr "API 키" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "비밀번호 초기화" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "요청 초기화" #: ckan/templates/user/request_reset.html:34 msgid "" @@ -4475,33 +4253,33 @@ msgstr "사용자 검색하기" #: ckanext/datapusher/helpers.py:19 msgid "Complete" -msgstr "" +msgstr "완료" #: ckanext/datapusher/helpers.py:20 msgid "Pending" -msgstr "" +msgstr "처리중" #: ckanext/datapusher/helpers.py:21 msgid "Submitting" -msgstr "" +msgstr "제출 중" #: ckanext/datapusher/helpers.py:27 msgid "Not Uploaded Yet" -msgstr "" +msgstr "업로드되지 않음" #: ckanext/datastore/controller.py:31 msgid "DataStore resource not found" -msgstr "" +msgstr "데이터스토어 리소스를 찾을 수 없음" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "데이터가 유효하지 않습니다 (예를 들어, 수치값이 범위를 벗어나거나 텍스트 필드에 입력되었습니다). " -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "리소스 \"{0}\"를 찾을 수 없음." @@ -4509,13 +4287,21 @@ msgstr "리소스 \"{0}\"를 찾을 수 없음." msgid "User {0} not authorized to update resource {1}" msgstr "사용자 {0}는 리소스 {1}를 업데이트할 수 있는 권한이 없습니다" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "페이지당 데이터셋" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "테스트 conf" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "커스텀 필드 오름차순" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "커스텀 필드 내림차순" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 @@ -4533,7 +4319,11 @@ msgstr "국가 코드" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" -msgstr "" +msgstr "커스텀 리소스 텍스트" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "번역되지 않은 문자열입니다" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 @@ -4542,134 +4332,93 @@ msgstr "이 그룹은 명세가 없습니다" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "CKAN의 데이터 미리보기 도구는 강력한 특징을 갖고 있습니다." #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "이미지 url" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +msgstr "예. http://example.com/image.jpg (리소스 url이 공백일 경우)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" -msgstr "" +msgstr "데이터 탐색기" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "표" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "그래프" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" +msgstr "지도" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid⏎\n⏎\nPermission is hereby granted, free of charge, to any person obtaining⏎\na copy of this software and associated documentation files (the⏎\n\"Software\"), to deal in the Software without restriction, including⏎\nwithout limitation the rights to use, copy, modify, merge, publish,⏎\ndistribute, sublicense, and/or sell copies of the Software, and to⏎\npermit persons to whom the Software is furnished to do so, subject to⏎\nthe following conditions:⏎\n⏎\nThe above copyright notice and this permission notice shall be⏎\nincluded in all copies or substantial portions of the Software.⏎\n⏎\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,⏎\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF⏎\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND⏎\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE⏎\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION⏎\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION⏎\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "This compiled version of SlickGrid has been obtained with the Google Closure⏎\nCompiler, using the following command:⏎\n⏎\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js⏎\n⏎\nThere are two other files required for the SlickGrid view to work properly:⏎\n⏎\n* jquery-ui-1.8.16.custom.min.js ⏎\n* jquery.event.drag-2.0.min.js⏎\n⏎\nThese are included in the Recline source, but have not been included in the⏎\nbuilt file to make easier to handle compatibility problems.⏎\n⏎\nPlease check SlickGrid license in the included MIT-LICENSE.txt file.⏎\n⏎\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "보기 로딩 오류" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "Row offset" -msgstr "" +msgstr "행 오프셋" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "예: 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "행의 수" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "예: 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "그래프 형식" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "그룹 (축 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "시리즈 (축 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "필드 형식" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" -msgstr "" +msgstr "위도 필드" #: ckanext/reclineview/theme/templates/recline_map_form.html:8 msgid "Longitude field" -msgstr "" +msgstr "경도 필드" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "GeoJSON 필드" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" -msgstr "" +msgstr "Auto zoom to features" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "클러스터 제작자" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "전체 데이터셋 수" @@ -4697,33 +4446,27 @@ msgstr "새로운 데이터셋" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "상위 평점의 데이터셋" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "평균 평점" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "평점의 수" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "평점 없음" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "가장 많이 편집된 데이터셋" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "편집 횟수" @@ -4733,12 +4476,10 @@ msgstr "편집된 데이터셋이 없음" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "가장 큰 그룹" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "데이터셋의 수" @@ -4748,7 +4489,6 @@ msgstr "그룹이 없음" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "상위 태그" @@ -4763,8 +4503,8 @@ msgstr "데이터셋의 수" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "가장 많은 데이터셋을 보유한 사용자" +msgid "Users Creating Most Datasets" +msgstr "가장 많은 데이터셋을 생성한 사용자" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4774,49 +4514,23 @@ msgstr "통계 메뉴" msgid "Total Number of Datasets" msgstr "데이터셋의 전체 개수" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "통계" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "일주일내 데이터셋의 개정" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "가장 많은 데이터를 보유한 사용자" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "마지막으로 업데이트된 페이지" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "리더보드-통계" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "데이터셋 리더보드" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "텍스트" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "데이터셋의 속성을 선택하고, 해당 영역에서 어떤 카테고리가 가장 많은 데이터셋을 갖는지 탐색. 예. 태그, 그룹, 라이센스, res_format, 국가" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "영역 선택" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "오류 발생: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "웹사이트" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "웹 페이지 url" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "예, http://example.com (공백인 경우 리소스 URL을 사용)" diff --git a/ckan/i18n/lo/LC_MESSAGES/ckan.mo b/ckan/i18n/lo/LC_MESSAGES/ckan.mo deleted file mode 100644 index 23393d6c1cc..00000000000 Binary files a/ckan/i18n/lo/LC_MESSAGES/ckan.mo and /dev/null differ diff --git a/ckan/i18n/lo/LC_MESSAGES/ckan.po b/ckan/i18n/lo/LC_MESSAGES/ckan.po deleted file mode 100644 index a03ac869d32..00000000000 --- a/ckan/i18n/lo/LC_MESSAGES/ckan.po +++ /dev/null @@ -1,4821 +0,0 @@ -# Translations template for ckan. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the ckan project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: CKAN\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Lao (http://www.transifex.com/projects/p/ckan/language/lo/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: lo\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ckan/new_authz.py:178 -#, python-format -msgid "Authorization function not found: %s" -msgstr "" - -#: ckan/new_authz.py:190 -msgid "Admin" -msgstr "" - -#: ckan/new_authz.py:194 -msgid "Editor" -msgstr "" - -#: ckan/new_authz.py:198 -msgid "Member" -msgstr "" - -#: ckan/controllers/admin.py:27 -msgid "Need to be system administrator to administer" -msgstr "" - -#: ckan/controllers/admin.py:43 -msgid "Site Title" -msgstr "" - -#: ckan/controllers/admin.py:44 -msgid "Style" -msgstr "" - -#: ckan/controllers/admin.py:45 -msgid "Site Tag Line" -msgstr "" - -#: ckan/controllers/admin.py:46 -msgid "Site Tag Logo" -msgstr "" - -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 -#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 -#: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 -#: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 -#: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 -msgid "About" -msgstr "" - -#: ckan/controllers/admin.py:47 -msgid "About page text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Intro Text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Text on home page" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Custom CSS" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Customisable css inserted into the page header" -msgstr "" - -#: ckan/controllers/admin.py:50 -msgid "Homepage" -msgstr "" - -#: ckan/controllers/admin.py:131 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" -msgstr "" - -#: ckan/controllers/admin.py:153 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "" - -#: ckan/controllers/admin.py:155 -msgid "Purge complete" -msgstr "" - -#: ckan/controllers/admin.py:157 -msgid "Action not implemented." -msgstr "" - -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 -#: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 -msgid "Not authorized to see this page" -msgstr "" - -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 -msgid "Access denied" -msgstr "" - -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 -#: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 -msgid "Not found" -msgstr "" - -#: ckan/controllers/api.py:130 -msgid "Bad request" -msgstr "" - -#: ckan/controllers/api.py:164 -#, python-format -msgid "Action name not known: %s" -msgstr "" - -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 -#, python-format -msgid "JSON Error: %s" -msgstr "" - -#: ckan/controllers/api.py:190 -#, python-format -msgid "Bad request data: %s" -msgstr "" - -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:318 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:357 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:389 -msgid "Unable to add package to search index" -msgstr "" - -#: ckan/controllers/api.py:419 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:442 -msgid "Unable to update search index" -msgstr "" - -#: ckan/controllers/api.py:466 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:489 -msgid "No revision specified" -msgstr "" - -#: ckan/controllers/api.py:493 -#, python-format -msgid "There is no revision with id: %s" -msgstr "" - -#: ckan/controllers/api.py:503 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" - -#: ckan/controllers/api.py:513 -#, python-format -msgid "Could not read parameters: %r" -msgstr "" - -#: ckan/controllers/api.py:574 -#, python-format -msgid "Bad search option: %s" -msgstr "" - -#: ckan/controllers/api.py:577 -#, python-format -msgid "Unknown register: %s" -msgstr "" - -#: ckan/controllers/api.py:586 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "" - -#: ckan/controllers/api.py:596 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" - -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 -msgid "Group not found" -msgstr "" - -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 -msgid "Organization not found" -msgstr "" - -#: ckan/controllers/group.py:172 -msgid "Incorrect group type" -msgstr "" - -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 -#, python-format -msgid "Unauthorized to read group %s" -msgstr "" - -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "" - -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 -#: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 -#: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 -#: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 -#: ckan/templates/group/read_base.html:6 -#: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "" - -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "" - -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 -msgid "Formats" -msgstr "" - -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 -msgid "Licenses" -msgstr "" - -#: ckan/controllers/group.py:429 -msgid "Not authorized to perform bulk update" -msgstr "" - -#: ckan/controllers/group.py:446 -msgid "Unauthorized to create a group" -msgstr "" - -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "" - -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 -msgid "Integrity Error" -msgstr "" - -#: ckan/controllers/group.py:586 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "" - -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "" - -#: ckan/controllers/group.py:609 -msgid "Organization has been deleted." -msgstr "" - -#: ckan/controllers/group.py:611 -msgid "Group has been deleted." -msgstr "" - -#: ckan/controllers/group.py:677 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "" - -#: ckan/controllers/group.py:694 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "" - -#: ckan/controllers/group.py:700 -msgid "Group member has been deleted." -msgstr "" - -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 -msgid "Select two revisions before doing the comparison." -msgstr "" - -#: ckan/controllers/group.py:741 -#, python-format -msgid "User %r not authorized to edit %r" -msgstr "" - -#: ckan/controllers/group.py:748 -msgid "CKAN Group Revision History" -msgstr "" - -#: ckan/controllers/group.py:751 -msgid "Recent changes to CKAN Group: " -msgstr "" - -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 -msgid "Log message: " -msgstr "" - -#: ckan/controllers/group.py:798 -msgid "Unauthorized to read group {group_id}" -msgstr "" - -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 -msgid "You are now following {0}" -msgstr "" - -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 -msgid "You are no longer following {0}" -msgstr "" - -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "" - -#: ckan/controllers/home.py:37 -msgid "This site is currently off-line. Database is not initialised." -msgstr "" - -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" - -#: ckan/controllers/home.py:105 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "" - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 -msgid "Dataset not found" -msgstr "" - -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "" - -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 -#, python-format -msgid "Invalid revision format: %r" -msgstr "" - -#: ckan/controllers/package.py:427 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" - -#: ckan/controllers/package.py:472 -msgid "CKAN Dataset Revision History" -msgstr "" - -#: ckan/controllers/package.py:475 -msgid "Recent changes to CKAN Dataset: " -msgstr "" - -#: ckan/controllers/package.py:532 -msgid "Unauthorized to create a package" -msgstr "" - -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 -msgid "Unauthorized to edit this resource" -msgstr "" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 -msgid "Resource not found" -msgstr "" - -#: ckan/controllers/package.py:682 -msgid "Unauthorized to update dataset" -msgstr "" - -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 -msgid "The dataset {id} could not be found." -msgstr "" - -#: ckan/controllers/package.py:688 -msgid "You must add at least one data resource" -msgstr "" - -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 -msgid "Error" -msgstr "" - -#: ckan/controllers/package.py:714 -msgid "Unauthorized to create a resource" -msgstr "" - -#: ckan/controllers/package.py:750 -msgid "Unauthorized to create a resource for this package" -msgstr "" - -#: ckan/controllers/package.py:973 -msgid "Unable to add package to search index." -msgstr "" - -#: ckan/controllers/package.py:1020 -msgid "Unable to update search index." -msgstr "" - -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "" - -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1088 -msgid "Resource has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1093 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "" - -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "" - -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 -msgid "Resource view not found" -msgstr "" - -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "" - -#: ckan/controllers/package.py:1193 -msgid "Resource data not found" -msgstr "" - -#: ckan/controllers/package.py:1201 -msgid "No download is available" -msgstr "" - -#: ckan/controllers/package.py:1523 -msgid "Unauthorized to edit resource" -msgstr "" - -#: ckan/controllers/package.py:1541 -msgid "View not found" -msgstr "" - -#: ckan/controllers/package.py:1543 -#, python-format -msgid "Unauthorized to view View %s" -msgstr "" - -#: ckan/controllers/package.py:1549 -msgid "View Type Not found" -msgstr "" - -#: ckan/controllers/package.py:1609 -msgid "Bad resource view data" -msgstr "" - -#: ckan/controllers/package.py:1618 -#, python-format -msgid "Unauthorized to read resource view %s" -msgstr "" - -#: ckan/controllers/package.py:1621 -msgid "Resource view not supplied" -msgstr "" - -#: ckan/controllers/package.py:1650 -msgid "No preview has been defined." -msgstr "" - -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - -#: ckan/controllers/revision.py:42 -msgid "CKAN Repository Revision History" -msgstr "" - -#: ckan/controllers/revision.py:44 -msgid "Recent changes to the CKAN repository." -msgstr "" - -#: ckan/controllers/revision.py:108 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "" - -#: ckan/controllers/revision.py:188 -msgid "Revision updated" -msgstr "" - -#: ckan/controllers/tag.py:56 -msgid "Other" -msgstr "" - -#: ckan/controllers/tag.py:70 -msgid "Tag not found" -msgstr "" - -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 -msgid "User not found" -msgstr "" - -#: ckan/controllers/user.py:149 -msgid "Unauthorized to register as a user." -msgstr "" - -#: ckan/controllers/user.py:166 -msgid "Unauthorized to create a user" -msgstr "" - -#: ckan/controllers/user.py:197 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" - -#: ckan/controllers/user.py:211 ckan/controllers/user.py:270 -msgid "No user specified" -msgstr "" - -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "" - -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 -msgid "Profile updated" -msgstr "" - -#: ckan/controllers/user.py:232 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "" - -#: ckan/controllers/user.py:238 -msgid "Bad Captcha. Please try again." -msgstr "" - -#: ckan/controllers/user.py:255 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "" - -#: ckan/controllers/user.py:276 -msgid "Unauthorized to edit a user." -msgstr "" - -#: ckan/controllers/user.py:302 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "" - -#: ckan/controllers/user.py:383 -msgid "Login failed. Bad username or password." -msgstr "" - -#: ckan/controllers/user.py:417 -msgid "Unauthorized to request reset password." -msgstr "" - -#: ckan/controllers/user.py:446 -#, python-format -msgid "\"%s\" matched several users" -msgstr "" - -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 -#, python-format -msgid "No such user: %s" -msgstr "" - -#: ckan/controllers/user.py:455 -msgid "Please check your inbox for a reset code." -msgstr "" - -#: ckan/controllers/user.py:459 -#, python-format -msgid "Could not send reset link: %s" -msgstr "" - -#: ckan/controllers/user.py:474 -msgid "Unauthorized to reset password." -msgstr "" - -#: ckan/controllers/user.py:486 -msgid "Invalid reset key. Please try again." -msgstr "" - -#: ckan/controllers/user.py:498 -msgid "Your password has been reset." -msgstr "" - -#: ckan/controllers/user.py:519 -msgid "Your password must be 4 characters or longer." -msgstr "" - -#: ckan/controllers/user.py:522 -msgid "The passwords you entered do not match." -msgstr "" - -#: ckan/controllers/user.py:525 -msgid "You must provide a password" -msgstr "" - -#: ckan/controllers/user.py:589 -msgid "Follow item not found" -msgstr "" - -#: ckan/controllers/user.py:593 -msgid "{0} not found" -msgstr "" - -#: ckan/controllers/user.py:595 -msgid "Unauthorized to read {0} {1}" -msgstr "" - -#: ckan/controllers/user.py:610 -msgid "Everything" -msgstr "" - -#: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 -msgid "Missing Value" -msgstr "" - -#: ckan/controllers/util.py:21 -msgid "Redirecting to external site is not allowed." -msgstr "" - -#: ckan/lib/activity_streams.py:64 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:67 -msgid "{actor} updated the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:70 -msgid "{actor} updated the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:73 -msgid "{actor} updated the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:76 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:79 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:82 -msgid "{actor} updated their profile" -msgstr "" - -#: ckan/lib/activity_streams.py:86 -msgid "" -"{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:89 -msgid "{actor} updated the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:92 -msgid "{actor} deleted the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:95 -msgid "{actor} deleted the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:98 -msgid "{actor} deleted the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:101 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:104 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:108 -msgid "{actor} created the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:111 -msgid "{actor} created the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:114 -msgid "{actor} created the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:117 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:120 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:123 -msgid "{actor} signed up" -msgstr "" - -#: ckan/lib/activity_streams.py:126 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:129 -msgid "{actor} deleted the related item {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:132 -msgid "{actor} started following {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:135 -msgid "{actor} started following {user}" -msgstr "" - -#: ckan/lib/activity_streams.py:138 -msgid "{actor} started following {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:142 -msgid "" -"{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:145 -msgid "{actor} added the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "" - -#: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" - -#: ckan/lib/formatters.py:17 -msgid "January" -msgstr "" - -#: ckan/lib/formatters.py:21 -msgid "February" -msgstr "" - -#: ckan/lib/formatters.py:25 -msgid "March" -msgstr "" - -#: ckan/lib/formatters.py:29 -msgid "April" -msgstr "" - -#: ckan/lib/formatters.py:33 -msgid "May" -msgstr "" - -#: ckan/lib/formatters.py:37 -msgid "June" -msgstr "" - -#: ckan/lib/formatters.py:41 -msgid "July" -msgstr "" - -#: ckan/lib/formatters.py:45 -msgid "August" -msgstr "" - -#: ckan/lib/formatters.py:49 -msgid "September" -msgstr "" - -#: ckan/lib/formatters.py:53 -msgid "October" -msgstr "" - -#: ckan/lib/formatters.py:57 -msgid "November" -msgstr "" - -#: ckan/lib/formatters.py:61 -msgid "December" -msgstr "" - -#: ckan/lib/formatters.py:109 -msgid "Just now" -msgstr "" - -#: ckan/lib/formatters.py:111 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:114 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:120 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:123 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:125 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" - -#: ckan/lib/formatters.py:142 -msgid "{month} {day}, {year}" -msgstr "" - -#: ckan/lib/formatters.py:158 -msgid "{bytes} bytes" -msgstr "" - -#: ckan/lib/formatters.py:160 -msgid "{kibibytes} KiB" -msgstr "" - -#: ckan/lib/formatters.py:162 -msgid "{mebibytes} MiB" -msgstr "" - -#: ckan/lib/formatters.py:164 -msgid "{gibibytes} GiB" -msgstr "" - -#: ckan/lib/formatters.py:166 -msgid "{tebibytes} TiB" -msgstr "" - -#: ckan/lib/formatters.py:178 -msgid "{n}" -msgstr "" - -#: ckan/lib/formatters.py:180 -msgid "{k}k" -msgstr "" - -#: ckan/lib/formatters.py:182 -msgid "{m}M" -msgstr "" - -#: ckan/lib/formatters.py:184 -msgid "{g}G" -msgstr "" - -#: ckan/lib/formatters.py:186 -msgid "{t}T" -msgstr "" - -#: ckan/lib/formatters.py:188 -msgid "{p}P" -msgstr "" - -#: ckan/lib/formatters.py:190 -msgid "{e}E" -msgstr "" - -#: ckan/lib/formatters.py:192 -msgid "{z}Z" -msgstr "" - -#: ckan/lib/formatters.py:194 -msgid "{y}Y" -msgstr "" - -#: ckan/lib/helpers.py:858 -msgid "Update your avatar at gravatar.com" -msgstr "" - -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 -msgid "Unknown" -msgstr "" - -#: ckan/lib/helpers.py:1117 -msgid "Unnamed resource" -msgstr "" - -#: ckan/lib/helpers.py:1164 -msgid "Created new dataset." -msgstr "" - -#: ckan/lib/helpers.py:1166 -msgid "Edited resources." -msgstr "" - -#: ckan/lib/helpers.py:1168 -msgid "Edited settings." -msgstr "" - -#: ckan/lib/helpers.py:1431 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" - -#: ckan/lib/helpers.py:1433 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" - -#: ckan/lib/mailer.py:25 -#, python-format -msgid "Dear %s," -msgstr "" - -#: ckan/lib/mailer.py:38 -#, python-format -msgid "%s <%s>" -msgstr "" - -#: ckan/lib/mailer.py:99 -msgid "No recipient email address available!" -msgstr "" - -#: ckan/lib/mailer.py:104 -msgid "" -"You have requested your password on {site_title} to be reset.\n" -"\n" -"Please click the following link to confirm this request:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:119 -msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" -"\n" -"To accept this invite, please reset your password at:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "" - -#: ckan/lib/mailer.py:151 -msgid "Invite for {site_title}" -msgstr "" - -#: ckan/lib/navl/dictization_functions.py:11 -#: ckan/lib/navl/dictization_functions.py:13 -#: ckan/lib/navl/dictization_functions.py:15 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:19 -#: ckan/lib/navl/dictization_functions.py:21 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 -#: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 -msgid "Missing value" -msgstr "" - -#: ckan/lib/navl/validators.py:64 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "" - -#: ckan/lib/navl/validators.py:116 -msgid "Please enter an integer value" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -msgid "Package resource(s) invalid" -msgstr "" - -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 -msgid "Extras" -msgstr "" - -#: ckan/logic/converters.py:72 ckan/logic/converters.py:87 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" - -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "" - -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Dataset" -msgstr "" - -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Group" -msgstr "" - -#: ckan/logic/converters.py:178 -msgid "Could not parse as valid JSON" -msgstr "" - -#: ckan/logic/validators.py:30 ckan/logic/validators.py:39 -msgid "A organization must be supplied" -msgstr "" - -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 -msgid "Organization does not exist" -msgstr "" - -#: ckan/logic/validators.py:53 -msgid "You cannot add a dataset to this organization" -msgstr "" - -#: ckan/logic/validators.py:93 -msgid "Invalid integer" -msgstr "" - -#: ckan/logic/validators.py:98 -msgid "Must be a natural number" -msgstr "" - -#: ckan/logic/validators.py:104 -msgid "Must be a postive integer" -msgstr "" - -#: ckan/logic/validators.py:122 -msgid "Date format incorrect" -msgstr "" - -#: ckan/logic/validators.py:131 -msgid "No links are allowed in the log_message." -msgstr "" - -#: ckan/logic/validators.py:151 -msgid "Dataset id already exists" -msgstr "" - -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 -msgid "Resource" -msgstr "" - -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 -#: ckan/templates/snippets/related.html:2 -msgid "Related" -msgstr "" - -#: ckan/logic/validators.py:260 -msgid "That group name or ID does not exist." -msgstr "" - -#: ckan/logic/validators.py:274 -msgid "Activity type" -msgstr "" - -#: ckan/logic/validators.py:349 -msgid "Names must be strings" -msgstr "" - -#: ckan/logic/validators.py:353 -msgid "That name cannot be used" -msgstr "" - -#: ckan/logic/validators.py:356 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:361 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" - -#: ckan/logic/validators.py:379 -msgid "That URL is already in use." -msgstr "" - -#: ckan/logic/validators.py:384 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:388 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "" - -#: ckan/logic/validators.py:394 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:412 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "" - -#: ckan/logic/validators.py:428 -msgid "Group name already exists in database" -msgstr "" - -#: ckan/logic/validators.py:434 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:438 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" - -#: ckan/logic/validators.py:446 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" - -#: ckan/logic/validators.py:454 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "" - -#: ckan/logic/validators.py:563 -msgid "User names must be strings" -msgstr "" - -#: ckan/logic/validators.py:579 -msgid "That login name is not available." -msgstr "" - -#: ckan/logic/validators.py:588 -msgid "Please enter both passwords" -msgstr "" - -#: ckan/logic/validators.py:596 -msgid "Passwords must be strings" -msgstr "" - -#: ckan/logic/validators.py:600 -msgid "Your password must be 4 characters or longer" -msgstr "" - -#: ckan/logic/validators.py:608 -msgid "The passwords you entered do not match" -msgstr "" - -#: ckan/logic/validators.py:624 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" - -#: ckan/logic/validators.py:633 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:641 -msgid "That vocabulary name is already in use." -msgstr "" - -#: ckan/logic/validators.py:647 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" - -#: ckan/logic/validators.py:656 -msgid "Tag vocabulary was not found." -msgstr "" - -#: ckan/logic/validators.py:669 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:675 -msgid "No tag name" -msgstr "" - -#: ckan/logic/validators.py:688 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:711 -msgid "Please provide a valid URL" -msgstr "" - -#: ckan/logic/validators.py:725 -msgid "role does not exist." -msgstr "" - -#: ckan/logic/validators.py:754 -msgid "Datasets with no organization can't be private." -msgstr "" - -#: ckan/logic/validators.py:760 -msgid "Not a list" -msgstr "" - -#: ckan/logic/validators.py:763 -msgid "Not a string" -msgstr "" - -#: ckan/logic/validators.py:795 -msgid "This parent would create a loop in the hierarchy" -msgstr "" - -#: ckan/logic/validators.py:805 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" - -#: ckan/logic/validators.py:816 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" - -#: ckan/logic/validators.py:819 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" - -#: ckan/logic/validators.py:833 -msgid "There is a schema field with the same name" -msgstr "" - -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 -#, python-format -msgid "REST API: Create object %s" -msgstr "" - -#: ckan/logic/action/create.py:517 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/create.py:558 -#, python-format -msgid "REST API: Create member object %s" -msgstr "" - -#: ckan/logic/action/create.py:772 -msgid "Trying to create an organization as a group" -msgstr "" - -#: ckan/logic/action/create.py:859 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" - -#: ckan/logic/action/create.py:862 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "" - -#: ckan/logic/action/create.py:867 -msgid "Rating must be an integer value." -msgstr "" - -#: ckan/logic/action/create.py:871 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "" - -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 -msgid "You must be logged in to follow users" -msgstr "" - -#: ckan/logic/action/create.py:1236 -msgid "You cannot follow yourself" -msgstr "" - -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 -msgid "You are already following {0}" -msgstr "" - -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 -msgid "You must be logged in to follow a dataset." -msgstr "" - -#: ckan/logic/action/create.py:1335 -msgid "User {username} does not exist." -msgstr "" - -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 -msgid "You must be logged in to follow a group." -msgstr "" - -#: ckan/logic/action/delete.py:68 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "" - -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 -#, python-format -msgid "REST API: Delete %s" -msgstr "" - -#: ckan/logic/action/delete.py:270 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "" - -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 -msgid "id not in data" -msgstr "" - -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:501 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 -msgid "You must be logged in to unfollow something." -msgstr "" - -#: ckan/logic/action/delete.py:542 -msgid "You are not following {0}." -msgstr "" - -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 -msgid "Resource was not found." -msgstr "" - -#: ckan/logic/action/get.py:1851 -msgid "Do not specify if using \"query\" parameter" -msgstr "" - -#: ckan/logic/action/get.py:1860 -msgid "Must be : pair(s)" -msgstr "" - -#: ckan/logic/action/get.py:1892 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" - -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 -msgid "Item was not found." -msgstr "" - -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 -msgid "Package was not found." -msgstr "" - -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 -#, python-format -msgid "REST API: Update object %s" -msgstr "" - -#: ckan/logic/action/update.py:437 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/update.py:789 -msgid "TaskStatus was not found." -msgstr "" - -#: ckan/logic/action/update.py:1180 -msgid "Organization was not found." -msgstr "" - -#: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 -#, python-format -msgid "User %s not authorized to create packages" -msgstr "" - -#: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "" - -#: ckan/logic/auth/create.py:36 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" - -#: ckan/logic/auth/create.py:58 -msgid "You must be a sysadmin to create a featured related item" -msgstr "" - -#: ckan/logic/auth/create.py:62 -msgid "You must be logged in to add a related item" -msgstr "" - -#: ckan/logic/auth/create.py:77 -msgid "No dataset id provided, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 -#: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 -msgid "No package found for this resource, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:92 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" - -#: ckan/logic/auth/create.py:115 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "" - -#: ckan/logic/auth/create.py:126 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "" - -#: ckan/logic/auth/create.py:136 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "" - -#: ckan/logic/auth/create.py:152 -msgid "User {user} not authorized to create users via the API" -msgstr "" - -#: ckan/logic/auth/create.py:155 -msgid "Not authorized to create users" -msgstr "" - -#: ckan/logic/auth/create.py:198 -msgid "Group was not found." -msgstr "" - -#: ckan/logic/auth/create.py:218 -msgid "Valid API key needed to create a package" -msgstr "" - -#: ckan/logic/auth/create.py:226 -msgid "Valid API key needed to create a group" -msgstr "" - -#: ckan/logic/auth/create.py:246 -#, python-format -msgid "User %s not authorized to add members" -msgstr "" - -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:34 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "" - -#: ckan/logic/auth/delete.py:50 -msgid "Resource view not found, cannot check auth." -msgstr "" - -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 -msgid "Only the owner can delete a related item" -msgstr "" - -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "" - -#: ckan/logic/auth/delete.py:95 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "" - -#: ckan/logic/auth/delete.py:99 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:116 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "" - -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "" - -#: ckan/logic/auth/delete.py:133 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "" - -#: ckan/logic/auth/get.py:97 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "" - -#: ckan/logic/auth/get.py:119 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" - -#: ckan/logic/auth/get.py:141 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "" - -#: ckan/logic/auth/get.py:166 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" - -#: ckan/logic/auth/get.py:234 -msgid "You must be logged in to access your dashboard." -msgstr "" - -#: ckan/logic/auth/update.py:37 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "" - -#: ckan/logic/auth/update.py:69 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "" - -#: ckan/logic/auth/update.py:98 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "" - -#: ckan/logic/auth/update.py:126 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "" - -#: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 -msgid "Only the owner can update a related item" -msgstr "" - -#: ckan/logic/auth/update.py:148 -msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" - -#: ckan/logic/auth/update.py:165 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:182 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:209 -msgid "Have to be logged in to edit user" -msgstr "" - -#: ckan/logic/auth/update.py:217 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "" - -#: ckan/logic/auth/update.py:228 -msgid "User {0} not authorized to update user {1}" -msgstr "" - -#: ckan/logic/auth/update.py:236 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "" - -#: ckan/logic/auth/update.py:245 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "" - -#: ckan/logic/auth/update.py:259 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" - -#: ckan/logic/auth/update.py:281 -msgid "Valid API key needed to edit a package" -msgstr "" - -#: ckan/logic/auth/update.py:291 -msgid "Valid API key needed to edit a group" -msgstr "" - -#: ckan/model/license.py:177 -msgid "License not specified" -msgstr "" - -#: ckan/model/license.py:187 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" - -#: ckan/model/license.py:197 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" - -#: ckan/model/license.py:207 -msgid "Open Data Commons Attribution License" -msgstr "" - -#: ckan/model/license.py:218 -msgid "Creative Commons CCZero" -msgstr "" - -#: ckan/model/license.py:227 -msgid "Creative Commons Attribution" -msgstr "" - -#: ckan/model/license.py:237 -msgid "Creative Commons Attribution Share-Alike" -msgstr "" - -#: ckan/model/license.py:246 -msgid "GNU Free Documentation License" -msgstr "" - -#: ckan/model/license.py:256 -msgid "Other (Open)" -msgstr "" - -#: ckan/model/license.py:266 -msgid "Other (Public Domain)" -msgstr "" - -#: ckan/model/license.py:276 -msgid "Other (Attribution)" -msgstr "" - -#: ckan/model/license.py:288 -msgid "UK Open Government Licence (OGL)" -msgstr "" - -#: ckan/model/license.py:296 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "" - -#: ckan/model/license.py:304 -msgid "Other (Non-Commercial)" -msgstr "" - -#: ckan/model/license.py:312 -msgid "Other (Not Open)" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "depends on %s" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "is a dependency of %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "derives from %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "has derivation %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "links to %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is linked from %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a child of %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a parent of %s" -msgstr "" - -#: ckan/model/package_relationship.py:59 -#, python-format -msgid "has sibling %s" -msgstr "" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:12 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "" - -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:14 -#: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 -msgid "Cancel" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:15 -msgid "Upload" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Link" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:17 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 -msgid "Remove" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 -msgid "Image" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:19 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:20 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:25 -msgid "show more" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:26 -msgid "show less" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 -msgid "URL" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 -msgid "Edit" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "" - -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "" - -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "" - -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "" - -#: ckan/templates/footer.html:16 -msgid "Open Knowledge Foundation" -msgstr "" - -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" - -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "" - -#: ckan/templates/header.html:18 -msgid "View profile" -msgstr "" - -#: ckan/templates/header.html:25 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" - -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "" - -#: ckan/templates/header.html:40 -msgid "Log out" -msgstr "" - -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "" - -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "" - -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "" - -#: ckan/templates/header.html:112 -msgid "Search Datasets" -msgstr "" - -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 -#: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 -msgid "Search" -msgstr "" - -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "" - -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "" - -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "" - -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "" - -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "" - -#: ckan/templates/admin/config.html:11 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "" - -#: ckan/templates/admin/config.html:12 -msgid "Reset" -msgstr "" - -#: ckan/templates/admin/config.html:13 -msgid "Update Config" -msgstr "" - -#: ckan/templates/admin/config.html:22 -msgid "CKAN config options" -msgstr "" - -#: ckan/templates/admin/config.html:29 -#, python-format -msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " -"Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" -"

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" -msgstr "" - -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "" - -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "" - -#: ckan/templates/admin/index.html:20 -#, python-format -msgid "" -"

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" -msgstr "" - -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" - -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:12 -#, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "" - -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "" - -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "" - -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "" - -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "" - -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "" - -#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 -#: ckan/templates/organization/admins.html:3 -#: ckan/templates/organization/admins.html:6 -msgid "Administrators" -msgstr "" - -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "" - -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 -msgid "Confirm Delete" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "" - -#: ckan/templates/group/confirm_delete_member.html:11 -#: ckan/templates/organization/confirm_delete_member.html:11 -msgid "Are you sure you want to delete member - {name}?" -msgstr "" - -#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:11 -#: ckan/templates/group/read_base.html:12 -#: ckan/templates/organization/edit_base.html:11 -#: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "" - -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "" - -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 -#: ckan/templates/organization/edit_base.html:24 -#: ckan/templates/organization/members.html:3 -msgid "Members" -msgstr "" - -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "" - -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "" - -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "" - -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "" - -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -msgid "Edit Member" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "" - -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "" - -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "" - -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "" - -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" - -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "" - -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "" - -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:38 -msgid "Delete" -msgstr "" - -#: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 -msgid "Save" -msgstr "" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "" - -#: ckan/templates/group/member_new.html:81 -msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " -"datasets from groups

" -msgstr "" - -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "" - -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 -msgid "Description" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:8 -msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " -msgstr "" - -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "" - -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "" - -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "" - -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "" - -#: ckan/templates/home/snippets/about_text.html:1 -msgid "" -"

CKAN is the world’s leading open-source data portal platform.

" -"

CKAN is a complete out-of-the-box software solution that makes data " -"accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " -"government portals, as well as city and municipal sites in the US, UK, " -"Argentina, Finland and elsewhere.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features " -"overview: http://ckan.org/features/

" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:10 -msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "" - -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" - -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" - -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "dataset" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "datasets" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organization" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organizations" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "group" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "" - -#: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 -msgid "The form contains invalid entries:" -msgstr "" - -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "" - -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "" - -#: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 -msgid "Image URL" -msgstr "" - -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "" - -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "" - -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "" - -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" -msgstr "" - -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "" - -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "" - -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "" - -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "" - -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

Admin: Can add/edit and delete datasets, as well as " -"manage organization members.

Editor: Can add and " -"edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" -msgstr "" - -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "" - -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "" - -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:7 -msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" -msgstr "" - -#: ckan/templates/organization/snippets/helper.html:8 -msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "" - -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "" - -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "" - -#: ckan/templates/package/base_form_page.html:25 -msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " -msgstr "" - -#: ckan/templates/package/confirm_delete.html:11 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" - -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "" - -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "" - -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "" - -#: ckan/templates/package/edit_view.html:3 -#: ckan/templates/package/edit_view.html:4 -#: ckan/templates/package/edit_view.html:8 -#: ckan/templates/package/edit_view.html:12 -msgid "Edit view" -msgstr "" - -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "" - -#: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 -msgid "Update" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "" - -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "" - -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "" - -#: ckan/templates/package/new_view.html:3 -#: ckan/templates/package/new_view.html:4 -#: ckan/templates/package/new_view.html:8 -#: ckan/templates/package/new_view.html:12 -msgid "Add view" -msgstr "" - -#: ckan/templates/package/new_view.html:19 -msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " -msgstr "" - -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "" - -#: ckan/templates/package/read_base.html:38 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" - -#: ckan/templates/package/related_list.html:7 -msgid "Related Media for {dataset}" -msgstr "" - -#: ckan/templates/package/related_list.html:12 -msgid "No related items" -msgstr "" - -#: ckan/templates/package/related_list.html:17 -msgid "Add Related Item" -msgstr "" - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:45 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:49 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "" - -#: ckan/templates/package/resource_data.html:53 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:59 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:71 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:78 -msgid "End of log" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "" - -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "" - -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "" - -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "" - -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "" - -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" - -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" - -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" - -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" - -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "" - -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "" - -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "" - -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "" - -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 -msgid "Created" -msgstr "" - -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "" - -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "" - -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" - -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" - -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "" - -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

This dataset has no data, why not " -"add some?

" -msgstr "" - -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "" - -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "" - -#: ckan/templates/package/search.html:56 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" - -#: ckan/templates/package/search.html:60 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " -msgstr "" - -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:37 -#: ckan/templates/package/snippets/additional_info.html:42 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -msgid "Maintainer" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" - -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 -msgid "Title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:40 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:69 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:73 -msgid "No organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:88 -msgid "Visibility" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:91 -msgid "Public" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:110 -msgid "Active" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:28 -msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -#: ckan/templates/user/new_user_form.html:6 -msgid "Joe Bloggs" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -#: ckan/templates/user/new_user_form.html:7 -msgid "joe@example.com" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "" - -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "File" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:10 -msgid "Embed" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "" - -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "" - -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:30 -#: ckan/templates/package/snippets/stages.html:34 -#: ckan/templates/package/snippets/stages.html:36 -msgid "Add data" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "" - -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "" - -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "" - -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "" - -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "" - -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "" - -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "" - -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "" - -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "" - -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 -msgid "Home" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "" - -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "" - -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" - -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "" - -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "" - -#: ckan/templates/snippets/related.html:15 -msgid "" -"No apps, ideas, news stories or images have been related to this dataset " -"yet." -msgstr "" - -#: ckan/templates/snippets/related.html:18 -msgid "Add Item" -msgstr "" - -#: ckan/templates/snippets/search_form.html:16 -msgid "Submit" -msgstr "" - -#: ckan/templates/snippets/search_form.html:31 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "" - -#: ckan/templates/snippets/search_form.html:77 -msgid "

Please try another search.

" -msgstr "" - -#: ckan/templates/snippets/search_form.html:83 -msgid "" -"

There was an error while searching. Please try " -"again.

" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:15 -msgid "{number} dataset found for \"{query}\"" -msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:21 -msgid "{number} group found for \"{query}\"" -msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:27 -msgid "{number} organization found for \"{query}\"" -msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "" - -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 -#: ckan/templates/user/new_user_form.html:7 -#: ckan/templates/user/read_base.html:82 -msgid "Email" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "" - -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "" - -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "" - -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "" - -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "" - -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "" - -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "" - -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "" - -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "" - -#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 -#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 -#: ckan/templates/user/snippets/user_search.html:2 -msgid "Users" -msgstr "" - -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "" - -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" - -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "Full name" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "eg. Joe Bloggs" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:13 -msgid "eg. joe@example.com" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:15 -msgid "A little information about yourself" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:18 -msgid "Subscribe to notification emails" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:27 -msgid "Change password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:29 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:31 -msgid "Confirm Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:37 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:43 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:44 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:48 -msgid "Update Profile" -msgstr "" - -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "" - -#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 -#: ckan/templates/user/login.html:12 -#: ckan/templates/user/snippets/login_form.html:28 -msgid "Login" -msgstr "" - -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "" - -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "" - -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "" - -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "" - -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" - -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "" - -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "" - -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "" - -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "" - -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:19 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:20 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:27 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:31 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:652 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:16 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "Custom Text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" - -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" - -#: ckanext/reclineview/plugin.py:82 -msgid "Data Explorer" -msgstr "" - -#: ckanext/reclineview/plugin.py:106 -msgid "Table" -msgstr "" - -#: ckanext/reclineview/plugin.py:149 -msgid "Graph" -msgstr "" - -#: ckanext/reclineview/plugin.py:207 -msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 -msgid "Total number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 -msgid "Top Rated Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Average rating" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 -msgid "No ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 -msgid "Most Edited Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Number of edits" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 -msgid "Largest Groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Number of datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 -msgid "Top Tags" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "" - -#: ckanext/webpageview/plugin.py:24 -msgid "Website" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" diff --git a/ckan/i18n/lt/LC_MESSAGES/ckan.mo b/ckan/i18n/lt/LC_MESSAGES/ckan.mo index 3439dce18e0..c0c69fd0acd 100644 Binary files a/ckan/i18n/lt/LC_MESSAGES/ckan.mo and b/ckan/i18n/lt/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/lt/LC_MESSAGES/ckan.po b/ckan/i18n/lt/LC_MESSAGES/ckan.po index 6a13f398aca..3e678d8a709 100644 --- a/ckan/i18n/lt/LC_MESSAGES/ckan.po +++ b/ckan/i18n/lt/LC_MESSAGES/ckan.po @@ -3,259 +3,260 @@ # This file is distributed under the same license as the ckan project. # # Translators: -# Albertas , 2013 +# Adrià Mercader , 2015 +# Albertas , 2013 # Sean Hammond , 2012 # Viktorija Trubaciute , 2013 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:20+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Lithuanian (http://www.transifex.com/projects/p/ckan/language/lt/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:21+0000\n" +"Last-Translator: dread \n" +"Language-Team: Lithuanian (http://www.transifex.com/okfn/ckan/language/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: lt\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Prieigos funkcija nerasta: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Administratorius" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Redaguotojas" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Narys" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Redagavimui reikia sistemos administratoriaus teisių" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Tinklapio pavadinimas" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Stilius" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Tinklapio gairių eilutė" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Tinklapio gairių logotipas" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Apie" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Tekstas apie puslapį" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Įvadinis tekstas" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Namų puslapio tekstas" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Specializuotas CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Įterptas specializuotas css į puslapio antraštę" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Nepavyko sunaikinti paketo %s, nes susietas poversijis %s talpina neištrintus paketus %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problema panaikinant poversijį %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Panaikinimas baigtas" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Veiksmas nėra realizuotas." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Jūs neturite teisių matyti šio puslapio" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Kreiptis nepriimta" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Nerasta" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Bloga užklausa" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Veiksmo pavadinimas nerastas: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON klaida: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Blogi užklausos duomenys: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Negalima pateikti esybių sąrašo šio tipo: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Negalima perskaityti esybių sąrašo šio tipo: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Negalima sukurti naujos esybės šio tipo: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Nepavyko įtraukti paketo į paieškos rodyklę" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Negalima atnaujinti esybės šio tipo: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Nepavyko atnaujinti paieškos rodyklės" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Negalima ištrinti esybės šio tipo: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Nenurodytas poversijis" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Negzistuoja poversijis, kurio id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Trūkstamas paieškos termas ('since_id=UUID' arba 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Nepavyko nuskaityti parametro: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Bloga paieškos parinktis: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Nežinomas registras: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Užklausos parametrai turi būti pateikti JSON užkoduotu žodynu." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Grupė nerasta" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Neturite teisių nuskaityti grupės %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -266,23 +267,23 @@ msgstr "Neturite teisių nuskaityti grupės %s" msgid "Organizations" msgstr "Organizacijos" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupės" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -290,394 +291,303 @@ msgstr "Grupės" msgid "Tags" msgstr "Gairės" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formatai" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Neturite teisių sukurti grupės" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Naudotojas %r neturi teisių redaguoti %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Vientisumo klaida" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Naudotojas %r neturi teisių redaguoti %s leidimų" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Neturite teisių ištrinti grupės %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organizacija buvo ištrinta." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Grupė buvo ištrinta" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Neturite teisių pridėti nario prie grupės %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Neturite teisių trinti grupės %s narių" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Grupės narys buvo ištrintas." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Pasirinkite du poversijus prieš atlikdami palyginimą." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Naudotojas %r neturi teisių redaguoti %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN grupės poversijų istorija" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Paskiausi pakeitimai CKAN grupėje:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Žurnalo žinutė:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Neturite teisių skaityti grupės {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Jūs dabar sekate {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Jūs daugiau nebesekate {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Neturite teisių peržiūrėti pasekėjų %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Ši svetainė dabar yra nepasiekiama. Duomenų bazė nėra inicijuota." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Prašome atnaujinti savo profilį, nurodyti el. pašto adresą ir savo asmenvardį. {site} naudoja el. pašto adresą slaptažodžio atkūrimui." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Prašome atnaujinti savo profilį ir nurodyti el. pašto adresą." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s naudoja el. pašto adresą slaptažodžio atkūrimui." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Prašome atnaujinti savo profilį ir nurodyti savo asmenvardį." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Rinkmena nerasta" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Neturite teisių skaityti paketo %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Neteisingas poversijo formatas: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN rinkmenos poversijo istorija" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Paskutiniai pakeitimai CKAN rinkmenos:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Neturite teisių sukurti paketo" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Neturite teisių redaguoti šio išteklio" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Ištekliai nerasti" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Neturite teisių atnaujinti rinkmenos" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Turite pridėti bent vieną duomenų išteklių" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Klaida" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Neturite teisių kurti išteklių" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Nepavyko įtraukti paketo į paieškos rodyklę" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Nepavyko atnaujinti paieškos rodyklės." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Rinkmena buvo ištrinta." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Neturite teisių trinti paketo %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Rinkmena buvo ištrinta." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Išteklius buvo ištrintas." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Neturite teisių trinti ištekliaus %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Neturite teisių skaityti rinkmenos %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Neturite teisių nuskaityti išteklių %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Nėra atsisiuntimų" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Jokia peržiūra nebuvo apibrėžta." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Dažniausiai žiūrėtas" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Daugiausia peržiūrėta" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Mažiausiai peržiūrėta" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Naujausias" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Seniausias" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Pageidautas susijęs įrašas buvo nerastas" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Susijęs įrašas nerastas" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Neturite teisių" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Paketas nerastas" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Susijęs įrašas sėkmingai sukurtas" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Susijęs įrašas sėkmingai atnaujintas" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Susijęs įrašas buvo ištrintas." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Neturite teisių ištrinti susijusio įrašo %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Taikomoji programa" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idėja" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Naujienų straipsnis" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Straipsnis" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Publikacija" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Vizualizavimas" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN saugyklos poversijų istorija" @@ -703,10 +613,10 @@ msgstr "Kita" msgid "Tag not found" msgstr "Gairė nerasta" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Naudotojas nerastas" @@ -726,13 +636,13 @@ msgstr "" msgid "No user specified" msgstr "Nenurodytas naudotojas" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Neturite teisių redaguoti naudotojo %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profilis atnaujintas" @@ -756,75 +666,87 @@ msgstr "Naudotojas \"%s\" jau yra priregistruotas, bet Jūs vis dar esate prisij msgid "Unauthorized to edit a user." msgstr "" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Naudotojas %s neturi teisių redaguoti %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Prisijungti nepavyko. Neteisingas naudotojo vardas arba slaptažodis." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" atitinka keletą naudotojų" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Nėra tokio naudotojo: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Prašome pasitikrinti savo gautus laiškus, dėl atkūrimo kodo." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Nepavyko išsiųsti atkūrimo nuorodos: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Neteisingas atkūrimo raktas. Prašome bandyti dar kartą." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Jūsų slaptažodis buvo atkurtas." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Jūsų slaptažodis turi būti 4 simbolių arba ilgesnis." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Jūsų įvesti slaptažodžiai nesutampa." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Turite nurodyti slaptažodį" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Šis įrašas nerastas" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} nerastas" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Neturite teisių skaityti {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Viskas" @@ -946,7 +868,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -954,11 +876,11 @@ msgid "View" msgstr "Peržiūra" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "1 nauja veikla iš {site_title}" -msgstr[1] "{n} naujų veiklų iš {site_title}" -msgstr[2] "{n} naujų veiklų iš {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1008,144 +930,144 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Ką tik" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" -msgstr[0] "prieš minutę" +msgstr[0] "prieš {mins} minutę" msgstr[1] "prieš {mins} minutes" msgstr[2] "prieš {mins} minutes" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" -msgstr[0] "prieš valandą" +msgstr[0] "prieš {hours} valandą" msgstr[1] "prieš {hours} valandas" msgstr[2] "prieš {hours} valandas" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "prieš vieną dieną" msgstr[1] "prieš {days} dienas" msgstr[2] "prieš {days} dienas" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} baitai" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Atnaujinkite savo avatarą puslapyje gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Nežinomas" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Sukurta nauja rinkmena." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Ištekliai paredaguoti." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Nustatymai paredaguoti." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" -msgstr[0] "1 peržiūra" +msgstr[0] "{number} peržiūra" msgstr[1] "{number} peržiūrų" msgstr[2] "{number} peržiūrų" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" -msgstr[0] "1 pastaroji peržiūra" +msgstr[0] "{number} pastaroji peržiūra" msgstr[1] "{number} pastarųjų peržiūrų" msgstr[2] "{number} pastarūjų peržiūrų" @@ -1174,7 +1096,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1199,7 +1121,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Trūkstama reikšmė" @@ -1212,7 +1134,7 @@ msgstr "Įvesties lauko %(name)s nebuvo tikimasi." msgid "Please enter an integer value" msgstr "Įveskite sveiką skaičių" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1222,11 +1144,11 @@ msgstr "Įveskite sveiką skaičių" msgid "Resources" msgstr "Ištekliai" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Netinkamas paketo išteklius(-ai)" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Priedai" @@ -1236,25 +1158,22 @@ msgstr "Priedai" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Gairės žodynas \"%s\" negzistuoja" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Vartotojas" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Rinkmena" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grupė" @@ -1266,378 +1185,369 @@ msgstr "" msgid "A organization must be supplied" msgstr "Organizacija turi būti nurodyta" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organizacija neegzistuoja" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Šiai organizacijai rikmenos pridėti negalite" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Netinkamas natūralusis skaičius" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Neteisingas duomenų formatas" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Nuorodos neleidžiamos žurnalo žinutėje." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Išteklius" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Susijęs" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Toks grupės vardas arba ID negzistuoja." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Veiklos tipas" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Šis vardas negali būti panaudotas" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Vardas turi būti daugiausiai %i simbolių ilgio" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Tokia nuoroda jau yra naudojama" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Vardo \"%s\" ilgis yra mažesnis nei minimalus %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Vardo \"%s\" ilgis yra didesnis nei maksimalus %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Versijos maksimalus ilgis yra %i simboliai" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Pasikartojantis raktas \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Toks grupės vardas jau egzistuoja duomenų bazėje" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Gairės \"%s\" ilgis yra mažesnis nei minimalus %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Gairės \"%s\" ilgis yra didesnis nei maksimalus %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Gairė \"%s\" turi būti sudaryta iš raidinių-skaitinių arba \"-_\" simbolių." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Gairė \"%s\" negali turėti didžiųjų raidžių" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Šis prisijungimo vardas nėra prieinamas" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Prašome įvesti abu slaptažodžius" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Slaptažodį turi sudaryti bent 4 simboliai" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Jūsų įvesti slaptažodžiai nesutampa" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Redagavimas neleidžiamas, nes panašus į brukalą. Prašome vengti nuorodų savo aprašyme." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Vardas turi būti mažiausiai %s simbolių ilgio" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Toks žodyno vardas jau naudojamas." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Nepavyko pakeisti rakto reikšmės iš %s į %s. Raktas yra nekeičiamas." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Gairių žodynas nerastas." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Gairė %s nepriklauso žodynui %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Nenurodytas gairės vardas" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Gairė %s jau priklauso žodynui %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Prašome nurodyti teisingą URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "vaidmuo neegzistuoja." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Sukurti objektą %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Sukurti paketo ryšį: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Sukurti nario objektą %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Bandoma sukurti organizaciją kaip grupę" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Turite nurodyti paketo id arba vardą (parametras \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Turite nurodyti įvertinimą (parametras \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Įvertinimas turi būti sveikas teigiamas skaičius." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Įvertinimas turi būti tarp %i ir %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Turite prisijungti norėdami sekti naudotojus" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Negalite sekti savęs" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Jūs jau sekate {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Turite prisijungti norėdami sekti rinkmeną." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Turite prisijungti norėdami sekti grupę." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Ištrintas paketas: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Ištrinti %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Ištrintas narys: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "tokio id nėra duomenyse" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Nepavyko rasti žodyno \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Nepavyko rasti gairės \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Turite prisijungti norėdami nebesekti ko nors." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Jūs jau sekate {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Išteklius nerastas." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Nenurodykite ar naudojate \"query\" parametrą" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Turi būti : pora(-os)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Laukas \"{field}\" neatpažintas išteklių paieškoje." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "nežinomas naudotojas:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Įrašas nerastas." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Paketas nerastas." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Atnaujinti objektą %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Atnaujinti paketo ryšį: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "Užduoties statusas nerastas." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organizacija nerasta." @@ -1668,7 +1578,7 @@ msgstr "Turite būti prisijungę, kad galėtumėte pridėti susijusį įrašą" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Nerasti jokie paketai šiam resursui, nepavyko patikrinti tapatybės." @@ -1678,94 +1588,98 @@ msgstr "Nerasti jokie paketai šiam resursui, nepavyko patikrinti tapatybės." msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Naudotojas %s neturi teisių redaguoti šių paketų" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Naudotojas %s neturi teisių kurti grupėms" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Naudotojas %s neturi teisių kurti organizacijoms" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Grupė nerasta." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Reikalingas tinkamas API raktas, norint sukurti paketą" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Reikalingas tinkamas API raktas, norint sukurti grupę" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Naudotojas %s neturi teisių pridėti nariams" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Naudotojas %s neturi teisių redaguoti grupės %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Naudotojas %s neturi teisių ištrinti ištekliaus %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Tik savininkas gali ištrinti susijusį įrašą" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Naudotojas %s neturi teisių ištrinti ryšiui %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Naudotojas %s neturi teisių trinti grupėms" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Naudotojas %s neturi teisių ištrinti grupei %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Naudotojas %s neturi teisių trinti organizacijoms" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Naudotojas %s neturi teisių trinti organizacijai %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Naudotojas %s neturi teisių ištrinti užduoties statusui" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Neturite teisių" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1786,7 +1700,7 @@ msgstr "Naudotojas %s neturi teisių skaityti išteklio %s" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Turite būti prisijungęs, kad galėtumėte naudotis savo valdymo pultu." @@ -1864,63 +1778,63 @@ msgstr "Reikia tinkamo API rakto paketo redagavimui" msgid "Valid API key needed to edit a group" msgstr "Reikia tinkamo API rakto grupės redagavimui" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Kita (Atvira)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Kita (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Kita (Attribution)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Kita (Non-Commercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Kita (Ne atvira)" @@ -2027,8 +1941,6 @@ msgstr "Patvirtinti" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Atšaukti" @@ -2053,12 +1965,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Pašalinti" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Paveikslėlis" @@ -2131,7 +2044,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2145,7 +2057,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Redaguoti" @@ -2184,11 +2095,11 @@ msgstr "Įgalinta Site Title: This is the title of this CKAN instance It " @@ -2363,7 +2279,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "" @@ -2515,7 +2430,7 @@ msgstr "Pasirinkti" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2548,8 +2463,6 @@ msgstr "Grupės forma" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Patvirtinti ištrynimą" @@ -2567,7 +2480,7 @@ msgstr "Ar tikrai norite ištrinti narį - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2712,14 +2625,12 @@ msgstr "Ar tikrai norite ištrinti šį narį?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Ištrinti" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Išsaugoti" @@ -2807,7 +2718,6 @@ msgstr "mano-grupė" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Aprašymas" @@ -2869,7 +2779,7 @@ msgstr "" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2969,38 +2879,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "rinkmenos" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3018,7 +2920,6 @@ msgid "Custom" msgstr "Specializuotas" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Formoje yra neteisingų įrašų:" @@ -3031,7 +2932,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "Paveikslėlio URL" @@ -3076,7 +2976,7 @@ msgstr "Eskizas" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3110,6 +3010,20 @@ msgstr "" msgid "There are currently no organizations for this site" msgstr "Organizacijų šiam tinklapiui kol kas nėra " +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Naudotojo vardas" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3244,7 +3158,6 @@ msgid "Preview" msgstr "Peržiūrėti" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Atnaujinti" @@ -3303,7 +3216,7 @@ msgstr "" msgid "Add" msgstr "Pridėti" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3335,28 +3248,32 @@ msgstr "" msgid "Error:" msgstr "Klaida:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Paskutinį kartą atnaujinta" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3460,7 +3377,7 @@ msgid "unknown" msgstr "nežinomas" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Sukurtas" @@ -3496,6 +3413,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API dokumentacija" @@ -3552,7 +3473,7 @@ msgid "Version" msgstr "Versija" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Būsena" @@ -3567,7 +3488,6 @@ msgstr "Duomenų API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Pavadinimas" @@ -3587,30 +3507,30 @@ msgstr "pav. kokie nors naudingi užrašai apie duomenis" msgid "eg. economy, mental health, government" msgstr "pav. ekonomija, psichinė sveikata, valdžia" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Licencijų apibrėžimai ir papildoma informacija prieinama čia opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organizacija" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Matomumas" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Viešas" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3737,7 +3657,7 @@ msgstr "Naršyti" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Įterpta" @@ -3823,139 +3743,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Susijusi forma" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Kas yra susiję įrašai?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Programos & Idėjos" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtruoti pagal tipą" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Visi" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Rikiuoti pagal" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Numatytasis" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Vykdyti" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -4043,7 +3830,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Namai" @@ -4052,7 +3838,7 @@ msgid "Language" msgstr "" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4084,21 +3870,25 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Pateikti" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Prašome pabandyti kitą paiešką.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4179,7 +3969,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4198,10 +3988,6 @@ msgstr "Pakeitimai" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Valdymo pultas" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4265,36 +4051,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Naudotojo vardas" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Asmenvardis" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4527,15 +4304,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4543,6 +4320,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4569,6 +4354,10 @@ msgstr "" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4586,64 +4375,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4703,7 +4452,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Bendras rinkmenų skaičius" @@ -4731,33 +4479,27 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Geriausiai įvertintos rinkmenos" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Vidutinis įvertinimas" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Įvertinimų skaičius" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Nėra įvertinimų" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Dažniausiai redaguotos rinkmenos" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Redagavimų skaičius" @@ -4767,12 +4509,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Didžiausios grupės" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Rinkmenų skaičius" @@ -4782,7 +4522,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Dažniausios gairės" @@ -4797,7 +4536,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 @@ -4808,42 +4547,16 @@ msgstr "" msgid "Total Number of Datasets" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistika" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Rinkmenos poversijai per savaitę" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Naudotojas turintis daugiausia rinkmenų" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Puslapis paskutinį kartą atnaujintas:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Reitingų pultas - Statistika" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Rinkmenos reitingų pultas" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Pasirinkite rinkmenos atributą ir išsiaiškinkite kurios kategorijos toje srityje turėjo daugiausiai rinkmenų. Pav.: gairės, grupės, licencija, formatas, šalis." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Pasirinkite vietą" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/lv/LC_MESSAGES/ckan.mo b/ckan/i18n/lv/LC_MESSAGES/ckan.mo index a89ea74c517..14038306bac 100644 Binary files a/ckan/i18n/lv/LC_MESSAGES/ckan.mo and b/ckan/i18n/lv/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/lv/LC_MESSAGES/ckan.po b/ckan/i18n/lv/LC_MESSAGES/ckan.po index 0374112d827..39b9795176b 100644 --- a/ckan/i18n/lv/LC_MESSAGES/ckan.po +++ b/ckan/i18n/lv/LC_MESSAGES/ckan.po @@ -9,252 +9,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:20+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Latvian (http://www.transifex.com/projects/p/ckan/language/lv/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:19+0000\n" +"Last-Translator: dread \n" +"Language-Team: Latvian (http://www.transifex.com/okfn/ckan/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Autorizācijas grupa nav atrasta: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Jābūt sistēmas administratoram, lai to pārvaldītu" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Par" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Nevar iztīrīg paketi %s, jo saistītās izmaiņas %s iekļauj neizdzēstas paketes %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Tīrīšana pabeigta" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Darbība nav veikta." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Nav tiesību skatīt šo lapu" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Pieeja liegta" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Nav atrasts" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Nederīgs pieprasījums" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Darbības nosaukums nav zināms: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON kļūda: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Nevar izveidot šāda tipa vienības sarakstu: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Nevar nolasīt šāda tipa vienību: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Nevar pievienot paketi meklēšanas indeksam" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Nevar atjaunot šāda tipa ierakstu: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Nespēj atjaunot meklēšanas indeksu" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Nevar izdzēst šāda veida vienību: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Izmaiņas nav norādītas" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Nav izmaiņu ar šādu identifikatoru: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Nevarēja nolasīt parametrus: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Nezināms reģistrs: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Grupa nav atrasta" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Nav tiesību lasīt grupu %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -265,23 +265,23 @@ msgstr "Nav tiesību lasīt grupu %s" msgid "Organizations" msgstr "" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -289,394 +289,303 @@ msgstr "" msgid "Tags" msgstr "" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Nav tiesību izveidot grupu" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Lietotājs %r nav tiesīgs mainīt %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Viengabalainības kļūda" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Lietotājam %r nav tiesību mainīt %s autorizācijas" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Atzīmē divas izmaiņas pirms salīdzināšanas." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Lietotājs %r nav tiesīgs mainīt %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN Grupas izmaiņu vēsture" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Nesenas izmaiņas CKAN grupā:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Žurnāla ieraksts:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "" -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "" -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s izmanto tavu epastu, ja nepieciešams atiestatīt tavu paroli." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Lūdzu, atjauno savu profilu un pievieno pilnu vārdu." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Datu kopa nav atrasta" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Lietotājs %s nav tiesīgs izveidot autorizācijas grupu" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Nederīgs pārmaiņu formāts: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN datu kopas izmaiņu vēsture" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Nesenas izmaiņas CKAN datu kopā:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Lietotājs nav tiesīgs mainīt autorizācijas grupas tiesības" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Resurss nav atrasts" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Nevar pievienot paketi meklēšanas indeksam." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 +#, python-format +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "" @@ -702,10 +611,10 @@ msgstr "Cits" msgid "Tag not found" msgstr "Atzīme nav atrasta" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Lietotājs nav atrasts" @@ -725,13 +634,13 @@ msgstr "" msgid "No user specified" msgstr "Nav norādīts neviens lietotājs" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Nav tiesību mainīt lietotāju %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profils atjaunots" @@ -755,75 +664,87 @@ msgstr "Lietotājs \"%s\" ir reģistrēts, bet tu vēljoprojām esi ienācis tā msgid "Unauthorized to edit a user." msgstr "" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Lietotājam %s nav tiesību mainīt %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" sakrīt ar vairākiem lietotājiem" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Nav šāda lietotāja: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "" @@ -945,7 +866,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -953,7 +874,7 @@ msgid "View" msgstr "" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" msgstr[1] "" @@ -1007,141 +928,141 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1173,7 +1094,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1198,7 +1119,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "" @@ -1211,7 +1132,7 @@ msgstr "" msgid "Please enter an integer value" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1221,11 +1142,11 @@ msgstr "" msgid "Resources" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Paketes resurss(i) ir nederīgi" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "" @@ -1235,25 +1156,22 @@ msgstr "" msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Lietotājs" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Datu kopa" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grupa" @@ -1265,378 +1183,369 @@ msgstr "" msgid "A organization must be supplied" msgstr "" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "log_message tiešsaites nav atļautas" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Šis lietotājvārds nav pieejams." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Izveido paketes attiecības: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Jānorāda paketes identifikators vai nosaukums (rādītājs \"pakete\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Vērtējumam jābūt ciparam." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Izdzēst paketi: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Resurss netika atrasts." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "nezināms lietotājs:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Pakete nav atrasta." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Atjaunot pakešu attiecības: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "" @@ -1667,7 +1576,7 @@ msgstr "" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Paketes šim resursam nav atrasta, nav iespējams pārbaudīt īstumu." @@ -1677,94 +1586,98 @@ msgstr "Paketes šim resursam nav atrasta, nav iespējams pārbaudīt īstumu." msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Lietotājs %s nav tiesīgs mainīt šīs paketes" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Lietotājs %s nav tiesīgs veidot grupas" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Grupa netika atrasta." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Derīgia API atslēga nepiecišama, lai izveidotu paketi" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1785,7 +1698,7 @@ msgstr "" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1863,63 +1776,63 @@ msgstr "Nepieciešama derīga API atslēga, lai mainītu paketi" msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "" @@ -2026,8 +1939,6 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "" @@ -2052,12 +1963,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "" @@ -2130,7 +2042,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "" @@ -2144,7 +2055,6 @@ msgstr "" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "" @@ -2183,11 +2093,11 @@ msgstr "" msgid "Sysadmin settings" msgstr "" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" @@ -2195,23 +2105,31 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "Iziet" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "Reģistrēties" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2220,7 +2138,6 @@ msgstr "Reģistrēties" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2230,15 +2147,13 @@ msgstr "Reģistrēties" msgid "Datasets" msgstr "" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "Meklēt" @@ -2274,24 +2189,24 @@ msgstr "" msgid "Trash" msgstr "Atkritne" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2362,7 +2277,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "" @@ -2514,7 +2428,7 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2547,8 +2461,6 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "" @@ -2566,7 +2478,7 @@ msgstr "" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2711,14 +2623,12 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Saglabāt" @@ -2806,7 +2716,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "" @@ -2868,7 +2777,7 @@ msgstr "" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2968,38 +2877,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3017,7 +2918,6 @@ msgid "Custom" msgstr "" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "" @@ -3030,7 +2930,6 @@ msgid "http://example.com/my-image.jpg" msgstr "" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "" @@ -3075,7 +2974,7 @@ msgstr "" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3109,6 +3008,20 @@ msgstr "" msgid "There are currently no organizations for this site" msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3243,7 +3156,6 @@ msgid "Preview" msgstr "Priekšskats" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "" @@ -3302,7 +3214,7 @@ msgstr "" msgid "Add" msgstr "" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3334,28 +3246,32 @@ msgstr "" msgid "Error:" msgstr "" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3459,7 +3375,7 @@ msgid "unknown" msgstr "" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "" @@ -3495,6 +3411,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "" @@ -3551,7 +3471,7 @@ msgid "Version" msgstr "" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "" @@ -3566,7 +3486,6 @@ msgstr "Datu API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "" @@ -3586,30 +3505,30 @@ msgstr "" msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3736,7 +3655,7 @@ msgstr "" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "" @@ -3822,139 +3741,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -4042,7 +3828,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Sākumlapa" @@ -4051,7 +3836,7 @@ msgid "Language" msgstr "" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4083,21 +3868,25 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4178,7 +3967,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4197,10 +3986,6 @@ msgstr "" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4264,36 +4049,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4526,15 +4302,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4542,6 +4318,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4568,6 +4352,10 @@ msgstr "" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4585,64 +4373,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4702,7 +4450,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Kopējais datu kopu skaits" @@ -4730,33 +4477,27 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Visaugstāk vērtētās datu kopas" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Vidējais vērtējums" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Vērtējumu skaits" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Nav vērtējumu" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Visvairāk mainītās datu kopas" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Pārmaiņu skaits" @@ -4766,12 +4507,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Lielākās grupas" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Datu kopumu skaits" @@ -4781,7 +4520,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Populārākās etiķetes" @@ -4796,7 +4534,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 @@ -4807,42 +4545,16 @@ msgstr "" msgid "Total Number of Datasets" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistika" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Datu kopu izmaiņas nedēļas laikā" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Lietotāji, kam pieder visvairāk datu kopu" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Lapa pēdējoreiz atjaunota:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Vadošo saraksts - Statistika" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Datu kopas Vadošo sarakts" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Izvēlies reģionu" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo index 6803db4512f..ba2e8cfe2ef 100644 Binary files a/ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo and b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po index c85f030f422..2176bc3089c 100644 --- a/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po +++ b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po @@ -4,10 +4,12 @@ # # Translators: # Adrià Mercader , 2015 +# amarsanaag , 2015 # Amartsog , 2015 # bat-orshih , 2014 # byambadorj , 2014 # Chintogtokh Batbold , 2014 +# dread , 2015 # d.tsolmonbayar , 2014 # muugii , 2014 # Naranbayar , 2014 @@ -22,252 +24,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:22+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Mongolian (Mongolia) (http://www.transifex.com/projects/p/ckan/language/mn_MN/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-07 02:24+0000\n" +"Last-Translator: amarsanaag \n" +"Language-Team: Mongolian (Mongolia) (http://www.transifex.com/okfn/ckan/language/mn_MN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: mn_MN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Нэвтрэх үйлдэл олдсонгүй: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Админ" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Засварлагч" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Гишүүн" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Системийг удирдахын тулд администратор болох хэрэгтэй" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Сайтын гарчиг" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Загвар" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Сайтын шошгоны зурвас" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Сайтын шошгоны лого" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Танилцуулга" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Танилцуулга хуудасны текст" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Танилцуулга текст" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Нүүр хуудасны текст" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Өөрчилсөн CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Хуудасны толгой хэсэгт ѳѳрчлѳх боломжтой css орсон " -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Нүүр хуудас" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Нэгдсэн хяналт %s устгагдаж болохгүй %s багцууд байна тиймээс %s багцыг устгаж болохгүй" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "%s-г цэвэрлэхэд гарсан алдаа: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Бүрэн цэвэрлэх" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Үйлдлийг гүйцэтгэсэнгүй" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Энэ хуудсыг үзэх эрхгүй байна " -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Нэвтрэх боломжгүй" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Олдсонгүй" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Буруу хүсэлт" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Үл таних үйлдэл: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON Алдаа: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Өгөгдлийн буруу хүсэлт: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "%s төрлийн нэгжийг харуулах боломжгүй." -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "%s төрлийн өгөгдөлийг уншиж чадахгүй." -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "%s %s төрлийн өгөгдлийг шинээр үүсгэж чадахгүй " -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Хайлтын индексэд багц нэмэх боломжгүй" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "%s төрлийн өгөгдлийг өөрчлөх боломжгүй" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Хайлтын индексийг шинэчлэх боломжгүй " -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "%s %s төрлийн өгөгдлийг устгах боломжгүй." -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Залруулга байхгүй байна." -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "%s гэсэн дугаартай залруулга байхгүй байна." -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Хайх нөхцөл бүрдээгүй ('since_id=UUID' эсвэл 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "%r параметрыг уншиж чадсангүй" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Муу хайлтын сонголт: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Үл таних бүртгэл: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Буруу хэлбэржсэн qjson утга: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Хүсэлтийн параметр нь json-оор шифрлэгдсэн үгсийн сан хэлбэрт байх ёстой" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Бүлэг олдсонгүй" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Байгууллага олдсонгүй" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Буруу бүлгийн төрөл" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "%s бүлгийг унших эрхгүй байна" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -278,23 +280,23 @@ msgstr "%s бүлгийг унших эрхгүй байна" msgid "Organizations" msgstr "Байгууллагууд" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Бүлгүүд" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -302,394 +304,303 @@ msgstr "Бүлгүүд" msgid "Tags" msgstr "Шошго" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Форматууд" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Ашиглах зөвшөөрлүүд" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Багцаар нь шинэчлэх боломжгүй." -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Бүлэг үүсгэх эрхгүй байна" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "%r хэрэглэгч %s -г өөрчлөх эрхгүй байна." -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Ил тод алдаа" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Хэрэглэгч %r %s - ийн эрхийг өөрчлөх эрхгүй байна." -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "%s бүлгийг устгах эрх байхгүй" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Байгууллагыг устгасан." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Бүлэг устсан байна." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s утслаа." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "%s бүлэгт шинээр гишүүн нэмэх боломжгүй." -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "%s бүлгийн гишүүдийг устгах боломжгүй." -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Бүлгийн гишүүн устгагдсан байна" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Харьцуулалт хийх 2 хувилбарыг сонгоно уу." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "%r хэрэглэгч %r-г өөрчлөх эрхгүй байна" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN Group Засвар хийсэн түүх" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "CKAN бүлэгт шинээр нэмэгдсэн өөрчлөлтүүд:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Бүртгэлийн зурвас:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "{group_id} бүлгийг унших эрхгүй байна" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Та {0} хүн дагаж байгаа " -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Та {0} хүн дагахаа болилоо" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Дагагчдыг харах эрхгүй байна %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Тус сайт одоогоор хаалттай байна. Өгөгдлийн сангийн тохиргоо хийгдээгүй." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Та хувийн мэдээлэл болон имэйл хаяг, овог нэрээ оруулна уу. Нууц үгээ шинэчлэх шаардлагатай тохиолдолд {site} таны имэйл хаягийг ашиглана. " - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Та өөрийн мэдээлэл болон мэйл хаягаа шинэчилнэ үү." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "Та нууц үгээ шиэнчлэх хэрэгтэй бол %s таны имэйл хаягийг ашиглана." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Та өөрийн мэдээлэл болон овог нэрээ оруулна уу." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Параметр \"{parameter_name}\" нь натурал тоо биш байна." -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Өгөгдлийн бүрдэл олдсонгүй" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "%s багцийг унших эрхгүй байна." -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Засварын хэлбэр таарахгүй байна: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "{format} хэлбэрээр {package_type} өгөгдлийн бүрдлийг харах боломжгүй (загвар файл {file} олдоогүй)" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN өгөгдлийн бүрдлийн засварын түүх" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "CKAN өгөгдлийн бүрдэлд сүүлд нэмэгдсэн өөрчлөлтүүд:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Пакет үүсгэх эрх байхгүй байна" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Энэ нөөцийг өөрчлөх эрх байхгүй байна" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Нөөц олдсонгүй" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Өгөгдлийн бүрдлийг шинэчлэх эрхгүй байна." -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Өгөгдлийн бүрдэл {id} олдсонгүй." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Та дор хаяж нэг өгөгдлийн нөөц нэмэх хэрэгтэй " -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Алдаа" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Нөөц үүсгэх эрх байхгүй байна" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Хайлтын индексэд багц нэмэх боломжгүй байна." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Хайлтын индексийг шинэчилэх боломжгүй байна." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Өгөгдлийн бүрдэл устсан" + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "%s энэ багцийг устгах эрхгүй байна" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Өгөгдлийн бүрдэл устсан" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Нөөц устсан байна." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "%s нөөцийг устгах эрхгүй байна " -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "%s өгөгдлийн бүрдлийг унших эрхгүй байна" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "%s нөөцийг унших эрхгүй байна " -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Нөөцийн өгөгдөл олдсонгүй" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Татаж авах боломжгүй" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Урьдчилж харах боломжгүй." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Их үзсэн" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Их үзсэн" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Хамгийн бага үзсэн" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Шинэ" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Хуучин" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Хүсэлтэнд харгалзах зүйл олдсонгүй." - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Холбоотой зүйл олдсонгүй" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Зөвшөөрөгдөөгүй байна." - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Багц олдсонгүй" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Холбоотой зүйл амжилттай үүслээ" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Холбоотой зүйл амжилттай шинэчлэгдлээ" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Холбогдох зүйл устсан." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "%s-тэй холбоотой зүйлийг устгах эрх алга" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Програм" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Санаа" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Мэдээний сэдэв" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Цаас" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Илгээх" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Төсөөлөл" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN дахь засварын түүх" @@ -715,10 +626,10 @@ msgstr "Бусад" msgid "Tag not found" msgstr "Шошго олдсонгүй" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Хэрэглэгч олдсонгүй." @@ -738,13 +649,13 @@ msgstr " \"{user_id}\" дугаартай хэрэглэгчийг устгах msgid "No user specified" msgstr "Хэрэглэгч тодорхойлогдоогүй." -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "%s хэрэглэгчийг өөрчлөх эрхгүй байна." -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Хувийн мэдээлэл шинэчлэгдлээ" @@ -768,75 +679,87 @@ msgstr "\"%s\" хэрэглэгч бүртгэгдсэн боловч өмнө msgid "Unauthorized to edit a user." msgstr "Хэрэглэгчийн мэдээллийг өөрчлөх эрхгүй байна." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "%s хэрэглэгч %s хэрэглэгчийг өөрчлөх эрхгүй байна." -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Хуучин нууц үг" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "буруу нууц үг" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Нэвтрэх боломжгүй. Хэрэглэгчийн нэр эсвэл нууц үг буруу байна" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Нууц үгийг шинэчлэх хүсэлт илгээх эрх байхгүй байна." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" гэсэн хэрэглэгчид олдлоо" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Ийм хэрэглэгч алга: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Ирсэн захидлаа шалгаад кодоо шинэчилнэ үү!" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Шинэчилэх холбоосыг явуулж чадсангүй: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Нууц үгийг шинэчлэх эрхгүй байна." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Шинэчлэх түлхүүр үг тохирсонгүй. Дахин оролдоно уу?" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Таны нууц үг шинэчлэгдлээ." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Таны нууц үг багадаа 4 тэмдэгт байх ёстой" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Таны оруулсан нууц үг буруу байна." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Та нууц үгээ оруулна уу" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Дагалдах зүйл олдсонгүй" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} олдсонгүй" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "{0} {1} -ийг унших эрхгүй байна." -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Бүх зүйл" @@ -846,7 +769,7 @@ msgstr "Орхигдсон утга" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Гадаад вэб сайтруу чиглүүлэхийг зөвшөөрөхгүй" #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" @@ -958,7 +881,7 @@ msgstr "{actor} {dataset} өгөгдлийн бүрдэлд {related_type} {rela msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} {related_item} - ийг {related_type} - д нэмлээ" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -966,10 +889,10 @@ msgid "View" msgstr "Үзэх" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{site_title} -д 1 сонин хачин байна" -msgstr[1] "{site_title} сайтад {n} шинэ үйл ажиллагаанууд байна" +msgstr[0] "" +msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1019,139 +942,139 @@ msgstr "11-р сар" msgid "December" msgstr "12-р сар" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Дөнгөж сая" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} минутын өмнө" msgstr[1] "{mins} минутын өмнө" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} цагийн өмнө" msgstr[1] "{hours} цагийн өмнө" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} өдрийн өмнө" msgstr[1] "{days} өдрийн өмнө" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} сарын өмнө" msgstr[1] "{months} сарын өмнө" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "{years} жилээс өмнө" msgstr[1] "{years} жилээс өмнө" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{year} {month} {day}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{year} {month} {day}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} байт" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} килобайт" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} мегабайт" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} гигабайт" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} терабайт" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Өөрийн зургаа gravatar.com оос шинэчлэнэ үү" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Тодорхой бус" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Нэргүй нөөц" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Шинэ өгөгдлийн бүрдэл үүслээ." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Шинэчлэгдсэн нөөц" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Засварлах тохиргоо" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" -msgstr[0] "{тоо} үзсэн" +msgstr[0] "{number} үзсэн" msgstr[1] "{number} үзсэн" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" -msgstr[0] "{тоо} сүүлд үзсэн" -msgstr[1] "{тоо} сүүлд үзсэн" +msgstr[0] "{number} сүүлд үзсэн" +msgstr[1] "{number} сүүлд үзсэн" #: ckan/lib/mailer.py:25 #, python-format @@ -1178,7 +1101,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1203,7 +1126,7 @@ msgstr "{site_title} -д урих." #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Орхигдсон утга" @@ -1216,7 +1139,7 @@ msgstr "%(name)s өгөгдөл нь оролтын талбарт тохиро msgid "Please enter an integer value" msgstr "Бүхэл тоон утга оруулна уу" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1226,11 +1149,11 @@ msgstr "Бүхэл тоон утга оруулна уу" msgid "Resources" msgstr "Материалууд" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Багцын материал(ууд) тохирохгүй байна." -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Нэмэлтүүд" @@ -1240,25 +1163,22 @@ msgstr "Нэмэлтүүд" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Шошго үгс \"%s\" байхгүй байна" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Хэрэглэгч" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Өгөгдлийн бүрдэл" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Бүлэг" @@ -1270,378 +1190,369 @@ msgstr "Тохирох JSON болгон хувиргах боломжгүй" msgid "A organization must be supplied" msgstr "Байгууллагыг оруулах шаардлагатай." -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Та оршиж буй байгууллагын өгөгдлийн бүрдлийг устгах боломжгүй." - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Ийм байгууллага байхгүй" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Та тус байгууллагад өгөгдлийн бүрдэл нэмэх боломжгүй" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Тохирохгүй бүхэл тоон утга" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Натурал тоо байх ёстой" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Эерэг бүхэл тоо байх ёстой" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Огнооны хэлбэр буруу" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Лог мессежэнд холбогдох хаягууд агуулагдах боломжгүй." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "Өгөгдлийн бүрдлийн id аль хэдийнэ үүссэн байна" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Материал" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Хамааралтай" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Ийм бүлэг эсвэл ID байхгүй байна." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Үйл ажиллагааны төрөл" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Нэрс нь тэмдэгтээс бүрдэх ёстой" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Энэ нэрийг ашиглах боломжгүй" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Нэрийн урт хамгийн ихдээ %i тэмдэгт байх ёстой" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Тус URL ашиглагдаж байна." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "\"%s\" нэрийн урт %s - с бага байна." -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "\"%s\" нэрийн урт %s -с хэтэрсэн байна." -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Шинэчилсэн хувилбарын урт хамгийн ихдээ %i тэмдэгттэй байх ёстой." -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Давхардсан түлхүүр \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr " Бүлгийн нэр өгөгдлийн санд өмнө нь үүссэн байна" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "\"%s\" шошгоны урт нь хамгийн багадаа байх ёстой %s-д хүрэхгүй байна" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "\"%s\" шошгоны урт нь хамгийн ихдээ байх ёстой %i-с хэтэрсэн байна." -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "\"%s шошго нь тоо, латин үсэг болон -_ тэмдэгтээс бүрдсэн байх ёстой." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "%s шошго нь том үсэг агуулж болохгүй" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Хэрэглэгчийн нэр тэмдэгт байх ёстой" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Тус хэрэглэгчийн холбогдох нэр боломжгүй байна." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Нууц үгийн 2 талбарыг бөглөнө үү" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Нууц үг тэмдэгтээс бүрдсэн байх ёстой." -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Таны нууц үг 4-н тэмдэгтээс илүү байх ёстой" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Таны оруулсан нууц үг хоорондоо тохирохгүй байна" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Спэмээр ойлгогдож байгаа тул засварлах боломжгүй. Тайлбартаа хаягуудыг оруулахгүй байна уу." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Нэрийн урт хамгийн багадаа %s тэмдэгт байх ёстой" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Тухайн үг ашиглагдаж байна." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "%s-н утгыг %s болгон өөрчлөх боломжгүй. Энэ нь зөвхөн унших боломжтой." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Шошго үг олдсонгүй" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "%s шошго %s үгтэй хамааралгүй." -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Шошгоны нэр байхгүй байна" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "%s шошго %s үгсийн сантай холбоотой" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Зөв URL оруулна уу." -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "ийм хэрэглэгчийн төрөл байхгүй байна." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Байгууллагад хамааралгүй өгөгдлийн бүрдэл хаалттай байх боломжгүй." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Жагсаалт биш байна" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Тэмдэгт биш байна" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Энэ эх сурвалж нь давталттай иерархи үүсгэнэ." -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: %s объектийг үүсгэх" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Багцад хамаарал үүсгэх: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Гишүүн объект %s -г үүсгэх" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Байгууллагыг бүлэг болгон үүсгэх гэж байна." -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Та багцын дугаар эсвэл нэрийг оруулах шаардлагатай (параметр \"багц\")" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Та үнэлгээ оруулсан байх шаардлагатай (параметр\"үнэлгээ\")" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Үнэлгээ бүхэл тоон утгатай байх ёстой" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Үнэлгээ %i - с %i - н хооронд байх ёстой" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Та хэрэглэгчдийг дагахын тулд нэвтрэх хэрэгтэй." -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Та өөрийгөө дагаж болохггүй." -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Та аль хэдийн дагаж байна {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Өгөгдлийн бүрдлийг дагахын тулд нэвтрэх ёстой." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr " {username} нэртэй хэрэглэгч олдсонгүй." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Та бүлэг дагахын тулд нэвтрэх хэрэгтэй." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: %s багцыг устгах." -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: %s - г устгах" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Гишүүн устгах: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "өгөгдөлд дугаар байхгүй байна" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "\"%s\" үгсийн сан олдсонгүй." -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "\"%s\" шошго олдсонгүй." -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Та ямар нэгэн зүйлийг дагахаа болихын тулд нэвтэрсэн байх шаардлагатай." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Та дагаагүй байна {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Материал олдсонгүй" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr " \"query\" параметрыг ашиглаж байгаа бол битгий онцлог шинж тодорхойл" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr ": гэсэн хос(ууд) байх ёстой." -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "\"{field}\" талбар нь нөөцийн хайлтад танигдах боломжгүй." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "Тодорхой бус хэрэглэгч" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Зүйл олдсонгүй." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Багц олдсонгүй" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: %s объектийг шинэчлэх" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Багцын хамаарлыг шинэчлэх: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "Даалгаврын төлөв олдсонгүй" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Байгууллага олдсонгүй" @@ -1672,7 +1583,7 @@ msgstr "Та холбоотой зүйл нэмэхийн тулд нэвтэр msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Энэ нөөцөд тохирох багц олдсонгүй, auth -ийг шалгаж чадахгүй байна." @@ -1682,94 +1593,98 @@ msgstr "Энэ нөөцөд тохирох багц олдсонгүй, auth -и msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "%s хэрэглэгч эдгээр багцуудыг өөрчлөх эрхгүй байна." -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "%s хэрэглэгч бүлэг үүсгэх эрхгүй байна" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "%s хэрэглэгч байгууллага үүсгэх эрхгүй байна" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "{user} API-аар хэрэглэгчдийг үүсгэх эрхгүй." -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Хэрэглэгч үүсгэх эрхгүй байна." -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Бүлэг олдсонгүй." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Багц үүсгэхийн тулд хүчин төгөлдөр API түлхүүр хэрэгтэй." -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Бүлэг үүсгэхэд хүчин төгөлдөр API түлхүүр хэрэгтэй." -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "%s хэрэглэгч гишүүн нэмэх эрхгүй байна" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "%s хэрэглэгч %s бүлгийг өөрчлөх эрхгүй байна" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "%s хэрэглэгч %s материалыг устгах эрхгүй байна" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Зөвхөн эзэмшигч нь холбоотой зүйлийг устгах боломжтой" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "%s хэрэглэгч %s хамаарлыг устгах эрхгүй байна." -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "%s хэрэглэгч бүлэг устгах эрхгүй байна" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "%s хэрэглэгч %s бүлэг устгах эрхгүй байна" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "%s хэрэглэгч байгууллага устгах эрхгүй байна" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "%s хэрэглэгч %s байгууллагыг устгах эрхгүй байна" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "%s хэрэглэгч task_status -г устгах эрхгүй байна" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Зөвшөөрөгдөөгүй байна." + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1790,7 +1705,7 @@ msgstr "%s хэрэглэгч %s материалыг унших эрхгүй б msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Та өөрийн хяналтын самбартаа хандахын тулд нэвтэрсэн байх шаардлагатай." @@ -1868,63 +1783,63 @@ msgstr "Багцыг засварлахын тулд хүчин төгөлдөр msgid "Valid API key needed to edit a group" msgstr "Бүлгийг засварлахад хүчин төгөлдөр API түлхүүр хэрэгтэй." -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Үнэгүй гарын авлагын лиценз." -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Бусад (Нээлттэй)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Бусад (Нээлттэй домайн)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Бусад (Холбогдлууд)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "Английн Нээлттэй засгийн газрын лиценз (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Энгийн иргэдийн арилжааны бус бүтээл (Ямар нэгэн)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Бусад (Арилжааны бус)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Бусад (Нээлттэй биш)" @@ -2031,8 +1946,6 @@ msgstr "Зөвшөөрөх" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Цуцлах" @@ -2057,12 +1970,13 @@ msgstr "Холбоос" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Устгах" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Зураг" @@ -2135,7 +2049,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2149,7 +2062,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Засварлах" @@ -2188,34 +2100,42 @@ msgstr "Хариуцагч Site Title: This is the title of this CKAN instance It " @@ -2366,7 +2283,6 @@ msgid "" msgstr "API-н өгөгдөлд CKAN болон API-н үйлдлээр дамжиж хандах боломжтой." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Үүсгэх" @@ -2518,7 +2434,7 @@ msgstr "Сонгох" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2551,8 +2467,6 @@ msgstr "Бүлгийн маягт" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Устгахыг зөвшөөрөх" @@ -2570,7 +2484,7 @@ msgstr "Та {name} гишүүнийг устгахдаа илтгэлтэй б #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2715,14 +2629,12 @@ msgstr "Та энэ гишүүнийг устгахдаа итгэлтэй ба #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Устгах" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Хадгалах" @@ -2810,7 +2722,6 @@ msgstr "миний бүлэг" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Тайлбар" @@ -2871,7 +2782,7 @@ msgstr "Харьцуулах" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2971,38 +2882,30 @@ msgstr "" msgid "{0} statistics" msgstr "{0} статистик" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "өгөгдлийн бүрдэл" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "өгөгдлийн бүрдлүүд" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "байгууллага" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "байгууллагууд" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "бүлэг" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "бүлгүүд" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "холбоотой зүйл" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "холбоотой зүйлс" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3020,7 +2923,6 @@ msgid "Custom" msgstr "Дурын" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Тус маягтанд тохирохгүй агуулгууд байна:" @@ -3033,7 +2935,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "Зургийн URL" @@ -3078,7 +2979,7 @@ msgstr "Төсөл" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3112,6 +3013,20 @@ msgstr "Байгууллагууд хайх..." msgid "There are currently no organizations for this site" msgstr "Одоогоор тус сайтад ямар ч байгууллага байхгүй байна." +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Хэрэглэгчийн нэр" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Гишүүн шинэчлэх" @@ -3246,7 +3161,6 @@ msgid "Preview" msgstr "Урьдчилан харах" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Шинэчлэх" @@ -3305,7 +3219,7 @@ msgstr "" msgid "Add" msgstr "Нэмэх" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3337,28 +3251,32 @@ msgstr "Серверт хуулах үед гарсан алдаа:" msgid "Error:" msgstr "Алдаа:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Төлөв" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Сүүлд шинэчлэгдсэн" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Хэзээ ч үгүй" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Бүртгэл оруулах" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Дэлгэрэнгүй байдал" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Бүртгэлийн төгсгөл" @@ -3462,7 +3380,7 @@ msgid "unknown" msgstr "Тодорхой бус" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Үүссэн" @@ -3498,6 +3416,10 @@ msgid "" "add some?

" msgstr "

Тус өгөгдлийн бүрдэлд өгөгдөл байхгүй байна, энд дарж нэмэх боломжтой

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API бичиг баримтууд" @@ -3554,7 +3476,7 @@ msgid "Version" msgstr "Хувилбар" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Төлөв байдал" @@ -3569,7 +3491,6 @@ msgstr "Өгөгдлийн API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Гарчиг" @@ -3589,30 +3510,30 @@ msgstr "жишээ нь: Өгөгдлийн зарим хэрэгцээтэй т msgid "eg. economy, mental health, government" msgstr "жишээ нь: эдийн засаг, сэтгэцийн эрүүл мэнд, засаг" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Лицензийн тодорхойлолт болон нэмэлт мэдээлллийг opendefinition.org-с авах боломжтой." -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Байгууллага" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Зохион байгуулалтгүй" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Харагдац" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Нээлттэй" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Идэвхитэй" @@ -3739,7 +3660,7 @@ msgstr "Шинжих" msgid "More information" msgstr "Дэлгэрэнгүй мэдээлэл" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Шигтгэх" @@ -3825,139 +3746,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Холбоотой маягт" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Холбоотой зүйлс нь юу вэ?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Хамааралтай медиа гэдэг нь өгөгдлийн бүрдэлтэй хамаарал бүхий төрөл бүрийн аппликейшн, өгүүлэл, нүдэнд харагдах хэлбэрт оруулсан зүйл болон санааг хэлнэ.

Жишээ нь: харагдах хэлбэрт оруулсан дүрс, график, тухайн өгөгдлийн бүрдлийг бүхэлд нь эсвэл хэсэгчлэн ашигласан аппликейшн, сонины өгүүлэл гэх мэт тухайн өгөгдлийн бүрдэлтэй холбоотой бүгдийг хамарна.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Та холбоотой {name} -г устгахдаа итгэлтэй байна уу?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Апп болон Санаанууд" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

%(item_count)s хамааралтай зүйлээс %(first)s - %(last)s-г харуулж байна

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s хамааралтай зүйл олдлоо

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Одоогоор ирүүлсэн ямар нэг аппликейшн байхгүй байна." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Аппликейшн гэж юу вэ?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Эдгээр нь тус өгөгдлийн бүрдлүүдийг ашиглан бүтээсэн аппликейшнүүд бөгөөд мөн өгөгдлийн бүрдлүүдийг ашиглан өөр зүйл хийх, бүтээх боломжийг харуулж буй санаа юм." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Үр дүнг шүүх" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Төрлөөр шүүх" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Бүх" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Эрэмбэлэх" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Үндсэн тохиргоо" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Зөвхөн онцгой зүйлсийг харуулах" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Тохируулах" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Хамааралтай зүйлийг засварлах" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Хамааралтайг засах" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Хамааралтай зүйлийг засах" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Хамааралтай зүйл үүсгэх" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Хамааралтайг үүсгэх" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Холбоотой зүйл үүсгэх" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Надтай хамаарал бүхий зүйл" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Уг зүйлийн талаархи жижиг мэдээлэл..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Төрөл" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Та тус хамаарал бүхий зүйлийг устгахдаа итгэлдтэй байна уу?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Дараах руу очих {related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "Ялгаа" @@ -4045,7 +3833,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Тус хайлтанд таарах {facet_type} байхгүй байна." #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Нүүр" @@ -4054,7 +3841,7 @@ msgid "Language" msgstr "Хэл" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4086,21 +3873,25 @@ msgstr "Тус өгөгдлийн бүрдэлтэй хамааралтай ап msgid "Add Item" msgstr "Зүйл нэмэх" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Батлах" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Дараахаар эрэмбэлэх" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Үр дүнг шүүх" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Өөр хайлт хийнэ үү.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4140,7 +3931,7 @@ msgstr "\"{query}\" холбогдолтой ямар ч бүлэг олдсон msgid "{number} group found" msgid_plural "{number} groups found" msgstr[0] "{number} бүлэг олдлоо" -msgstr[1] "{тоо} бүлэг олдлоо" +msgstr[1] "{number} бүлэг олдлоо" #: ckan/templates/snippets/search_result_text.html:24 msgid "No groups found" @@ -4160,7 +3951,7 @@ msgstr "\"{query}\" -н үр дүнд байгууллага олдсонгүй" msgid "{number} organization found" msgid_plural "{number} organizations found" msgstr[0] "{number} - н байгууллага олдлоо" -msgstr[1] "{тоо} байгууллага олдлоо" +msgstr[1] "{number} байгууллага олдлоо" #: ckan/templates/snippets/search_result_text.html:30 msgid "No organizations found" @@ -4175,7 +3966,7 @@ msgid "Subscribe" msgstr "Захиалах" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4194,10 +3985,6 @@ msgstr "Өөрчлөлтүүд" msgid "Search Tags" msgstr "Хайлтын шошгууд" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Хяналтын самбар" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Мэдээний сурвалж" @@ -4261,36 +4048,27 @@ msgstr "Таны мэдээлэл CKAN-ын хэрэглэгчдэд таны х msgid "Change details" msgstr "Дэлгэрэнгүйг өөрчлөх" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Хэрэглэгчийн нэр" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Овог нэр " -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "Жишээ нь: Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "Жишээ нь: joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Таны тухай товч мэдээлэл" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Шинэ мэдэгдэл хүлээж авах e-mail хаяг" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Нууц үг өөрчлөх" @@ -4523,15 +4301,15 @@ msgstr "Хараахан байршуулагдаагүй байна" msgid "DataStore resource not found" msgstr "Өгөгдлийн агуулахын нөөц олдсонгүй" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Нөөц \"{0}\" олдсонгүй." @@ -4539,6 +4317,14 @@ msgstr "Нөөц \"{0}\" олдсонгүй." msgid "User {0} not authorized to update resource {1}" msgstr "Хэрэглэгч {0} нөөц {1}-г шинэчлэх эрхгүй байна" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4565,6 +4351,10 @@ msgstr "Улсын код" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4582,65 +4372,25 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Бүх эрхийг хуулиар хамгаалсан (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nДараах хүмүүс эрх нь бараг баталгаажсан ба хэрэглэж болно:\nПрограм хангамжийн хуулбар болон ямар нэгэн холбоотой бичиг баримтыг эзэмшсэн(Програм хангамж)\nПрограм хангамжийг хэрэглэх, хуулбарлах, засварлах, нэгтгэх, нийтлэх, тараах, дэд лиценз, эсвэл програм хангамжийн хуулбарыг худалдах, \nПрограм хангамж хийж дууссан хүнийг зөвшөөрөх зэрэг хязгаарлалтгүйгээр түгээсэн хүн бүр дараах нөхцөлийг дагаж мөрдөнө.\n\nДээрх дурдсан оюуны өмчийн мэдэгдэл ба эрхийн мэдэгдэл нь бүх програм хангамжийн хуулбаруудад агуулагдсан болно.\n\nПрограм хангамж нь \"AS IS\" хангадаг. Ямар ч баталгаагүй, \nШууд буюу шууд бус, үүний дотор нь баталгааг үүгээр хязгаарлагдахгүй\nАрилжихад, тодорхой нэг зорилгоор хэрэглэх чийрэгжүүлэлт\nЗөрчлийн бус, Ямар ч тохиолдолд зохиогчид, эсхүл зохиогчийн эрх эзэмшигчдийнх болно\nЯмар нэгэн шаардлага хариуцах, хохирол болон өөр бусад хариуцлага, үйл ажиллагаа эсэх\nГэрээний гэм хор эсвэл эсрэг, үүссэн , үүний эсвэл холбогдуулан\nПрограм хангамж эсвэл бусад хэрэглэгдэх програм хангамж" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "SlickGrid-н энэ хөрвүүлсэн хувилбар нь Google Closure\nхөрвүүлэгч-р хүлээн зөвшөөрөгдсөн, дараах коммандуудыг хэрэглэнэ:\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nSlickGrid-д зөв ажиллахын харахын тулд шаардлагатай хоёр өөр файл байдаг: \n\n * jquery-ui-1.8.16.custom.min.js \n * jquery.event.drag-2.0.min.js\n\nЭдгээр нь Recline эх үүсвэрийг оруулсан байна, гэхдээ \nфайлийн нийцтэй асуудлыг хялбар аргаар зохицуулагдахаар оруулж өгөөгүй. \n\nMIT-LICENSE.txt файл дах SlickGrid-н эрхийг шалгана уу.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4699,7 +4449,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Өгөгдлийн бүрдлийн нийт тоо" @@ -4727,33 +4476,27 @@ msgstr "Шинэ өгөгдлийн бүрдлүүд" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Өндөр үнэлгээтэй өгөгдлийн бүрдлүүд" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Дундаж үнэлгээ" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Үнэлгээ хийгдсэн тоо" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Үнэлгээ байхгүй" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Их засварлагдсан өгөгдлийн бүрдлүүд" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Засварлагдсан тоо" @@ -4763,12 +4506,10 @@ msgstr "Засварлагдаагүй өгөгдлийн бүрдлүүд" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Хамгийн том бүлгүүд" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Өгөгдлийн бүрдлүүд" @@ -4778,7 +4519,6 @@ msgstr "Бүлэг байхгүй" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Шилдэг шошгууд" @@ -4793,8 +4533,8 @@ msgstr "Өгөгдлийн бүрдлийн тоо" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Олон өгөгдлийн бүрдэл эзэмшиж буй хэрэглэгчид" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4804,42 +4544,16 @@ msgstr "Статистикийн цэс" msgid "Total Number of Datasets" msgstr "Нийт өгөгдлийн бүрдлийн тоо" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Үзүүлэлтүүд" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "7 хоног бүриийн өгөгдлийн бүрдлийн засварууд" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Олон өгөгдлийн бүрдэл эзэмшиж буй хэрэглэгчид" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Хуудсын сүүлд шинэчлэгдсэн огноо:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Тэргүүлэх самбар - Төлвүүд" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Өгөгдлийн бүрдлийн тэргүүлэх самбар" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Хамгийн их байгаа өгөгдлийн бүрдэлтэй ангилалуудаас өгөгдлийн бүрдлийн шинж чанарийг сонгоно уу. Жишээ нь шошгууд, бүлэгүүд, лиценз, төрөл, салбар" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Бүс нутгаа сонгоно уу" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/my/LC_MESSAGES/ckan.mo b/ckan/i18n/my/LC_MESSAGES/ckan.mo deleted file mode 100644 index ece8cf8a2af..00000000000 Binary files a/ckan/i18n/my/LC_MESSAGES/ckan.mo and /dev/null differ diff --git a/ckan/i18n/my/LC_MESSAGES/ckan.po b/ckan/i18n/my/LC_MESSAGES/ckan.po deleted file mode 100644 index b6caac3787e..00000000000 --- a/ckan/i18n/my/LC_MESSAGES/ckan.po +++ /dev/null @@ -1,4821 +0,0 @@ -# Translations template for ckan. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the ckan project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: CKAN\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Burmese (http://www.transifex.com/projects/p/ckan/language/my/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: my\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ckan/new_authz.py:178 -#, python-format -msgid "Authorization function not found: %s" -msgstr "" - -#: ckan/new_authz.py:190 -msgid "Admin" -msgstr "" - -#: ckan/new_authz.py:194 -msgid "Editor" -msgstr "" - -#: ckan/new_authz.py:198 -msgid "Member" -msgstr "" - -#: ckan/controllers/admin.py:27 -msgid "Need to be system administrator to administer" -msgstr "" - -#: ckan/controllers/admin.py:43 -msgid "Site Title" -msgstr "" - -#: ckan/controllers/admin.py:44 -msgid "Style" -msgstr "" - -#: ckan/controllers/admin.py:45 -msgid "Site Tag Line" -msgstr "" - -#: ckan/controllers/admin.py:46 -msgid "Site Tag Logo" -msgstr "" - -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 -#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 -#: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 -#: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 -#: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 -msgid "About" -msgstr "" - -#: ckan/controllers/admin.py:47 -msgid "About page text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Intro Text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Text on home page" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Custom CSS" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Customisable css inserted into the page header" -msgstr "" - -#: ckan/controllers/admin.py:50 -msgid "Homepage" -msgstr "" - -#: ckan/controllers/admin.py:131 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" -msgstr "" - -#: ckan/controllers/admin.py:153 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "" - -#: ckan/controllers/admin.py:155 -msgid "Purge complete" -msgstr "" - -#: ckan/controllers/admin.py:157 -msgid "Action not implemented." -msgstr "" - -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 -#: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 -msgid "Not authorized to see this page" -msgstr "" - -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 -msgid "Access denied" -msgstr "" - -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 -#: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 -msgid "Not found" -msgstr "" - -#: ckan/controllers/api.py:130 -msgid "Bad request" -msgstr "" - -#: ckan/controllers/api.py:164 -#, python-format -msgid "Action name not known: %s" -msgstr "" - -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 -#, python-format -msgid "JSON Error: %s" -msgstr "" - -#: ckan/controllers/api.py:190 -#, python-format -msgid "Bad request data: %s" -msgstr "" - -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:318 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:357 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:389 -msgid "Unable to add package to search index" -msgstr "" - -#: ckan/controllers/api.py:419 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:442 -msgid "Unable to update search index" -msgstr "" - -#: ckan/controllers/api.py:466 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:489 -msgid "No revision specified" -msgstr "" - -#: ckan/controllers/api.py:493 -#, python-format -msgid "There is no revision with id: %s" -msgstr "" - -#: ckan/controllers/api.py:503 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" - -#: ckan/controllers/api.py:513 -#, python-format -msgid "Could not read parameters: %r" -msgstr "" - -#: ckan/controllers/api.py:574 -#, python-format -msgid "Bad search option: %s" -msgstr "" - -#: ckan/controllers/api.py:577 -#, python-format -msgid "Unknown register: %s" -msgstr "" - -#: ckan/controllers/api.py:586 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "" - -#: ckan/controllers/api.py:596 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" - -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 -msgid "Group not found" -msgstr "" - -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 -msgid "Organization not found" -msgstr "" - -#: ckan/controllers/group.py:172 -msgid "Incorrect group type" -msgstr "" - -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 -#, python-format -msgid "Unauthorized to read group %s" -msgstr "" - -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "" - -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 -#: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 -#: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 -#: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 -#: ckan/templates/group/read_base.html:6 -#: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "" - -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "" - -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 -msgid "Formats" -msgstr "" - -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 -msgid "Licenses" -msgstr "" - -#: ckan/controllers/group.py:429 -msgid "Not authorized to perform bulk update" -msgstr "" - -#: ckan/controllers/group.py:446 -msgid "Unauthorized to create a group" -msgstr "" - -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "" - -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 -msgid "Integrity Error" -msgstr "" - -#: ckan/controllers/group.py:586 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "" - -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "" - -#: ckan/controllers/group.py:609 -msgid "Organization has been deleted." -msgstr "" - -#: ckan/controllers/group.py:611 -msgid "Group has been deleted." -msgstr "" - -#: ckan/controllers/group.py:677 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "" - -#: ckan/controllers/group.py:694 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "" - -#: ckan/controllers/group.py:700 -msgid "Group member has been deleted." -msgstr "" - -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 -msgid "Select two revisions before doing the comparison." -msgstr "" - -#: ckan/controllers/group.py:741 -#, python-format -msgid "User %r not authorized to edit %r" -msgstr "" - -#: ckan/controllers/group.py:748 -msgid "CKAN Group Revision History" -msgstr "" - -#: ckan/controllers/group.py:751 -msgid "Recent changes to CKAN Group: " -msgstr "" - -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 -msgid "Log message: " -msgstr "" - -#: ckan/controllers/group.py:798 -msgid "Unauthorized to read group {group_id}" -msgstr "" - -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 -msgid "You are now following {0}" -msgstr "" - -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 -msgid "You are no longer following {0}" -msgstr "" - -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "" - -#: ckan/controllers/home.py:37 -msgid "This site is currently off-line. Database is not initialised." -msgstr "" - -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" - -#: ckan/controllers/home.py:105 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "" - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 -msgid "Dataset not found" -msgstr "" - -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "" - -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 -#, python-format -msgid "Invalid revision format: %r" -msgstr "" - -#: ckan/controllers/package.py:427 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" - -#: ckan/controllers/package.py:472 -msgid "CKAN Dataset Revision History" -msgstr "" - -#: ckan/controllers/package.py:475 -msgid "Recent changes to CKAN Dataset: " -msgstr "" - -#: ckan/controllers/package.py:532 -msgid "Unauthorized to create a package" -msgstr "" - -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 -msgid "Unauthorized to edit this resource" -msgstr "" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 -msgid "Resource not found" -msgstr "" - -#: ckan/controllers/package.py:682 -msgid "Unauthorized to update dataset" -msgstr "" - -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 -msgid "The dataset {id} could not be found." -msgstr "" - -#: ckan/controllers/package.py:688 -msgid "You must add at least one data resource" -msgstr "" - -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 -msgid "Error" -msgstr "" - -#: ckan/controllers/package.py:714 -msgid "Unauthorized to create a resource" -msgstr "" - -#: ckan/controllers/package.py:750 -msgid "Unauthorized to create a resource for this package" -msgstr "" - -#: ckan/controllers/package.py:973 -msgid "Unable to add package to search index." -msgstr "" - -#: ckan/controllers/package.py:1020 -msgid "Unable to update search index." -msgstr "" - -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "" - -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1088 -msgid "Resource has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1093 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "" - -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "" - -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 -msgid "Resource view not found" -msgstr "" - -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "" - -#: ckan/controllers/package.py:1193 -msgid "Resource data not found" -msgstr "" - -#: ckan/controllers/package.py:1201 -msgid "No download is available" -msgstr "" - -#: ckan/controllers/package.py:1523 -msgid "Unauthorized to edit resource" -msgstr "" - -#: ckan/controllers/package.py:1541 -msgid "View not found" -msgstr "" - -#: ckan/controllers/package.py:1543 -#, python-format -msgid "Unauthorized to view View %s" -msgstr "" - -#: ckan/controllers/package.py:1549 -msgid "View Type Not found" -msgstr "" - -#: ckan/controllers/package.py:1609 -msgid "Bad resource view data" -msgstr "" - -#: ckan/controllers/package.py:1618 -#, python-format -msgid "Unauthorized to read resource view %s" -msgstr "" - -#: ckan/controllers/package.py:1621 -msgid "Resource view not supplied" -msgstr "" - -#: ckan/controllers/package.py:1650 -msgid "No preview has been defined." -msgstr "" - -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - -#: ckan/controllers/revision.py:42 -msgid "CKAN Repository Revision History" -msgstr "" - -#: ckan/controllers/revision.py:44 -msgid "Recent changes to the CKAN repository." -msgstr "" - -#: ckan/controllers/revision.py:108 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "" - -#: ckan/controllers/revision.py:188 -msgid "Revision updated" -msgstr "" - -#: ckan/controllers/tag.py:56 -msgid "Other" -msgstr "" - -#: ckan/controllers/tag.py:70 -msgid "Tag not found" -msgstr "" - -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 -msgid "User not found" -msgstr "" - -#: ckan/controllers/user.py:149 -msgid "Unauthorized to register as a user." -msgstr "" - -#: ckan/controllers/user.py:166 -msgid "Unauthorized to create a user" -msgstr "" - -#: ckan/controllers/user.py:197 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" - -#: ckan/controllers/user.py:211 ckan/controllers/user.py:270 -msgid "No user specified" -msgstr "" - -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "" - -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 -msgid "Profile updated" -msgstr "" - -#: ckan/controllers/user.py:232 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "" - -#: ckan/controllers/user.py:238 -msgid "Bad Captcha. Please try again." -msgstr "" - -#: ckan/controllers/user.py:255 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "" - -#: ckan/controllers/user.py:276 -msgid "Unauthorized to edit a user." -msgstr "" - -#: ckan/controllers/user.py:302 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "" - -#: ckan/controllers/user.py:383 -msgid "Login failed. Bad username or password." -msgstr "" - -#: ckan/controllers/user.py:417 -msgid "Unauthorized to request reset password." -msgstr "" - -#: ckan/controllers/user.py:446 -#, python-format -msgid "\"%s\" matched several users" -msgstr "" - -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 -#, python-format -msgid "No such user: %s" -msgstr "" - -#: ckan/controllers/user.py:455 -msgid "Please check your inbox for a reset code." -msgstr "" - -#: ckan/controllers/user.py:459 -#, python-format -msgid "Could not send reset link: %s" -msgstr "" - -#: ckan/controllers/user.py:474 -msgid "Unauthorized to reset password." -msgstr "" - -#: ckan/controllers/user.py:486 -msgid "Invalid reset key. Please try again." -msgstr "" - -#: ckan/controllers/user.py:498 -msgid "Your password has been reset." -msgstr "" - -#: ckan/controllers/user.py:519 -msgid "Your password must be 4 characters or longer." -msgstr "" - -#: ckan/controllers/user.py:522 -msgid "The passwords you entered do not match." -msgstr "" - -#: ckan/controllers/user.py:525 -msgid "You must provide a password" -msgstr "" - -#: ckan/controllers/user.py:589 -msgid "Follow item not found" -msgstr "" - -#: ckan/controllers/user.py:593 -msgid "{0} not found" -msgstr "" - -#: ckan/controllers/user.py:595 -msgid "Unauthorized to read {0} {1}" -msgstr "" - -#: ckan/controllers/user.py:610 -msgid "Everything" -msgstr "" - -#: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 -msgid "Missing Value" -msgstr "" - -#: ckan/controllers/util.py:21 -msgid "Redirecting to external site is not allowed." -msgstr "" - -#: ckan/lib/activity_streams.py:64 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:67 -msgid "{actor} updated the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:70 -msgid "{actor} updated the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:73 -msgid "{actor} updated the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:76 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:79 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:82 -msgid "{actor} updated their profile" -msgstr "" - -#: ckan/lib/activity_streams.py:86 -msgid "" -"{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:89 -msgid "{actor} updated the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:92 -msgid "{actor} deleted the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:95 -msgid "{actor} deleted the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:98 -msgid "{actor} deleted the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:101 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:104 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:108 -msgid "{actor} created the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:111 -msgid "{actor} created the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:114 -msgid "{actor} created the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:117 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:120 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:123 -msgid "{actor} signed up" -msgstr "" - -#: ckan/lib/activity_streams.py:126 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:129 -msgid "{actor} deleted the related item {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:132 -msgid "{actor} started following {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:135 -msgid "{actor} started following {user}" -msgstr "" - -#: ckan/lib/activity_streams.py:138 -msgid "{actor} started following {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:142 -msgid "" -"{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:145 -msgid "{actor} added the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "" - -#: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" - -#: ckan/lib/formatters.py:17 -msgid "January" -msgstr "" - -#: ckan/lib/formatters.py:21 -msgid "February" -msgstr "" - -#: ckan/lib/formatters.py:25 -msgid "March" -msgstr "" - -#: ckan/lib/formatters.py:29 -msgid "April" -msgstr "" - -#: ckan/lib/formatters.py:33 -msgid "May" -msgstr "" - -#: ckan/lib/formatters.py:37 -msgid "June" -msgstr "" - -#: ckan/lib/formatters.py:41 -msgid "July" -msgstr "" - -#: ckan/lib/formatters.py:45 -msgid "August" -msgstr "" - -#: ckan/lib/formatters.py:49 -msgid "September" -msgstr "" - -#: ckan/lib/formatters.py:53 -msgid "October" -msgstr "" - -#: ckan/lib/formatters.py:57 -msgid "November" -msgstr "" - -#: ckan/lib/formatters.py:61 -msgid "December" -msgstr "" - -#: ckan/lib/formatters.py:109 -msgid "Just now" -msgstr "" - -#: ckan/lib/formatters.py:111 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:114 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:120 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:123 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:125 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" - -#: ckan/lib/formatters.py:142 -msgid "{month} {day}, {year}" -msgstr "" - -#: ckan/lib/formatters.py:158 -msgid "{bytes} bytes" -msgstr "" - -#: ckan/lib/formatters.py:160 -msgid "{kibibytes} KiB" -msgstr "" - -#: ckan/lib/formatters.py:162 -msgid "{mebibytes} MiB" -msgstr "" - -#: ckan/lib/formatters.py:164 -msgid "{gibibytes} GiB" -msgstr "" - -#: ckan/lib/formatters.py:166 -msgid "{tebibytes} TiB" -msgstr "" - -#: ckan/lib/formatters.py:178 -msgid "{n}" -msgstr "" - -#: ckan/lib/formatters.py:180 -msgid "{k}k" -msgstr "" - -#: ckan/lib/formatters.py:182 -msgid "{m}M" -msgstr "" - -#: ckan/lib/formatters.py:184 -msgid "{g}G" -msgstr "" - -#: ckan/lib/formatters.py:186 -msgid "{t}T" -msgstr "" - -#: ckan/lib/formatters.py:188 -msgid "{p}P" -msgstr "" - -#: ckan/lib/formatters.py:190 -msgid "{e}E" -msgstr "" - -#: ckan/lib/formatters.py:192 -msgid "{z}Z" -msgstr "" - -#: ckan/lib/formatters.py:194 -msgid "{y}Y" -msgstr "" - -#: ckan/lib/helpers.py:858 -msgid "Update your avatar at gravatar.com" -msgstr "" - -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 -msgid "Unknown" -msgstr "" - -#: ckan/lib/helpers.py:1117 -msgid "Unnamed resource" -msgstr "" - -#: ckan/lib/helpers.py:1164 -msgid "Created new dataset." -msgstr "" - -#: ckan/lib/helpers.py:1166 -msgid "Edited resources." -msgstr "" - -#: ckan/lib/helpers.py:1168 -msgid "Edited settings." -msgstr "" - -#: ckan/lib/helpers.py:1431 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" - -#: ckan/lib/helpers.py:1433 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" - -#: ckan/lib/mailer.py:25 -#, python-format -msgid "Dear %s," -msgstr "" - -#: ckan/lib/mailer.py:38 -#, python-format -msgid "%s <%s>" -msgstr "" - -#: ckan/lib/mailer.py:99 -msgid "No recipient email address available!" -msgstr "" - -#: ckan/lib/mailer.py:104 -msgid "" -"You have requested your password on {site_title} to be reset.\n" -"\n" -"Please click the following link to confirm this request:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:119 -msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" -"\n" -"To accept this invite, please reset your password at:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "" - -#: ckan/lib/mailer.py:151 -msgid "Invite for {site_title}" -msgstr "" - -#: ckan/lib/navl/dictization_functions.py:11 -#: ckan/lib/navl/dictization_functions.py:13 -#: ckan/lib/navl/dictization_functions.py:15 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:19 -#: ckan/lib/navl/dictization_functions.py:21 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 -#: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 -msgid "Missing value" -msgstr "" - -#: ckan/lib/navl/validators.py:64 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "" - -#: ckan/lib/navl/validators.py:116 -msgid "Please enter an integer value" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -msgid "Package resource(s) invalid" -msgstr "" - -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 -msgid "Extras" -msgstr "" - -#: ckan/logic/converters.py:72 ckan/logic/converters.py:87 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" - -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "" - -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Dataset" -msgstr "" - -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Group" -msgstr "" - -#: ckan/logic/converters.py:178 -msgid "Could not parse as valid JSON" -msgstr "" - -#: ckan/logic/validators.py:30 ckan/logic/validators.py:39 -msgid "A organization must be supplied" -msgstr "" - -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 -msgid "Organization does not exist" -msgstr "" - -#: ckan/logic/validators.py:53 -msgid "You cannot add a dataset to this organization" -msgstr "" - -#: ckan/logic/validators.py:93 -msgid "Invalid integer" -msgstr "" - -#: ckan/logic/validators.py:98 -msgid "Must be a natural number" -msgstr "" - -#: ckan/logic/validators.py:104 -msgid "Must be a postive integer" -msgstr "" - -#: ckan/logic/validators.py:122 -msgid "Date format incorrect" -msgstr "" - -#: ckan/logic/validators.py:131 -msgid "No links are allowed in the log_message." -msgstr "" - -#: ckan/logic/validators.py:151 -msgid "Dataset id already exists" -msgstr "" - -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 -msgid "Resource" -msgstr "" - -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 -#: ckan/templates/snippets/related.html:2 -msgid "Related" -msgstr "" - -#: ckan/logic/validators.py:260 -msgid "That group name or ID does not exist." -msgstr "" - -#: ckan/logic/validators.py:274 -msgid "Activity type" -msgstr "" - -#: ckan/logic/validators.py:349 -msgid "Names must be strings" -msgstr "" - -#: ckan/logic/validators.py:353 -msgid "That name cannot be used" -msgstr "" - -#: ckan/logic/validators.py:356 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:361 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" - -#: ckan/logic/validators.py:379 -msgid "That URL is already in use." -msgstr "" - -#: ckan/logic/validators.py:384 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:388 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "" - -#: ckan/logic/validators.py:394 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:412 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "" - -#: ckan/logic/validators.py:428 -msgid "Group name already exists in database" -msgstr "" - -#: ckan/logic/validators.py:434 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:438 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" - -#: ckan/logic/validators.py:446 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" - -#: ckan/logic/validators.py:454 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "" - -#: ckan/logic/validators.py:563 -msgid "User names must be strings" -msgstr "" - -#: ckan/logic/validators.py:579 -msgid "That login name is not available." -msgstr "" - -#: ckan/logic/validators.py:588 -msgid "Please enter both passwords" -msgstr "" - -#: ckan/logic/validators.py:596 -msgid "Passwords must be strings" -msgstr "" - -#: ckan/logic/validators.py:600 -msgid "Your password must be 4 characters or longer" -msgstr "" - -#: ckan/logic/validators.py:608 -msgid "The passwords you entered do not match" -msgstr "" - -#: ckan/logic/validators.py:624 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" - -#: ckan/logic/validators.py:633 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:641 -msgid "That vocabulary name is already in use." -msgstr "" - -#: ckan/logic/validators.py:647 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" - -#: ckan/logic/validators.py:656 -msgid "Tag vocabulary was not found." -msgstr "" - -#: ckan/logic/validators.py:669 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:675 -msgid "No tag name" -msgstr "" - -#: ckan/logic/validators.py:688 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:711 -msgid "Please provide a valid URL" -msgstr "" - -#: ckan/logic/validators.py:725 -msgid "role does not exist." -msgstr "" - -#: ckan/logic/validators.py:754 -msgid "Datasets with no organization can't be private." -msgstr "" - -#: ckan/logic/validators.py:760 -msgid "Not a list" -msgstr "" - -#: ckan/logic/validators.py:763 -msgid "Not a string" -msgstr "" - -#: ckan/logic/validators.py:795 -msgid "This parent would create a loop in the hierarchy" -msgstr "" - -#: ckan/logic/validators.py:805 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" - -#: ckan/logic/validators.py:816 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" - -#: ckan/logic/validators.py:819 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" - -#: ckan/logic/validators.py:833 -msgid "There is a schema field with the same name" -msgstr "" - -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 -#, python-format -msgid "REST API: Create object %s" -msgstr "" - -#: ckan/logic/action/create.py:517 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/create.py:558 -#, python-format -msgid "REST API: Create member object %s" -msgstr "" - -#: ckan/logic/action/create.py:772 -msgid "Trying to create an organization as a group" -msgstr "" - -#: ckan/logic/action/create.py:859 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" - -#: ckan/logic/action/create.py:862 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "" - -#: ckan/logic/action/create.py:867 -msgid "Rating must be an integer value." -msgstr "" - -#: ckan/logic/action/create.py:871 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "" - -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 -msgid "You must be logged in to follow users" -msgstr "" - -#: ckan/logic/action/create.py:1236 -msgid "You cannot follow yourself" -msgstr "" - -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 -msgid "You are already following {0}" -msgstr "" - -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 -msgid "You must be logged in to follow a dataset." -msgstr "" - -#: ckan/logic/action/create.py:1335 -msgid "User {username} does not exist." -msgstr "" - -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 -msgid "You must be logged in to follow a group." -msgstr "" - -#: ckan/logic/action/delete.py:68 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "" - -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 -#, python-format -msgid "REST API: Delete %s" -msgstr "" - -#: ckan/logic/action/delete.py:270 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "" - -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 -msgid "id not in data" -msgstr "" - -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:501 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 -msgid "You must be logged in to unfollow something." -msgstr "" - -#: ckan/logic/action/delete.py:542 -msgid "You are not following {0}." -msgstr "" - -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 -msgid "Resource was not found." -msgstr "" - -#: ckan/logic/action/get.py:1851 -msgid "Do not specify if using \"query\" parameter" -msgstr "" - -#: ckan/logic/action/get.py:1860 -msgid "Must be : pair(s)" -msgstr "" - -#: ckan/logic/action/get.py:1892 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" - -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 -msgid "Item was not found." -msgstr "" - -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 -msgid "Package was not found." -msgstr "" - -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 -#, python-format -msgid "REST API: Update object %s" -msgstr "" - -#: ckan/logic/action/update.py:437 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/update.py:789 -msgid "TaskStatus was not found." -msgstr "" - -#: ckan/logic/action/update.py:1180 -msgid "Organization was not found." -msgstr "" - -#: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 -#, python-format -msgid "User %s not authorized to create packages" -msgstr "" - -#: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "" - -#: ckan/logic/auth/create.py:36 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" - -#: ckan/logic/auth/create.py:58 -msgid "You must be a sysadmin to create a featured related item" -msgstr "" - -#: ckan/logic/auth/create.py:62 -msgid "You must be logged in to add a related item" -msgstr "" - -#: ckan/logic/auth/create.py:77 -msgid "No dataset id provided, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 -#: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 -msgid "No package found for this resource, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:92 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" - -#: ckan/logic/auth/create.py:115 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "" - -#: ckan/logic/auth/create.py:126 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "" - -#: ckan/logic/auth/create.py:136 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "" - -#: ckan/logic/auth/create.py:152 -msgid "User {user} not authorized to create users via the API" -msgstr "" - -#: ckan/logic/auth/create.py:155 -msgid "Not authorized to create users" -msgstr "" - -#: ckan/logic/auth/create.py:198 -msgid "Group was not found." -msgstr "" - -#: ckan/logic/auth/create.py:218 -msgid "Valid API key needed to create a package" -msgstr "" - -#: ckan/logic/auth/create.py:226 -msgid "Valid API key needed to create a group" -msgstr "" - -#: ckan/logic/auth/create.py:246 -#, python-format -msgid "User %s not authorized to add members" -msgstr "" - -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:34 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "" - -#: ckan/logic/auth/delete.py:50 -msgid "Resource view not found, cannot check auth." -msgstr "" - -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 -msgid "Only the owner can delete a related item" -msgstr "" - -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "" - -#: ckan/logic/auth/delete.py:95 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "" - -#: ckan/logic/auth/delete.py:99 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:116 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "" - -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "" - -#: ckan/logic/auth/delete.py:133 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "" - -#: ckan/logic/auth/get.py:97 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "" - -#: ckan/logic/auth/get.py:119 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" - -#: ckan/logic/auth/get.py:141 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "" - -#: ckan/logic/auth/get.py:166 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" - -#: ckan/logic/auth/get.py:234 -msgid "You must be logged in to access your dashboard." -msgstr "" - -#: ckan/logic/auth/update.py:37 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "" - -#: ckan/logic/auth/update.py:69 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "" - -#: ckan/logic/auth/update.py:98 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "" - -#: ckan/logic/auth/update.py:126 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "" - -#: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 -msgid "Only the owner can update a related item" -msgstr "" - -#: ckan/logic/auth/update.py:148 -msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" - -#: ckan/logic/auth/update.py:165 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:182 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:209 -msgid "Have to be logged in to edit user" -msgstr "" - -#: ckan/logic/auth/update.py:217 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "" - -#: ckan/logic/auth/update.py:228 -msgid "User {0} not authorized to update user {1}" -msgstr "" - -#: ckan/logic/auth/update.py:236 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "" - -#: ckan/logic/auth/update.py:245 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "" - -#: ckan/logic/auth/update.py:259 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" - -#: ckan/logic/auth/update.py:281 -msgid "Valid API key needed to edit a package" -msgstr "" - -#: ckan/logic/auth/update.py:291 -msgid "Valid API key needed to edit a group" -msgstr "" - -#: ckan/model/license.py:177 -msgid "License not specified" -msgstr "" - -#: ckan/model/license.py:187 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" - -#: ckan/model/license.py:197 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" - -#: ckan/model/license.py:207 -msgid "Open Data Commons Attribution License" -msgstr "" - -#: ckan/model/license.py:218 -msgid "Creative Commons CCZero" -msgstr "" - -#: ckan/model/license.py:227 -msgid "Creative Commons Attribution" -msgstr "" - -#: ckan/model/license.py:237 -msgid "Creative Commons Attribution Share-Alike" -msgstr "" - -#: ckan/model/license.py:246 -msgid "GNU Free Documentation License" -msgstr "" - -#: ckan/model/license.py:256 -msgid "Other (Open)" -msgstr "" - -#: ckan/model/license.py:266 -msgid "Other (Public Domain)" -msgstr "" - -#: ckan/model/license.py:276 -msgid "Other (Attribution)" -msgstr "" - -#: ckan/model/license.py:288 -msgid "UK Open Government Licence (OGL)" -msgstr "" - -#: ckan/model/license.py:296 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "" - -#: ckan/model/license.py:304 -msgid "Other (Non-Commercial)" -msgstr "" - -#: ckan/model/license.py:312 -msgid "Other (Not Open)" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "depends on %s" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "is a dependency of %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "derives from %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "has derivation %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "links to %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is linked from %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a child of %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a parent of %s" -msgstr "" - -#: ckan/model/package_relationship.py:59 -#, python-format -msgid "has sibling %s" -msgstr "" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:12 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "" - -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:14 -#: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 -msgid "Cancel" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:15 -msgid "Upload" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Link" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:17 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 -msgid "Remove" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 -msgid "Image" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:19 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:20 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:25 -msgid "show more" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:26 -msgid "show less" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 -msgid "URL" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 -msgid "Edit" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "" - -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "" - -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "" - -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "" - -#: ckan/templates/footer.html:16 -msgid "Open Knowledge Foundation" -msgstr "" - -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" - -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "" - -#: ckan/templates/header.html:18 -msgid "View profile" -msgstr "" - -#: ckan/templates/header.html:25 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" - -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "" - -#: ckan/templates/header.html:40 -msgid "Log out" -msgstr "" - -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "" - -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "" - -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "" - -#: ckan/templates/header.html:112 -msgid "Search Datasets" -msgstr "" - -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 -#: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 -msgid "Search" -msgstr "" - -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "" - -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "" - -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "" - -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "" - -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "" - -#: ckan/templates/admin/config.html:11 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "" - -#: ckan/templates/admin/config.html:12 -msgid "Reset" -msgstr "" - -#: ckan/templates/admin/config.html:13 -msgid "Update Config" -msgstr "" - -#: ckan/templates/admin/config.html:22 -msgid "CKAN config options" -msgstr "" - -#: ckan/templates/admin/config.html:29 -#, python-format -msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " -"Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" -"

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" -msgstr "" - -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "" - -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "" - -#: ckan/templates/admin/index.html:20 -#, python-format -msgid "" -"

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" -msgstr "" - -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" - -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:12 -#, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "" - -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "" - -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "" - -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "" - -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "" - -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "" - -#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 -#: ckan/templates/organization/admins.html:3 -#: ckan/templates/organization/admins.html:6 -msgid "Administrators" -msgstr "" - -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "" - -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 -msgid "Confirm Delete" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "" - -#: ckan/templates/group/confirm_delete_member.html:11 -#: ckan/templates/organization/confirm_delete_member.html:11 -msgid "Are you sure you want to delete member - {name}?" -msgstr "" - -#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:11 -#: ckan/templates/group/read_base.html:12 -#: ckan/templates/organization/edit_base.html:11 -#: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "" - -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "" - -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 -#: ckan/templates/organization/edit_base.html:24 -#: ckan/templates/organization/members.html:3 -msgid "Members" -msgstr "" - -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "" - -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "" - -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "" - -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "" - -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -msgid "Edit Member" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "" - -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "" - -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "" - -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "" - -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" - -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "" - -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "" - -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:38 -msgid "Delete" -msgstr "" - -#: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 -msgid "Save" -msgstr "" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "" - -#: ckan/templates/group/member_new.html:81 -msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " -"datasets from groups

" -msgstr "" - -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "" - -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 -msgid "Description" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:8 -msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " -msgstr "" - -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "" - -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "" - -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "" - -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "" - -#: ckan/templates/home/snippets/about_text.html:1 -msgid "" -"

CKAN is the world’s leading open-source data portal platform.

" -"

CKAN is a complete out-of-the-box software solution that makes data " -"accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " -"government portals, as well as city and municipal sites in the US, UK, " -"Argentina, Finland and elsewhere.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features " -"overview: http://ckan.org/features/

" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:10 -msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "" - -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" - -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" - -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "dataset" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "datasets" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organization" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organizations" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "group" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "" - -#: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 -msgid "The form contains invalid entries:" -msgstr "" - -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "" - -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "" - -#: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 -msgid "Image URL" -msgstr "" - -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "" - -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "" - -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "" - -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" -msgstr "" - -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "" - -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "" - -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "" - -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "" - -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

Admin: Can add/edit and delete datasets, as well as " -"manage organization members.

Editor: Can add and " -"edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" -msgstr "" - -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "" - -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "" - -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:7 -msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" -msgstr "" - -#: ckan/templates/organization/snippets/helper.html:8 -msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "" - -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "" - -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "" - -#: ckan/templates/package/base_form_page.html:25 -msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " -msgstr "" - -#: ckan/templates/package/confirm_delete.html:11 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" - -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "" - -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "" - -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "" - -#: ckan/templates/package/edit_view.html:3 -#: ckan/templates/package/edit_view.html:4 -#: ckan/templates/package/edit_view.html:8 -#: ckan/templates/package/edit_view.html:12 -msgid "Edit view" -msgstr "" - -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "" - -#: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 -msgid "Update" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "" - -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "" - -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "" - -#: ckan/templates/package/new_view.html:3 -#: ckan/templates/package/new_view.html:4 -#: ckan/templates/package/new_view.html:8 -#: ckan/templates/package/new_view.html:12 -msgid "Add view" -msgstr "" - -#: ckan/templates/package/new_view.html:19 -msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " -msgstr "" - -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "" - -#: ckan/templates/package/read_base.html:38 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" - -#: ckan/templates/package/related_list.html:7 -msgid "Related Media for {dataset}" -msgstr "" - -#: ckan/templates/package/related_list.html:12 -msgid "No related items" -msgstr "" - -#: ckan/templates/package/related_list.html:17 -msgid "Add Related Item" -msgstr "" - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:45 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:49 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "" - -#: ckan/templates/package/resource_data.html:53 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:59 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:71 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:78 -msgid "End of log" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "" - -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "" - -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "" - -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "" - -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "" - -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" - -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" - -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" - -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" - -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "" - -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "" - -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "" - -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "" - -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 -msgid "Created" -msgstr "" - -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "" - -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "" - -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" - -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" - -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "" - -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

This dataset has no data, why not " -"add some?

" -msgstr "" - -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "" - -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "" - -#: ckan/templates/package/search.html:56 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" - -#: ckan/templates/package/search.html:60 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " -msgstr "" - -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:37 -#: ckan/templates/package/snippets/additional_info.html:42 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -msgid "Maintainer" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" - -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 -msgid "Title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:40 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:69 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:73 -msgid "No organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:88 -msgid "Visibility" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:91 -msgid "Public" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:110 -msgid "Active" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:28 -msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -#: ckan/templates/user/new_user_form.html:6 -msgid "Joe Bloggs" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -#: ckan/templates/user/new_user_form.html:7 -msgid "joe@example.com" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "" - -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "File" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:10 -msgid "Embed" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "" - -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "" - -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:30 -#: ckan/templates/package/snippets/stages.html:34 -#: ckan/templates/package/snippets/stages.html:36 -msgid "Add data" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "" - -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "" - -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "" - -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "" - -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "" - -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "" - -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "" - -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "" - -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "" - -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 -msgid "Home" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "" - -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "" - -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" - -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "" - -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "" - -#: ckan/templates/snippets/related.html:15 -msgid "" -"No apps, ideas, news stories or images have been related to this dataset " -"yet." -msgstr "" - -#: ckan/templates/snippets/related.html:18 -msgid "Add Item" -msgstr "" - -#: ckan/templates/snippets/search_form.html:16 -msgid "Submit" -msgstr "" - -#: ckan/templates/snippets/search_form.html:31 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "" - -#: ckan/templates/snippets/search_form.html:77 -msgid "

Please try another search.

" -msgstr "" - -#: ckan/templates/snippets/search_form.html:83 -msgid "" -"

There was an error while searching. Please try " -"again.

" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:15 -msgid "{number} dataset found for \"{query}\"" -msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:21 -msgid "{number} group found for \"{query}\"" -msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:27 -msgid "{number} organization found for \"{query}\"" -msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "" - -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 -#: ckan/templates/user/new_user_form.html:7 -#: ckan/templates/user/read_base.html:82 -msgid "Email" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "" - -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "" - -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "" - -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "" - -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "" - -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "" - -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "" - -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "" - -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "" - -#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 -#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 -#: ckan/templates/user/snippets/user_search.html:2 -msgid "Users" -msgstr "" - -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "" - -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" - -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "Full name" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "eg. Joe Bloggs" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:13 -msgid "eg. joe@example.com" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:15 -msgid "A little information about yourself" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:18 -msgid "Subscribe to notification emails" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:27 -msgid "Change password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:29 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:31 -msgid "Confirm Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:37 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:43 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:44 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:48 -msgid "Update Profile" -msgstr "" - -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "" - -#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 -#: ckan/templates/user/login.html:12 -#: ckan/templates/user/snippets/login_form.html:28 -msgid "Login" -msgstr "" - -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "" - -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "" - -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "" - -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "" - -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" - -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "" - -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "" - -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "" - -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "" - -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:19 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:20 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:27 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:31 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:652 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:16 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "Custom Text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" - -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" - -#: ckanext/reclineview/plugin.py:82 -msgid "Data Explorer" -msgstr "" - -#: ckanext/reclineview/plugin.py:106 -msgid "Table" -msgstr "" - -#: ckanext/reclineview/plugin.py:149 -msgid "Graph" -msgstr "" - -#: ckanext/reclineview/plugin.py:207 -msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 -msgid "Total number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 -msgid "Top Rated Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Average rating" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 -msgid "No ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 -msgid "Most Edited Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Number of edits" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 -msgid "Largest Groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Number of datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 -msgid "Top Tags" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "" - -#: ckanext/webpageview/plugin.py:24 -msgid "Website" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" diff --git a/ckan/i18n/my_MM/LC_MESSAGES/ckan.mo b/ckan/i18n/my_MM/LC_MESSAGES/ckan.mo deleted file mode 100644 index 59e1e79f0f0..00000000000 Binary files a/ckan/i18n/my_MM/LC_MESSAGES/ckan.mo and /dev/null differ diff --git a/ckan/i18n/my_MM/LC_MESSAGES/ckan.po b/ckan/i18n/my_MM/LC_MESSAGES/ckan.po deleted file mode 100644 index 402c1eb4a19..00000000000 --- a/ckan/i18n/my_MM/LC_MESSAGES/ckan.po +++ /dev/null @@ -1,4821 +0,0 @@ -# Translations template for ckan. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the ckan project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: CKAN\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/ckan/language/my_MM/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: my_MM\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ckan/new_authz.py:178 -#, python-format -msgid "Authorization function not found: %s" -msgstr "" - -#: ckan/new_authz.py:190 -msgid "Admin" -msgstr "" - -#: ckan/new_authz.py:194 -msgid "Editor" -msgstr "" - -#: ckan/new_authz.py:198 -msgid "Member" -msgstr "" - -#: ckan/controllers/admin.py:27 -msgid "Need to be system administrator to administer" -msgstr "" - -#: ckan/controllers/admin.py:43 -msgid "Site Title" -msgstr "" - -#: ckan/controllers/admin.py:44 -msgid "Style" -msgstr "" - -#: ckan/controllers/admin.py:45 -msgid "Site Tag Line" -msgstr "" - -#: ckan/controllers/admin.py:46 -msgid "Site Tag Logo" -msgstr "" - -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 -#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 -#: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 -#: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 -#: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 -msgid "About" -msgstr "" - -#: ckan/controllers/admin.py:47 -msgid "About page text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Intro Text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Text on home page" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Custom CSS" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Customisable css inserted into the page header" -msgstr "" - -#: ckan/controllers/admin.py:50 -msgid "Homepage" -msgstr "" - -#: ckan/controllers/admin.py:131 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" -msgstr "" - -#: ckan/controllers/admin.py:153 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "" - -#: ckan/controllers/admin.py:155 -msgid "Purge complete" -msgstr "" - -#: ckan/controllers/admin.py:157 -msgid "Action not implemented." -msgstr "" - -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 -#: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 -msgid "Not authorized to see this page" -msgstr "" - -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 -msgid "Access denied" -msgstr "" - -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 -#: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 -msgid "Not found" -msgstr "" - -#: ckan/controllers/api.py:130 -msgid "Bad request" -msgstr "" - -#: ckan/controllers/api.py:164 -#, python-format -msgid "Action name not known: %s" -msgstr "" - -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 -#, python-format -msgid "JSON Error: %s" -msgstr "" - -#: ckan/controllers/api.py:190 -#, python-format -msgid "Bad request data: %s" -msgstr "" - -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:318 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:357 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:389 -msgid "Unable to add package to search index" -msgstr "" - -#: ckan/controllers/api.py:419 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:442 -msgid "Unable to update search index" -msgstr "" - -#: ckan/controllers/api.py:466 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:489 -msgid "No revision specified" -msgstr "" - -#: ckan/controllers/api.py:493 -#, python-format -msgid "There is no revision with id: %s" -msgstr "" - -#: ckan/controllers/api.py:503 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" - -#: ckan/controllers/api.py:513 -#, python-format -msgid "Could not read parameters: %r" -msgstr "" - -#: ckan/controllers/api.py:574 -#, python-format -msgid "Bad search option: %s" -msgstr "" - -#: ckan/controllers/api.py:577 -#, python-format -msgid "Unknown register: %s" -msgstr "" - -#: ckan/controllers/api.py:586 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "" - -#: ckan/controllers/api.py:596 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" - -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 -msgid "Group not found" -msgstr "" - -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 -msgid "Organization not found" -msgstr "" - -#: ckan/controllers/group.py:172 -msgid "Incorrect group type" -msgstr "" - -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 -#, python-format -msgid "Unauthorized to read group %s" -msgstr "" - -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "" - -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 -#: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 -#: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 -#: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 -#: ckan/templates/group/read_base.html:6 -#: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "" - -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "" - -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 -msgid "Formats" -msgstr "" - -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 -msgid "Licenses" -msgstr "" - -#: ckan/controllers/group.py:429 -msgid "Not authorized to perform bulk update" -msgstr "" - -#: ckan/controllers/group.py:446 -msgid "Unauthorized to create a group" -msgstr "" - -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "" - -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 -msgid "Integrity Error" -msgstr "" - -#: ckan/controllers/group.py:586 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "" - -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "" - -#: ckan/controllers/group.py:609 -msgid "Organization has been deleted." -msgstr "" - -#: ckan/controllers/group.py:611 -msgid "Group has been deleted." -msgstr "" - -#: ckan/controllers/group.py:677 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "" - -#: ckan/controllers/group.py:694 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "" - -#: ckan/controllers/group.py:700 -msgid "Group member has been deleted." -msgstr "" - -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 -msgid "Select two revisions before doing the comparison." -msgstr "" - -#: ckan/controllers/group.py:741 -#, python-format -msgid "User %r not authorized to edit %r" -msgstr "" - -#: ckan/controllers/group.py:748 -msgid "CKAN Group Revision History" -msgstr "" - -#: ckan/controllers/group.py:751 -msgid "Recent changes to CKAN Group: " -msgstr "" - -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 -msgid "Log message: " -msgstr "" - -#: ckan/controllers/group.py:798 -msgid "Unauthorized to read group {group_id}" -msgstr "" - -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 -msgid "You are now following {0}" -msgstr "" - -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 -msgid "You are no longer following {0}" -msgstr "" - -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "" - -#: ckan/controllers/home.py:37 -msgid "This site is currently off-line. Database is not initialised." -msgstr "" - -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" - -#: ckan/controllers/home.py:105 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "" - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 -msgid "Dataset not found" -msgstr "" - -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "" - -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 -#, python-format -msgid "Invalid revision format: %r" -msgstr "" - -#: ckan/controllers/package.py:427 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" - -#: ckan/controllers/package.py:472 -msgid "CKAN Dataset Revision History" -msgstr "" - -#: ckan/controllers/package.py:475 -msgid "Recent changes to CKAN Dataset: " -msgstr "" - -#: ckan/controllers/package.py:532 -msgid "Unauthorized to create a package" -msgstr "" - -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 -msgid "Unauthorized to edit this resource" -msgstr "" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 -msgid "Resource not found" -msgstr "" - -#: ckan/controllers/package.py:682 -msgid "Unauthorized to update dataset" -msgstr "" - -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 -msgid "The dataset {id} could not be found." -msgstr "" - -#: ckan/controllers/package.py:688 -msgid "You must add at least one data resource" -msgstr "" - -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 -msgid "Error" -msgstr "" - -#: ckan/controllers/package.py:714 -msgid "Unauthorized to create a resource" -msgstr "" - -#: ckan/controllers/package.py:750 -msgid "Unauthorized to create a resource for this package" -msgstr "" - -#: ckan/controllers/package.py:973 -msgid "Unable to add package to search index." -msgstr "" - -#: ckan/controllers/package.py:1020 -msgid "Unable to update search index." -msgstr "" - -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "" - -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1088 -msgid "Resource has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1093 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "" - -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "" - -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 -msgid "Resource view not found" -msgstr "" - -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "" - -#: ckan/controllers/package.py:1193 -msgid "Resource data not found" -msgstr "" - -#: ckan/controllers/package.py:1201 -msgid "No download is available" -msgstr "" - -#: ckan/controllers/package.py:1523 -msgid "Unauthorized to edit resource" -msgstr "" - -#: ckan/controllers/package.py:1541 -msgid "View not found" -msgstr "" - -#: ckan/controllers/package.py:1543 -#, python-format -msgid "Unauthorized to view View %s" -msgstr "" - -#: ckan/controllers/package.py:1549 -msgid "View Type Not found" -msgstr "" - -#: ckan/controllers/package.py:1609 -msgid "Bad resource view data" -msgstr "" - -#: ckan/controllers/package.py:1618 -#, python-format -msgid "Unauthorized to read resource view %s" -msgstr "" - -#: ckan/controllers/package.py:1621 -msgid "Resource view not supplied" -msgstr "" - -#: ckan/controllers/package.py:1650 -msgid "No preview has been defined." -msgstr "" - -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - -#: ckan/controllers/revision.py:42 -msgid "CKAN Repository Revision History" -msgstr "" - -#: ckan/controllers/revision.py:44 -msgid "Recent changes to the CKAN repository." -msgstr "" - -#: ckan/controllers/revision.py:108 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "" - -#: ckan/controllers/revision.py:188 -msgid "Revision updated" -msgstr "" - -#: ckan/controllers/tag.py:56 -msgid "Other" -msgstr "" - -#: ckan/controllers/tag.py:70 -msgid "Tag not found" -msgstr "" - -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 -msgid "User not found" -msgstr "" - -#: ckan/controllers/user.py:149 -msgid "Unauthorized to register as a user." -msgstr "" - -#: ckan/controllers/user.py:166 -msgid "Unauthorized to create a user" -msgstr "" - -#: ckan/controllers/user.py:197 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" - -#: ckan/controllers/user.py:211 ckan/controllers/user.py:270 -msgid "No user specified" -msgstr "" - -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "" - -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 -msgid "Profile updated" -msgstr "" - -#: ckan/controllers/user.py:232 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "" - -#: ckan/controllers/user.py:238 -msgid "Bad Captcha. Please try again." -msgstr "" - -#: ckan/controllers/user.py:255 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "" - -#: ckan/controllers/user.py:276 -msgid "Unauthorized to edit a user." -msgstr "" - -#: ckan/controllers/user.py:302 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "" - -#: ckan/controllers/user.py:383 -msgid "Login failed. Bad username or password." -msgstr "" - -#: ckan/controllers/user.py:417 -msgid "Unauthorized to request reset password." -msgstr "" - -#: ckan/controllers/user.py:446 -#, python-format -msgid "\"%s\" matched several users" -msgstr "" - -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 -#, python-format -msgid "No such user: %s" -msgstr "" - -#: ckan/controllers/user.py:455 -msgid "Please check your inbox for a reset code." -msgstr "" - -#: ckan/controllers/user.py:459 -#, python-format -msgid "Could not send reset link: %s" -msgstr "" - -#: ckan/controllers/user.py:474 -msgid "Unauthorized to reset password." -msgstr "" - -#: ckan/controllers/user.py:486 -msgid "Invalid reset key. Please try again." -msgstr "" - -#: ckan/controllers/user.py:498 -msgid "Your password has been reset." -msgstr "" - -#: ckan/controllers/user.py:519 -msgid "Your password must be 4 characters or longer." -msgstr "" - -#: ckan/controllers/user.py:522 -msgid "The passwords you entered do not match." -msgstr "" - -#: ckan/controllers/user.py:525 -msgid "You must provide a password" -msgstr "" - -#: ckan/controllers/user.py:589 -msgid "Follow item not found" -msgstr "" - -#: ckan/controllers/user.py:593 -msgid "{0} not found" -msgstr "" - -#: ckan/controllers/user.py:595 -msgid "Unauthorized to read {0} {1}" -msgstr "" - -#: ckan/controllers/user.py:610 -msgid "Everything" -msgstr "" - -#: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 -msgid "Missing Value" -msgstr "" - -#: ckan/controllers/util.py:21 -msgid "Redirecting to external site is not allowed." -msgstr "" - -#: ckan/lib/activity_streams.py:64 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:67 -msgid "{actor} updated the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:70 -msgid "{actor} updated the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:73 -msgid "{actor} updated the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:76 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:79 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:82 -msgid "{actor} updated their profile" -msgstr "" - -#: ckan/lib/activity_streams.py:86 -msgid "" -"{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:89 -msgid "{actor} updated the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:92 -msgid "{actor} deleted the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:95 -msgid "{actor} deleted the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:98 -msgid "{actor} deleted the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:101 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:104 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:108 -msgid "{actor} created the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:111 -msgid "{actor} created the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:114 -msgid "{actor} created the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:117 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:120 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:123 -msgid "{actor} signed up" -msgstr "" - -#: ckan/lib/activity_streams.py:126 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:129 -msgid "{actor} deleted the related item {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:132 -msgid "{actor} started following {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:135 -msgid "{actor} started following {user}" -msgstr "" - -#: ckan/lib/activity_streams.py:138 -msgid "{actor} started following {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:142 -msgid "" -"{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:145 -msgid "{actor} added the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "" - -#: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" - -#: ckan/lib/formatters.py:17 -msgid "January" -msgstr "" - -#: ckan/lib/formatters.py:21 -msgid "February" -msgstr "" - -#: ckan/lib/formatters.py:25 -msgid "March" -msgstr "" - -#: ckan/lib/formatters.py:29 -msgid "April" -msgstr "" - -#: ckan/lib/formatters.py:33 -msgid "May" -msgstr "" - -#: ckan/lib/formatters.py:37 -msgid "June" -msgstr "" - -#: ckan/lib/formatters.py:41 -msgid "July" -msgstr "" - -#: ckan/lib/formatters.py:45 -msgid "August" -msgstr "" - -#: ckan/lib/formatters.py:49 -msgid "September" -msgstr "" - -#: ckan/lib/formatters.py:53 -msgid "October" -msgstr "" - -#: ckan/lib/formatters.py:57 -msgid "November" -msgstr "" - -#: ckan/lib/formatters.py:61 -msgid "December" -msgstr "" - -#: ckan/lib/formatters.py:109 -msgid "Just now" -msgstr "" - -#: ckan/lib/formatters.py:111 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:114 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:120 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:123 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:125 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" - -#: ckan/lib/formatters.py:142 -msgid "{month} {day}, {year}" -msgstr "" - -#: ckan/lib/formatters.py:158 -msgid "{bytes} bytes" -msgstr "" - -#: ckan/lib/formatters.py:160 -msgid "{kibibytes} KiB" -msgstr "" - -#: ckan/lib/formatters.py:162 -msgid "{mebibytes} MiB" -msgstr "" - -#: ckan/lib/formatters.py:164 -msgid "{gibibytes} GiB" -msgstr "" - -#: ckan/lib/formatters.py:166 -msgid "{tebibytes} TiB" -msgstr "" - -#: ckan/lib/formatters.py:178 -msgid "{n}" -msgstr "" - -#: ckan/lib/formatters.py:180 -msgid "{k}k" -msgstr "" - -#: ckan/lib/formatters.py:182 -msgid "{m}M" -msgstr "" - -#: ckan/lib/formatters.py:184 -msgid "{g}G" -msgstr "" - -#: ckan/lib/formatters.py:186 -msgid "{t}T" -msgstr "" - -#: ckan/lib/formatters.py:188 -msgid "{p}P" -msgstr "" - -#: ckan/lib/formatters.py:190 -msgid "{e}E" -msgstr "" - -#: ckan/lib/formatters.py:192 -msgid "{z}Z" -msgstr "" - -#: ckan/lib/formatters.py:194 -msgid "{y}Y" -msgstr "" - -#: ckan/lib/helpers.py:858 -msgid "Update your avatar at gravatar.com" -msgstr "" - -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 -msgid "Unknown" -msgstr "" - -#: ckan/lib/helpers.py:1117 -msgid "Unnamed resource" -msgstr "" - -#: ckan/lib/helpers.py:1164 -msgid "Created new dataset." -msgstr "" - -#: ckan/lib/helpers.py:1166 -msgid "Edited resources." -msgstr "" - -#: ckan/lib/helpers.py:1168 -msgid "Edited settings." -msgstr "" - -#: ckan/lib/helpers.py:1431 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" - -#: ckan/lib/helpers.py:1433 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" - -#: ckan/lib/mailer.py:25 -#, python-format -msgid "Dear %s," -msgstr "" - -#: ckan/lib/mailer.py:38 -#, python-format -msgid "%s <%s>" -msgstr "" - -#: ckan/lib/mailer.py:99 -msgid "No recipient email address available!" -msgstr "" - -#: ckan/lib/mailer.py:104 -msgid "" -"You have requested your password on {site_title} to be reset.\n" -"\n" -"Please click the following link to confirm this request:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:119 -msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" -"\n" -"To accept this invite, please reset your password at:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "" - -#: ckan/lib/mailer.py:151 -msgid "Invite for {site_title}" -msgstr "" - -#: ckan/lib/navl/dictization_functions.py:11 -#: ckan/lib/navl/dictization_functions.py:13 -#: ckan/lib/navl/dictization_functions.py:15 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:19 -#: ckan/lib/navl/dictization_functions.py:21 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 -#: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 -msgid "Missing value" -msgstr "" - -#: ckan/lib/navl/validators.py:64 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "" - -#: ckan/lib/navl/validators.py:116 -msgid "Please enter an integer value" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -msgid "Package resource(s) invalid" -msgstr "" - -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 -msgid "Extras" -msgstr "" - -#: ckan/logic/converters.py:72 ckan/logic/converters.py:87 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" - -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "" - -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Dataset" -msgstr "" - -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Group" -msgstr "" - -#: ckan/logic/converters.py:178 -msgid "Could not parse as valid JSON" -msgstr "" - -#: ckan/logic/validators.py:30 ckan/logic/validators.py:39 -msgid "A organization must be supplied" -msgstr "" - -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 -msgid "Organization does not exist" -msgstr "" - -#: ckan/logic/validators.py:53 -msgid "You cannot add a dataset to this organization" -msgstr "" - -#: ckan/logic/validators.py:93 -msgid "Invalid integer" -msgstr "" - -#: ckan/logic/validators.py:98 -msgid "Must be a natural number" -msgstr "" - -#: ckan/logic/validators.py:104 -msgid "Must be a postive integer" -msgstr "" - -#: ckan/logic/validators.py:122 -msgid "Date format incorrect" -msgstr "" - -#: ckan/logic/validators.py:131 -msgid "No links are allowed in the log_message." -msgstr "" - -#: ckan/logic/validators.py:151 -msgid "Dataset id already exists" -msgstr "" - -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 -msgid "Resource" -msgstr "" - -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 -#: ckan/templates/snippets/related.html:2 -msgid "Related" -msgstr "" - -#: ckan/logic/validators.py:260 -msgid "That group name or ID does not exist." -msgstr "" - -#: ckan/logic/validators.py:274 -msgid "Activity type" -msgstr "" - -#: ckan/logic/validators.py:349 -msgid "Names must be strings" -msgstr "" - -#: ckan/logic/validators.py:353 -msgid "That name cannot be used" -msgstr "" - -#: ckan/logic/validators.py:356 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:361 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" - -#: ckan/logic/validators.py:379 -msgid "That URL is already in use." -msgstr "" - -#: ckan/logic/validators.py:384 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:388 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "" - -#: ckan/logic/validators.py:394 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:412 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "" - -#: ckan/logic/validators.py:428 -msgid "Group name already exists in database" -msgstr "" - -#: ckan/logic/validators.py:434 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:438 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" - -#: ckan/logic/validators.py:446 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" - -#: ckan/logic/validators.py:454 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "" - -#: ckan/logic/validators.py:563 -msgid "User names must be strings" -msgstr "" - -#: ckan/logic/validators.py:579 -msgid "That login name is not available." -msgstr "" - -#: ckan/logic/validators.py:588 -msgid "Please enter both passwords" -msgstr "" - -#: ckan/logic/validators.py:596 -msgid "Passwords must be strings" -msgstr "" - -#: ckan/logic/validators.py:600 -msgid "Your password must be 4 characters or longer" -msgstr "" - -#: ckan/logic/validators.py:608 -msgid "The passwords you entered do not match" -msgstr "" - -#: ckan/logic/validators.py:624 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" - -#: ckan/logic/validators.py:633 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:641 -msgid "That vocabulary name is already in use." -msgstr "" - -#: ckan/logic/validators.py:647 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" - -#: ckan/logic/validators.py:656 -msgid "Tag vocabulary was not found." -msgstr "" - -#: ckan/logic/validators.py:669 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:675 -msgid "No tag name" -msgstr "" - -#: ckan/logic/validators.py:688 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:711 -msgid "Please provide a valid URL" -msgstr "" - -#: ckan/logic/validators.py:725 -msgid "role does not exist." -msgstr "" - -#: ckan/logic/validators.py:754 -msgid "Datasets with no organization can't be private." -msgstr "" - -#: ckan/logic/validators.py:760 -msgid "Not a list" -msgstr "" - -#: ckan/logic/validators.py:763 -msgid "Not a string" -msgstr "" - -#: ckan/logic/validators.py:795 -msgid "This parent would create a loop in the hierarchy" -msgstr "" - -#: ckan/logic/validators.py:805 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" - -#: ckan/logic/validators.py:816 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" - -#: ckan/logic/validators.py:819 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" - -#: ckan/logic/validators.py:833 -msgid "There is a schema field with the same name" -msgstr "" - -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 -#, python-format -msgid "REST API: Create object %s" -msgstr "" - -#: ckan/logic/action/create.py:517 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/create.py:558 -#, python-format -msgid "REST API: Create member object %s" -msgstr "" - -#: ckan/logic/action/create.py:772 -msgid "Trying to create an organization as a group" -msgstr "" - -#: ckan/logic/action/create.py:859 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" - -#: ckan/logic/action/create.py:862 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "" - -#: ckan/logic/action/create.py:867 -msgid "Rating must be an integer value." -msgstr "" - -#: ckan/logic/action/create.py:871 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "" - -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 -msgid "You must be logged in to follow users" -msgstr "" - -#: ckan/logic/action/create.py:1236 -msgid "You cannot follow yourself" -msgstr "" - -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 -msgid "You are already following {0}" -msgstr "" - -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 -msgid "You must be logged in to follow a dataset." -msgstr "" - -#: ckan/logic/action/create.py:1335 -msgid "User {username} does not exist." -msgstr "" - -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 -msgid "You must be logged in to follow a group." -msgstr "" - -#: ckan/logic/action/delete.py:68 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "" - -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 -#, python-format -msgid "REST API: Delete %s" -msgstr "" - -#: ckan/logic/action/delete.py:270 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "" - -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 -msgid "id not in data" -msgstr "" - -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:501 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 -msgid "You must be logged in to unfollow something." -msgstr "" - -#: ckan/logic/action/delete.py:542 -msgid "You are not following {0}." -msgstr "" - -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 -msgid "Resource was not found." -msgstr "" - -#: ckan/logic/action/get.py:1851 -msgid "Do not specify if using \"query\" parameter" -msgstr "" - -#: ckan/logic/action/get.py:1860 -msgid "Must be : pair(s)" -msgstr "" - -#: ckan/logic/action/get.py:1892 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" - -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 -msgid "Item was not found." -msgstr "" - -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 -msgid "Package was not found." -msgstr "" - -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 -#, python-format -msgid "REST API: Update object %s" -msgstr "" - -#: ckan/logic/action/update.py:437 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/update.py:789 -msgid "TaskStatus was not found." -msgstr "" - -#: ckan/logic/action/update.py:1180 -msgid "Organization was not found." -msgstr "" - -#: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 -#, python-format -msgid "User %s not authorized to create packages" -msgstr "" - -#: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "" - -#: ckan/logic/auth/create.py:36 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" - -#: ckan/logic/auth/create.py:58 -msgid "You must be a sysadmin to create a featured related item" -msgstr "" - -#: ckan/logic/auth/create.py:62 -msgid "You must be logged in to add a related item" -msgstr "" - -#: ckan/logic/auth/create.py:77 -msgid "No dataset id provided, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 -#: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 -msgid "No package found for this resource, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:92 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" - -#: ckan/logic/auth/create.py:115 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "" - -#: ckan/logic/auth/create.py:126 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "" - -#: ckan/logic/auth/create.py:136 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "" - -#: ckan/logic/auth/create.py:152 -msgid "User {user} not authorized to create users via the API" -msgstr "" - -#: ckan/logic/auth/create.py:155 -msgid "Not authorized to create users" -msgstr "" - -#: ckan/logic/auth/create.py:198 -msgid "Group was not found." -msgstr "" - -#: ckan/logic/auth/create.py:218 -msgid "Valid API key needed to create a package" -msgstr "" - -#: ckan/logic/auth/create.py:226 -msgid "Valid API key needed to create a group" -msgstr "" - -#: ckan/logic/auth/create.py:246 -#, python-format -msgid "User %s not authorized to add members" -msgstr "" - -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:34 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "" - -#: ckan/logic/auth/delete.py:50 -msgid "Resource view not found, cannot check auth." -msgstr "" - -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 -msgid "Only the owner can delete a related item" -msgstr "" - -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "" - -#: ckan/logic/auth/delete.py:95 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "" - -#: ckan/logic/auth/delete.py:99 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:116 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "" - -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "" - -#: ckan/logic/auth/delete.py:133 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "" - -#: ckan/logic/auth/get.py:97 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "" - -#: ckan/logic/auth/get.py:119 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" - -#: ckan/logic/auth/get.py:141 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "" - -#: ckan/logic/auth/get.py:166 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" - -#: ckan/logic/auth/get.py:234 -msgid "You must be logged in to access your dashboard." -msgstr "" - -#: ckan/logic/auth/update.py:37 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "" - -#: ckan/logic/auth/update.py:69 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "" - -#: ckan/logic/auth/update.py:98 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "" - -#: ckan/logic/auth/update.py:126 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "" - -#: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 -msgid "Only the owner can update a related item" -msgstr "" - -#: ckan/logic/auth/update.py:148 -msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" - -#: ckan/logic/auth/update.py:165 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:182 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:209 -msgid "Have to be logged in to edit user" -msgstr "" - -#: ckan/logic/auth/update.py:217 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "" - -#: ckan/logic/auth/update.py:228 -msgid "User {0} not authorized to update user {1}" -msgstr "" - -#: ckan/logic/auth/update.py:236 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "" - -#: ckan/logic/auth/update.py:245 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "" - -#: ckan/logic/auth/update.py:259 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" - -#: ckan/logic/auth/update.py:281 -msgid "Valid API key needed to edit a package" -msgstr "" - -#: ckan/logic/auth/update.py:291 -msgid "Valid API key needed to edit a group" -msgstr "" - -#: ckan/model/license.py:177 -msgid "License not specified" -msgstr "" - -#: ckan/model/license.py:187 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" - -#: ckan/model/license.py:197 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" - -#: ckan/model/license.py:207 -msgid "Open Data Commons Attribution License" -msgstr "" - -#: ckan/model/license.py:218 -msgid "Creative Commons CCZero" -msgstr "" - -#: ckan/model/license.py:227 -msgid "Creative Commons Attribution" -msgstr "" - -#: ckan/model/license.py:237 -msgid "Creative Commons Attribution Share-Alike" -msgstr "" - -#: ckan/model/license.py:246 -msgid "GNU Free Documentation License" -msgstr "" - -#: ckan/model/license.py:256 -msgid "Other (Open)" -msgstr "" - -#: ckan/model/license.py:266 -msgid "Other (Public Domain)" -msgstr "" - -#: ckan/model/license.py:276 -msgid "Other (Attribution)" -msgstr "" - -#: ckan/model/license.py:288 -msgid "UK Open Government Licence (OGL)" -msgstr "" - -#: ckan/model/license.py:296 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "" - -#: ckan/model/license.py:304 -msgid "Other (Non-Commercial)" -msgstr "" - -#: ckan/model/license.py:312 -msgid "Other (Not Open)" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "depends on %s" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "is a dependency of %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "derives from %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "has derivation %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "links to %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is linked from %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a child of %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a parent of %s" -msgstr "" - -#: ckan/model/package_relationship.py:59 -#, python-format -msgid "has sibling %s" -msgstr "" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:12 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "" - -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:14 -#: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 -msgid "Cancel" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:15 -msgid "Upload" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Link" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:17 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 -msgid "Remove" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 -msgid "Image" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:19 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:20 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:25 -msgid "show more" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:26 -msgid "show less" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 -msgid "URL" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 -msgid "Edit" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "" - -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "" - -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "" - -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "" - -#: ckan/templates/footer.html:16 -msgid "Open Knowledge Foundation" -msgstr "" - -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" - -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "" - -#: ckan/templates/header.html:18 -msgid "View profile" -msgstr "" - -#: ckan/templates/header.html:25 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" - -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "" - -#: ckan/templates/header.html:40 -msgid "Log out" -msgstr "" - -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "" - -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "" - -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "" - -#: ckan/templates/header.html:112 -msgid "Search Datasets" -msgstr "" - -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 -#: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 -msgid "Search" -msgstr "" - -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "" - -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "" - -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "" - -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "" - -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "" - -#: ckan/templates/admin/config.html:11 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "" - -#: ckan/templates/admin/config.html:12 -msgid "Reset" -msgstr "" - -#: ckan/templates/admin/config.html:13 -msgid "Update Config" -msgstr "" - -#: ckan/templates/admin/config.html:22 -msgid "CKAN config options" -msgstr "" - -#: ckan/templates/admin/config.html:29 -#, python-format -msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " -"Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" -"

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" -msgstr "" - -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "" - -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "" - -#: ckan/templates/admin/index.html:20 -#, python-format -msgid "" -"

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" -msgstr "" - -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" - -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:12 -#, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "" - -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "" - -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "" - -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "" - -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "" - -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "" - -#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 -#: ckan/templates/organization/admins.html:3 -#: ckan/templates/organization/admins.html:6 -msgid "Administrators" -msgstr "" - -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "" - -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 -msgid "Confirm Delete" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "" - -#: ckan/templates/group/confirm_delete_member.html:11 -#: ckan/templates/organization/confirm_delete_member.html:11 -msgid "Are you sure you want to delete member - {name}?" -msgstr "" - -#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:11 -#: ckan/templates/group/read_base.html:12 -#: ckan/templates/organization/edit_base.html:11 -#: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "" - -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "" - -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 -#: ckan/templates/organization/edit_base.html:24 -#: ckan/templates/organization/members.html:3 -msgid "Members" -msgstr "" - -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "" - -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "" - -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "" - -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "" - -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -msgid "Edit Member" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "" - -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "" - -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "" - -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "" - -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" - -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "" - -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "" - -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:38 -msgid "Delete" -msgstr "" - -#: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 -msgid "Save" -msgstr "" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "" - -#: ckan/templates/group/member_new.html:81 -msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " -"datasets from groups

" -msgstr "" - -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "" - -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 -msgid "Description" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:8 -msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " -msgstr "" - -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "" - -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "" - -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "" - -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "" - -#: ckan/templates/home/snippets/about_text.html:1 -msgid "" -"

CKAN is the world’s leading open-source data portal platform.

" -"

CKAN is a complete out-of-the-box software solution that makes data " -"accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " -"government portals, as well as city and municipal sites in the US, UK, " -"Argentina, Finland and elsewhere.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features " -"overview: http://ckan.org/features/

" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:10 -msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "" - -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" - -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" - -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "dataset" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "datasets" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organization" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organizations" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "group" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "" - -#: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 -msgid "The form contains invalid entries:" -msgstr "" - -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "" - -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "" - -#: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 -msgid "Image URL" -msgstr "" - -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "" - -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "" - -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "" - -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" -msgstr "" - -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "" - -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "" - -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "" - -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "" - -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

Admin: Can add/edit and delete datasets, as well as " -"manage organization members.

Editor: Can add and " -"edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" -msgstr "" - -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "" - -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "" - -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:7 -msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" -msgstr "" - -#: ckan/templates/organization/snippets/helper.html:8 -msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "" - -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "" - -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "" - -#: ckan/templates/package/base_form_page.html:25 -msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " -msgstr "" - -#: ckan/templates/package/confirm_delete.html:11 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" - -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "" - -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "" - -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "" - -#: ckan/templates/package/edit_view.html:3 -#: ckan/templates/package/edit_view.html:4 -#: ckan/templates/package/edit_view.html:8 -#: ckan/templates/package/edit_view.html:12 -msgid "Edit view" -msgstr "" - -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "" - -#: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 -msgid "Update" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "" - -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "" - -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "" - -#: ckan/templates/package/new_view.html:3 -#: ckan/templates/package/new_view.html:4 -#: ckan/templates/package/new_view.html:8 -#: ckan/templates/package/new_view.html:12 -msgid "Add view" -msgstr "" - -#: ckan/templates/package/new_view.html:19 -msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " -msgstr "" - -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "" - -#: ckan/templates/package/read_base.html:38 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" - -#: ckan/templates/package/related_list.html:7 -msgid "Related Media for {dataset}" -msgstr "" - -#: ckan/templates/package/related_list.html:12 -msgid "No related items" -msgstr "" - -#: ckan/templates/package/related_list.html:17 -msgid "Add Related Item" -msgstr "" - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:45 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:49 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "" - -#: ckan/templates/package/resource_data.html:53 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:59 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:71 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:78 -msgid "End of log" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "" - -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "" - -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "" - -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "" - -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "" - -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" - -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" - -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" - -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" - -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "" - -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "" - -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "" - -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "" - -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 -msgid "Created" -msgstr "" - -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "" - -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "" - -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" - -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" - -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "" - -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

This dataset has no data, why not " -"add some?

" -msgstr "" - -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "" - -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "" - -#: ckan/templates/package/search.html:56 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" - -#: ckan/templates/package/search.html:60 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " -msgstr "" - -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:37 -#: ckan/templates/package/snippets/additional_info.html:42 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -msgid "Maintainer" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" - -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 -msgid "Title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:40 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:69 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:73 -msgid "No organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:88 -msgid "Visibility" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:91 -msgid "Public" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:110 -msgid "Active" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:28 -msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -#: ckan/templates/user/new_user_form.html:6 -msgid "Joe Bloggs" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -#: ckan/templates/user/new_user_form.html:7 -msgid "joe@example.com" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "" - -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "File" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:10 -msgid "Embed" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "" - -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "" - -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:30 -#: ckan/templates/package/snippets/stages.html:34 -#: ckan/templates/package/snippets/stages.html:36 -msgid "Add data" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "" - -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "" - -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "" - -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "" - -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "" - -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "" - -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "" - -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "" - -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "" - -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 -msgid "Home" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "" - -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "" - -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" - -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "" - -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "" - -#: ckan/templates/snippets/related.html:15 -msgid "" -"No apps, ideas, news stories or images have been related to this dataset " -"yet." -msgstr "" - -#: ckan/templates/snippets/related.html:18 -msgid "Add Item" -msgstr "" - -#: ckan/templates/snippets/search_form.html:16 -msgid "Submit" -msgstr "" - -#: ckan/templates/snippets/search_form.html:31 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "" - -#: ckan/templates/snippets/search_form.html:77 -msgid "

Please try another search.

" -msgstr "" - -#: ckan/templates/snippets/search_form.html:83 -msgid "" -"

There was an error while searching. Please try " -"again.

" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:15 -msgid "{number} dataset found for \"{query}\"" -msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:21 -msgid "{number} group found for \"{query}\"" -msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:27 -msgid "{number} organization found for \"{query}\"" -msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "" - -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 -#: ckan/templates/user/new_user_form.html:7 -#: ckan/templates/user/read_base.html:82 -msgid "Email" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "" - -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "" - -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "" - -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "" - -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "" - -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "" - -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "" - -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "" - -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "" - -#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 -#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 -#: ckan/templates/user/snippets/user_search.html:2 -msgid "Users" -msgstr "" - -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "" - -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" - -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "Full name" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "eg. Joe Bloggs" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:13 -msgid "eg. joe@example.com" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:15 -msgid "A little information about yourself" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:18 -msgid "Subscribe to notification emails" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:27 -msgid "Change password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:29 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:31 -msgid "Confirm Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:37 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:43 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:44 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:48 -msgid "Update Profile" -msgstr "" - -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "" - -#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 -#: ckan/templates/user/login.html:12 -#: ckan/templates/user/snippets/login_form.html:28 -msgid "Login" -msgstr "" - -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "" - -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "" - -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "" - -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "" - -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" - -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "" - -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "" - -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "" - -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "" - -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:19 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:20 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:27 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:31 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:652 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:16 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "Custom Text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" - -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" - -#: ckanext/reclineview/plugin.py:82 -msgid "Data Explorer" -msgstr "" - -#: ckanext/reclineview/plugin.py:106 -msgid "Table" -msgstr "" - -#: ckanext/reclineview/plugin.py:149 -msgid "Graph" -msgstr "" - -#: ckanext/reclineview/plugin.py:207 -msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 -msgid "Total number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 -msgid "Top Rated Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Average rating" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 -msgid "No ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 -msgid "Most Edited Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Number of edits" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 -msgid "Largest Groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Number of datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 -msgid "Top Tags" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "" - -#: ckanext/webpageview/plugin.py:24 -msgid "Website" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" diff --git a/ckan/i18n/ne/LC_MESSAGES/ckan.mo b/ckan/i18n/ne/LC_MESSAGES/ckan.mo index 81764304e8d..dd46db2bce9 100644 Binary files a/ckan/i18n/ne/LC_MESSAGES/ckan.mo and b/ckan/i18n/ne/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ne/LC_MESSAGES/ckan.po b/ckan/i18n/ne/LC_MESSAGES/ckan.po index 69c9f71ae2a..8c9895b2919 100644 --- a/ckan/i18n/ne/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ne/LC_MESSAGES/ckan.po @@ -9,114 +9,114 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-02-21 09:32+0000\n" -"Last-Translator: Ngima Sherpa \n" -"Language-Team: Nepali (http://www.transifex.com/projects/p/ckan/language/ne/)\n" +"POT-Creation-Date: 2015-06-23 20:40+0000\n" +"PO-Revision-Date: 2015-06-25 10:42+0000\n" +"Last-Translator: dread \n" +"Language-Team: Nepali (http://www.transifex.com/okfn/ckan/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 1.3\n" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:178 #, python-format msgid "Authorization function not found: %s" msgstr "प्रमाणीकरण कार्य फेला परेन: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:190 ckan/templates/header.html:14 msgid "Admin" msgstr "व्यवस्थापक" -#: ckan/new_authz.py:194 +#: ckan/authz.py:194 msgid "Editor" msgstr "सम्पादक" -#: ckan/new_authz.py:198 +#: ckan/authz.py:198 msgid "Member" msgstr "सदस्य" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "साइट शीर्षक" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "शैली" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "साइट ट्याग रेखा" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "साइट ट्याग लोगो" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "बारे" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "पृष्ठ पाठ बारे" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "पहिचान पाठ" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "घर पेजमा पाठ" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Custom CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "पृष्ठ हेडर मा सम्मिलित Customisable css गरियो" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:165 #: ckan/controllers/home.py:29 ckan/controllers/package.py:145 #: ckan/controllers/related.py:86 ckan/controllers/related.py:113 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:562 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "" @@ -126,13 +126,13 @@ msgstr "" #: ckan/controllers/api.py:124 ckan/controllers/api.py:218 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:724 +#: ckan/logic/action/create.py:969 msgid "Not found" msgstr "" @@ -156,7 +156,7 @@ msgstr "" msgid "Bad request data: %s" msgstr "" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2322 #, python-format msgid "Cannot list entity of this type: %s" msgstr "" @@ -226,35 +226,36 @@ msgstr "" msgid "Request params must be in form of a json encoded dictionary." msgstr "" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:138 +#: ckan/controllers/group.py:204 ckan/controllers/group.py:388 +#: ckan/controllers/group.py:496 ckan/controllers/group.py:543 +#: ckan/controllers/group.py:575 ckan/controllers/group.py:586 +#: ckan/controllers/group.py:640 ckan/controllers/group.py:659 +#: ckan/controllers/group.py:709 ckan/controllers/group.py:740 +#: ckan/controllers/group.py:772 ckan/controllers/group.py:831 +#: ckan/controllers/group.py:925 ckan/controllers/package.py:1292 +#: ckan/controllers/package.py:1307 msgid "Group not found" msgstr "" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:140 ckan/controllers/group.py:589 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:206 ckan/controllers/group.py:390 +#: ckan/controllers/group.py:498 ckan/controllers/group.py:541 +#: ckan/controllers/group.py:573 ckan/controllers/group.py:927 #, python-format msgid "Unauthorized to read group %s" msgstr "" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:291 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:697 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -265,9 +266,9 @@ msgstr "" msgid "Organizations" msgstr "" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:292 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:698 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 @@ -279,9 +280,9 @@ msgstr "" msgid "Groups" msgstr "" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:293 ckan/controllers/home.py:72 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:699 +#: ckan/logic/__init__.py:113 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -289,107 +290,112 @@ msgstr "" msgid "Tags" msgstr "" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:294 ckan/controllers/home.py:73 +#: ckan/controllers/package.py:244 ckan/lib/helpers.py:700 msgid "Formats" msgstr "" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:295 ckan/controllers/home.py:74 +#: ckan/controllers/package.py:245 ckan/lib/helpers.py:701 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:433 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:453 msgid "Unauthorized to create a group" msgstr "" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:507 ckan/controllers/package.py:338 +#: ckan/controllers/package.py:807 ckan/controllers/package.py:1440 +#: ckan/controllers/package.py:1476 #, python-format msgid "User %r not authorized to edit %s" msgstr "" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 +#: ckan/controllers/group.py:545 ckan/controllers/group.py:577 +#: ckan/controllers/package.py:971 ckan/controllers/package.py:1018 #: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/user.py:348 ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:603 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:623 ckan/controllers/group.py:638 +#: ckan/controllers/group.py:657 ckan/controllers/group.py:738 #, python-format msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:629 msgid "Organization has been deleted." msgstr "" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:631 msgid "Group has been deleted." msgstr "" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:633 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:707 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:726 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:732 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:755 ckan/controllers/package.py:446 msgid "Select two revisions before doing the comparison." msgstr "" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:774 #, python-format msgid "User %r not authorized to edit %r" msgstr "" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:781 msgid "CKAN Group Revision History" msgstr "" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:785 msgid "Recent changes to CKAN Group: " msgstr "" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:806 ckan/controllers/package.py:496 msgid "Log message: " msgstr "" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:834 msgid "Unauthorized to read group {group_id}" msgstr "" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:855 ckan/controllers/package.py:1217 +#: ckan/controllers/user.py:683 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:875 ckan/controllers/package.py:1236 +#: ckan/controllers/user.py:703 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:894 ckan/controllers/user.py:548 #, python-format msgid "Unauthorized to view followers %s" msgstr "" @@ -426,22 +432,22 @@ msgstr "" #: ckan/controllers/package.py:336 ckan/controllers/package.py:344 #: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 +#: ckan/controllers/package.py:793 ckan/controllers/package.py:852 +#: ckan/controllers/package.py:870 ckan/controllers/package.py:969 +#: ckan/controllers/package.py:1016 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1110 ckan/controllers/package.py:1262 +#: ckan/controllers/package.py:1278 ckan/controllers/package.py:1347 +#: ckan/controllers/package.py:1446 ckan/controllers/package.py:1483 +#: ckan/controllers/package.py:1596 ckan/controllers/related.py:111 #: ckan/controllers/related.py:122 msgid "Dataset not found" msgstr "" #: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:463 ckan/controllers/package.py:791 +#: ckan/controllers/package.py:850 ckan/controllers/package.py:868 +#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 +#: ckan/controllers/package.py:1264 ckan/controllers/related.py:124 #, python-format msgid "Unauthorized to read package %s" msgstr "" @@ -470,15 +476,15 @@ msgstr "" msgid "Unauthorized to create a package" msgstr "" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 +#: ckan/controllers/package.py:629 ckan/controllers/package.py:1099 +#: ckan/controllers/package.py:1119 ckan/controllers/package.py:1186 +#: ckan/controllers/package.py:1377 ckan/controllers/package.py:1457 +#: ckan/controllers/package.py:1490 ckan/controllers/package.py:1604 +#: ckan/controllers/package.py:1660 ckanext/datapusher/plugin.py:57 #: ckanext/resourceproxy/controller.py:32 msgid "Resource not found" msgstr "" @@ -487,8 +493,8 @@ msgstr "" msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:685 ckan/controllers/package.py:721 +#: ckan/controllers/package.py:749 msgid "The dataset {id} could not be found." msgstr "" @@ -500,98 +506,98 @@ msgstr "" msgid "Error" msgstr "" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:718 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:754 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:977 msgid "Unable to add package to search index." msgstr "" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:1024 msgid "Unable to update search index." msgstr "" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1060 ckan/controllers/package.py:1070 +#: ckan/controllers/package.py:1087 #, python-format msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1061 +#: ckan/controllers/package.py:1065 msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1092 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1097 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1112 ckan/controllers/package.py:1280 +#: ckan/controllers/package.py:1349 ckan/controllers/package.py:1448 +#: ckan/controllers/package.py:1485 ckan/controllers/package.py:1598 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1157 ckan/controllers/package.py:1619 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1188 ckan/controllers/package.py:1379 +#: ckan/controllers/package.py:1459 ckan/controllers/package.py:1492 +#: ckan/controllers/package.py:1606 ckan/controllers/package.py:1662 #, python-format msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1197 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1205 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1527 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1545 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1547 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1553 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1613 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1622 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1625 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1654 msgid "No preview has been defined." msgstr "" @@ -624,7 +630,7 @@ msgid "Related item not found" msgstr "" #: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 +#: ckan/logic/auth/get.py:270 msgid "Not authorized" msgstr "" @@ -702,10 +708,10 @@ msgstr "" msgid "Tag not found" msgstr "" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "" @@ -725,13 +731,13 @@ msgstr "" msgid "No user specified" msgstr "" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "" @@ -755,75 +761,87 @@ msgstr "" msgid "Unauthorized to edit a user." msgstr "" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:601 msgid "Follow item not found" msgstr "" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:605 msgid "{0} not found" msgstr "" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:607 msgid "Unauthorized to read {0} {1}" msgstr "" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:622 msgid "Everything" msgstr "" @@ -945,7 +963,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -1104,37 +1122,37 @@ msgstr "" msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:881 msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1085 ckan/lib/helpers.py:1097 msgid "Unknown" msgstr "" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1142 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1189 msgid "Created new dataset." msgstr "" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1191 msgid "Edited resources." msgstr "" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1193 msgid "Edited settings." msgstr "" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1456 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" msgstr[1] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1458 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1165,7 +1183,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1190,7 +1208,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:625 ckan/logic/action/get.py:1941 msgid "Missing value" msgstr "" @@ -1203,7 +1221,7 @@ msgstr "" msgid "Please enter an integer value" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:102 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1213,11 +1231,11 @@ msgstr "" msgid "Resources" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:102 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:109 ckan/logic/__init__.py:111 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "" @@ -1227,23 +1245,23 @@ msgstr "" msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:724 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:24 #: ckanext/stats/templates/ckanext/stats/index.html:89 #: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 #: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 #: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" @@ -1257,378 +1275,374 @@ msgstr "" msgid "A organization must be supplied" msgstr "" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 +#: ckan/logic/validators.py:255 ckan/templates/package/read_base.html:27 #: ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:641 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:629 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:638 #, python-format msgid "Name must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:646 msgid "That vocabulary name is already in use." msgstr "" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:652 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:661 msgid "Tag vocabulary was not found." msgstr "" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:674 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:680 msgid "No tag name" msgstr "" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:693 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:716 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:730 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:759 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:765 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:768 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:800 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:810 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:821 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:824 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:838 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:722 #, python-format msgid "REST API: Create object %s" msgstr "" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:601 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:642 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:865 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:954 msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:957 msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:962 msgid "Rating must be an integer value." msgstr "" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:966 #, python-format msgid "Rating must be between %i and %i." msgstr "" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1311 ckan/logic/action/create.py:1318 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1331 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1339 ckan/logic/action/create.py:1396 +#: ckan/logic/action/create.py:1529 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1370 ckan/logic/action/create.py:1378 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1430 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1505 ckan/logic/action/create.py:1513 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:66 #, python-format msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:195 ckan/logic/action/delete.py:324 #, python-format msgid "REST API: Delete %s" msgstr "" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:284 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:483 ckan/logic/action/delete.py:509 +#: ckan/logic/action/get.py:2394 ckan/logic/action/update.py:984 msgid "id not in data" msgstr "" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:487 ckan/logic/action/get.py:2397 +#: ckan/logic/action/update.py:988 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:517 #, python-format msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:543 ckan/logic/action/delete.py:547 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:558 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1040 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:146 msgid "Resource was not found." msgstr "" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:1945 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:1954 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:1986 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/get.py:2238 +#: ckan/logic/action/get.py:2332 msgid "unknown user:" msgstr "" -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:296 ckan/logic/action/update.py:1179 msgid "Package was not found." msgstr "" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:339 ckan/logic/action/update.py:557 #, python-format msgid "REST API: Update object %s" msgstr "" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:440 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:792 msgid "TaskStatus was not found." msgstr "" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1183 msgid "Organization was not found." msgstr "" @@ -1669,47 +1683,47 @@ msgstr "" msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "" @@ -1723,36 +1737,36 @@ msgstr "" msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:65 ckan/logic/auth/delete.py:79 msgid "Only the owner can delete a related item" msgstr "" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:91 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:100 #, python-format msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:121 #, python-format msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:138 #, python-format msgid "User %s not authorized to delete task_status" msgstr "" @@ -1777,7 +1791,7 @@ msgstr "" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1855,63 +1869,63 @@ msgstr "" msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "" @@ -2044,12 +2058,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "" @@ -2175,34 +2190,42 @@ msgstr "" msgid "Sysadmin settings" msgstr "" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" msgstr[0] "" msgstr[1] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2221,15 +2244,13 @@ msgstr "" msgid "Datasets" msgstr "" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "" @@ -2265,24 +2286,24 @@ msgstr "" msgid "Trash" msgstr "" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2958,35 +2979,35 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 +#: ckan/templates/home/snippets/stats.html:29 msgid "related item" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 +#: ckan/templates/home/snippets/stats.html:29 msgid "related items" msgstr "" @@ -3099,6 +3120,20 @@ msgstr "" msgid "There are currently no organizations for this site" msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3726,7 +3761,7 @@ msgstr "" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "" @@ -3865,7 +3900,7 @@ msgid "" msgstr "" #: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 +#: ckan/templates/snippets/search_form.html:71 msgid "Filter Results" msgstr "" @@ -4041,7 +4076,7 @@ msgid "Language" msgstr "" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4073,21 +4108,21 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4162,7 +4197,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4181,10 +4216,6 @@ msgstr "" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4248,36 +4279,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4510,15 +4532,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:656 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:210 ckanext/datastore/logic/action.py:250 +#: ckanext/datastore/logic/action.py:327 ckanext/datastore/logic/action.py:411 +#: ckanext/datastore/logic/action.py:493 ckanext/datastore/logic/action.py:519 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4526,6 +4548,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4569,66 +4599,22 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:212 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "" - #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "Row offset" @@ -4826,7 +4812,11 @@ msgstr "" msgid "Choose area" msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" + +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/nl/LC_MESSAGES/ckan.mo b/ckan/i18n/nl/LC_MESSAGES/ckan.mo index 6a5b7e98382..88751b589bb 100644 Binary files a/ckan/i18n/nl/LC_MESSAGES/ckan.mo and b/ckan/i18n/nl/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/nl/LC_MESSAGES/ckan.po b/ckan/i18n/nl/LC_MESSAGES/ckan.po index 8842aa36138..ec7b139b3aa 100644 --- a/ckan/i18n/nl/LC_MESSAGES/ckan.po +++ b/ckan/i18n/nl/LC_MESSAGES/ckan.po @@ -8,259 +8,259 @@ # Gerard Persoon , 2014 # , 2011 # Marc B , 2013 -# Milo van der Linden , 2014 # Paul Suijkerbuijk , 2011,2013 +# Peter Vos , 2015 # TonZijlstra , 2011 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:20+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Dutch (http://www.transifex.com/projects/p/ckan/language/nl/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-14 16:48+0000\n" +"Last-Translator: Peter Vos \n" +"Language-Team: Dutch (http://www.transifex.com/okfn/ckan/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" -msgstr "Autorisatiefunctie niet gevonden: %s" +msgstr "Machtigingsfuncties niet gevonden: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Beheerder" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" -msgstr "Editor" +msgstr "Muteerder" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Lid" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" -msgstr "U dient systeembeheerder te zijn om dit te beheren" +msgstr "Dient rol systeembeheerder te hebben" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Titel" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Stijl" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Site Tag Line" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Site Tag Logo" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Over" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Over pagina" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Introductie tekst" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Tekst op de homepage" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Custom CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Aanpasbaar CSS ingevoegd in de pagina header" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Start pagina" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Can package %s niet verwijderen omdat revisie %s niet gedelete packages %s bevat" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Probleem bij het verwijderen van revisie %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Verwijderen afgerond" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Actie niet geïmplementeerd" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" -msgstr "Niet geautoriseerd deze pagina te bekijken" +msgstr "Niet gemachtigd deze pagina te bekijken" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Toestemming geweigerd" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Niet gevonden" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Onjuiste aanvraag" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Actie naam onbekend: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON Error: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Bad request data: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Kan items van dit type niet laten zien: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Kan een entiteit van dit type niet lezen: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Kan geen nieuwe entiteit aanmaken van type: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Kan de package niet aan de zoekindex toevoegen" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Kan entiteit niet aanpassen van type: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Kan zoekindex niet actualiseren" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Kan entiteit niet aanpassen van type: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Geen versie aangegeven" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Er is geen revisie met id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Ontbrekende zoekterm ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Kan de volgende parameters niet lezen: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Ongeldige zoek optie: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Onbekend register: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Misvormde qjson waarde: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Opgevraagde parameters moeten zich bevinden in een json encoded dictionary" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "De titel van de dataset." -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Organisatie niet gevonden" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Verkeerde groep type" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" -msgstr "Niet geautoriseerd om groep %s te lezen" +msgstr "Niet gemachtigd om groep %s te lezen" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -271,23 +271,23 @@ msgstr "Niet geautoriseerd om groep %s te lezen" msgid "Organizations" msgstr "Organisaties" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Groepen" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -295,394 +295,303 @@ msgstr "Groepen" msgid "Tags" msgstr "Tags" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formats" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licenties" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" -msgstr "Niet geautoriseerd om een massale update te doen" +msgstr "Niet gemachtigd om een massale bijwerking te doen" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Groep selectie veld 'user_editable_groups' is niet geinitialiseerd" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Gebruiker %r is niet gemachtigd om %s aan te passen" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Integriteits fout" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Gebruiker %r is niet gemachtigd om machtigingen van %s aan te passen" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Niet de rechten om group %s te verwijderen" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organisatie is verwijderd" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Groep is verwijderd" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s is verwijderd." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Niet de rechten om lid toe te voegen aan groep %s " -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Niet de rechten om leden te te verwijderen ui groep %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Groepslid is verwijderd" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Selecteer twee revisies voordat u een vergelijking maakt." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Gebruiker %r is niet gemachtigd om %r aan te passen" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN Groep revisie historie" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Recente wijzigingen in de CKAN groep:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Logboek bericht: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Niet de rechten om groep te lezen {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Je volgt {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Je volgt {0} niet langer" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Niet de rechtend om volgers %s te zien" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Deze site is momenteel offline. De database is niet geïnitialiseerd." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Maak je profiel up to date en voeg je emailadres en naam toe. {site} maakt gebruik van idt mailadres als je het wachtwoord wil resetten." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Actualiseer uw profiel en voeg uw emailadres toe." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s gebruikt uw email adres als u u wachtwoord moet herstellen." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr " Pas uw profiel aan en vul uw naam in." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Parameter \"{parameter_name}\" is geen integer" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Dataset niet gevonden" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Niet gemachtigd om package in te zien %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Incorrect revisieformat: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Bekijken {package_type} datasets in {format} formaat is niet ondersteund (template file {file} niet gevonden)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN dataset revisie geschiedenis" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Recente wijzigingen aan CKAN dataset:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" -msgstr "Niet geautoriseerd om een package aan te maken" +msgstr "Niet gemachtigd om een pakket aan te maken" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Niet de rechten om deze bron te bewerken" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Bron niet gevonden" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Niet de rechten om deze dataset up te daten" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "De dataset {id} is niet gevonden." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Je moet ten minste een data bron toevoegen" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Fout" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Niet de rechten om deze bron te creëren" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "Niet gemachtigd om een bron te creëren voor dit pakket" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Kan de package niet toevoegen aan de zoekindex." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Kan de zoekindex niet actualiseren." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Dataset is verwijderd" + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Niet de rechten om dit pakket %s te verwijderen" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Dataset is verwijderd" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Bron is verwijderd" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Niet de rechten om deze bron %s te verwijderen" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Niet de rechten om deze dataset te lezen %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "Bronoverzicht niet gevonden" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" -msgstr "Niet geautoriseerd om bron %s te lezen" +msgstr "Niet gemachtigd om bron %s te lezen" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Bron data niet gevonden." -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Er is geen download beschikbaar" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Niet gemachtigd om bron te bewerken" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "Overzicht niet gevonden" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "Niet gemachtigd om overzicht %s te bekijken" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "Soort overzicht niet gevonden" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Fout in bronoverzicht gegevens" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Niet gemachtigd om bron %s te lezen" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "Bronoverzicht niet ingevoerd" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Er is geen voorbeeld geselecteerd" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Meest bekeken" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Meest bekeken" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Minst bekeken" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Nieuwste" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Oudste" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Het opgevraagde item is niet gevonden" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Het gerelateerde item is niet gevonden" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Geen toegang" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Pakket niet gevonden" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Het gerelateerde item is succcelvol aangemaakt" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Het gerelateerde item is succcelvol geupdate" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Het gerelateerde item is verwijderd" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Niet de rechten om dit item %s te verwijderen" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Toepassing" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idee" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Nieuws Artikel" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Krant" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Post" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualisatie" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN Repository Revisie Geschiedenis" @@ -708,43 +617,43 @@ msgstr "Andere" msgid "Tag not found" msgstr "Label niet gevonden" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Gebruiker niet gevonden" #: ckan/controllers/user.py:149 msgid "Unauthorized to register as a user." -msgstr "Niet geautoriseerd om een gebruiker aan te maken" +msgstr "Niet gemachtigd om een gebruiker aan te maken" #: ckan/controllers/user.py:166 msgid "Unauthorized to create a user" -msgstr "Niet geautoriseerd om een gebruiker aan te maken" +msgstr "Niet gemachtigd om een gebruiker aan te maken" #: ckan/controllers/user.py:197 msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "Niet geautoriseerd om gebruiker met id \"{user_id}\" te verwijderen." +msgstr "Niet gemachtigd om gebruiker met id \"{user_id}\" te verwijderen." #: ckan/controllers/user.py:211 ckan/controllers/user.py:270 msgid "No user specified" msgstr "Gebruiker niet gegeven" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" -msgstr "Niet geautoriseerd om gebruiker %s te wijzigen" +msgstr "Niet gemachtigd om gebruiker %s te wijzigen" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profiel geactualiseerd" #: ckan/controllers/user.py:232 #, python-format msgid "Unauthorized to create user %s" -msgstr "Niet geautoriseerd om gebruiker %s aan te maken" +msgstr "Niet gemachtigd om gebruiker %s aan te maken" #: ckan/controllers/user.py:238 msgid "Bad Captcha. Please try again." @@ -759,77 +668,89 @@ msgstr "Gebruiker \"%s\" is nu geregistreerd maar u bent nog steeds ingelogd als #: ckan/controllers/user.py:276 msgid "Unauthorized to edit a user." -msgstr "Niet geautoriseerd om een gebruiker te wijzigen" +msgstr "Niet gemachtigd om een gebruiker te wijzigen" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" -msgstr "Gebruiker %s niet geautoriseerd om %s te wijzigen" +msgstr "Gebruiker %s niet gemachtigd om %s te wijzigen" + +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Foutief wachtwoord ingevoerd" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Oude wachtwoord" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "Foutief wachtwoord" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Inloggen is mislukt. Incorrecte gebruikersnaam of wachtwoord." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." -msgstr "Niet geautoriseerd om een wachtwoord reset aan te vragen." +msgstr "Niet gemachtigd om wachtwoord herstel aan te vragen." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" kwam overeen met meerdere gebruikers" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Geen gebruiker: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Bekijk uw inbox voor een herstelcode." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Kon herstel link niet versturen: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." -msgstr "Niet geautoriseerd om een wachtwoord te resetten." +msgstr "Niet gemachtigd om een wachtwoord te herstellen." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Ongeldige reset toets. Probeert u het nog eens." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." -msgstr "Uw wachtwoord is gereset." +msgstr "Uw wachtwoord is opnieuw ingesteld." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Je wachtwoord moet minimaal 4 karakters bevatten." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." -msgstr "De opgegeven wachtwoorden komen niet overeen." +msgstr "De ingevoerde wachtwoorden komen niet overeen." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Je moet een wachtwoord invoeren." -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Volgend item niet gevonden" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} niet gevonden" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" -msgstr "Ombevoegd om {0} {1} te lezen" +msgstr "Niet gemachtigd om {0} {1} te lezen" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Alles" @@ -839,7 +760,7 @@ msgstr "Missende Waarde" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Het is niet toegestaan door te verwijzen naar externe omgevingen." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" @@ -951,7 +872,7 @@ msgstr "{actor} heeft item {related_type} {related_item} toegevoegd aan de datas msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} heeft item {related_type} {related_item} toegevoegd" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -959,10 +880,10 @@ msgid "View" msgstr "Bekijk" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{n} nieuwe activiteit from {site_title}" -msgstr[1] "{n} nieuwe activiteiten van {site_title}" +msgstr[0] "" +msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1012,135 +933,135 @@ msgstr "november" msgid "December" msgstr "december" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Enkele seconden geleden" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} minuut geleden" msgstr[1] "{mins} minuten geleden" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} uur geleden" msgstr[1] "{hours} uren geleden" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} dag geleden" msgstr[1] "{days} dagen geleden" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} maand geleden" msgstr[1] "{months} maanden geleden" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "meer dan {years} jaar geleden" msgstr[1] "meer dan {years} jaren geleden" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{day} {month} , {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day} {month}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Bewerk je schermafbeelding op gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Onbekend" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Naamloze bron" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Nieuwe dataset aangemaakt." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Bronnen gewijzigd." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Settings gewijzigd." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} keer bekeken" msgstr[1] "{number} keer bekeken" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} keer recent bekeken" @@ -1171,12 +1092,12 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "U bent uitgenodigd voor %{site_title}s. Er is een gebruiker aangemaakt met de naam %{user_name}s. De gebruikersnaam kan later nog worden veranderd.\n\nKlik op onderstaande link om de uitnodiging te accepteren en een wachtwoord aan te maken:\n\n%{reset_link}s\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1196,7 +1117,7 @@ msgstr "Uitnodiging voor {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Missende waarde" @@ -1209,7 +1130,7 @@ msgstr "Het invoerveld %(name)s werd niet verwacht." msgid "Please enter an integer value" msgstr "Vul een geheel getal in" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1219,11 +1140,11 @@ msgstr "Vul een geheel getal in" msgid "Resources" msgstr "Bronnen" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Package bron ongeldig" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Extra's" @@ -1233,25 +1154,22 @@ msgstr "Extra's" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Label vocabulary \"%s\" bestaat niet" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Gebruiker" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Dataset" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Groep" @@ -1263,395 +1181,386 @@ msgstr "Kon niet ontleed worden als valide JSON" msgid "A organization must be supplied" msgstr "Een organisatie moet worden ingevoerd" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Je kan geen dataset van een bestaande organisatie verwijderen" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Oganisatie bestaat niet" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Je kan geen dataset aan deze organisatie toevoegen" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Ongeldig geheel getal" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Moet een natuurlijk getal zijn" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Moet een positieve integer zijn" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Datumformaat onjuist" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Links zijn niet toegestaan in het logboekbericht" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "Er bestaat al een gegevensset met deze sleutel" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Bron" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Verwant" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Die groepsnaam of ID bestaat niet. " -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Soort activiteit" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Namen moeten strings zijn" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Die naam kan niet worden gebruikt" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Moet tenminste %s tekens bevatten" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Naam mag maximaal %i karakters lang zijn" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "Moet bestaan uit kleine letters (ascii), cijfers en deze symbolen: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Deze URL is al in gebruik." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "De lengte van naam \"%s\" is minder dan het minimum %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "De lengte van naam \"%s\" is meer dan het maximum %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Versie mag maximaal %i karakters lang zijn" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Dubbele sleutel \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "De naam van de groep bestaat al in database" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Tag \"%s\" lengte is minder dan vereiste %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "De lengte van label \"%s\" is langer dan het maximum van %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Tag \"%s\" moet een alfanumeriek karakter zijn of symbolen: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Tag \"%s\" mag geen hoofdletters bevatten" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Gebruikersnamen moeten strings zijn" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Die loginnaam is niet beschikbaar." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Voer a.u.b. beide wachtwoorden in" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Wachwoorden moeten strings zijn" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Uw wachtwoord moet 4 of meer karakters hebben" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "De wachtwoorden komen niet overeen" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "De wijziging is niet toegestaan aangezien deze op spam lijkt. Gebruik a.u.b. geen links in uw beschrijving." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Naam moet tenminste %s karakters lang zijn" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Die vocabulairenaam is al in gebruik." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Kan de waarde van de key niet wijzigen van %s naar %s. Deze key is alleen-lezen." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Label vocabulaire niet gevonden." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Label %s behoort niet tot vocabulaire %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Geen label naam" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Label %s behoort al tot vocabulaire %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Vul een geldige URL in" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "Deze rol bestaat niet." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Gegevenssets zonder organisatie kunnen niet besloten zijn." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Geen lijst" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Geen string" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Deze ouder zou een oneindige lus in de hiërarchie veroorzaken" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "\"filter_fields\" en \"filter_values\" moeten dezelfde lengte hebben" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "\"filter_values\" is vereist wanneer \"filter_fields\" is ingevuld" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "Er is een veld in het schema met dezelfde naam" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Maak object %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Maak package relatie: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: creëer lid object %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "U probeert een organisatie als groep te creëren" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." -msgstr "Er moet een package id of naam worden opgegeven (parameter \"package\")" +msgstr "Er moet een sleutel of naam worden ingevoerd (parameter \"package\")" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Een waardering is vereist (parameter \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Waardering moet hele waarde hebben." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Waardering moet tussen %i en %i liggen." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "U moet ingelogd zijn om users te volgen" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "U kan niet uzelf volgen" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "U volgt {0} al" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "U moet ingelogd zijn om een dataset te kunnen volgen." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Gebruiker {username} bestaat niet." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "U moet ingelogd zijn om een groep te kunnen volgen." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Verwijder Package: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Verwijder %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Verwijder lid: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id niet in data" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Kan vocabulaire %s niet vinden" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Kan label \"%s\" niet vinden" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "U moet ingelogd zijn om iets te ontvolgen." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "U volgd {0} niet" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Bron niet gevonden." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Niks specificeren wanneer u gebruik maakt van de \"query\" parameter" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Moet zijn : pa(a)r(en)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Veld \"{field}\" niet herkend in resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "onbekende gebruiker:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Item is niet gevonden." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Package is niet gevonden" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Update object %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Bijwerken package relaties: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "Versie bijgewerkt" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organisatie is niet gevonden." #: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 #, python-format msgid "User %s not authorized to create packages" -msgstr "Gebruiker %s is niet geautoriseerd om packages aan te maken" +msgstr "Gebruiker %s is niet gemachtigd om packages aan te maken" #: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 #, python-format msgid "User %s not authorized to edit these groups" -msgstr "Gebruiker %s is niet geautoriseerd om deze groepen te wijzigen" +msgstr "Gebruiker %s is niet gemachtigd om deze groepen te wijzigen" #: ckan/logic/auth/create.py:36 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "Gebruiker %s is niet geautoriseerd om gegevenssets toe te voegen aan deze organisatie" +msgstr "Gebruiker %s is niet gemachtigd om gegevenssets toe te voegen aan deze organisatie" #: ckan/logic/auth/create.py:58 msgid "You must be a sysadmin to create a featured related item" @@ -1663,9 +1572,9 @@ msgstr "U moet ingelogd zijn om een verwant item te maken" #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "Geen sleutel voor de gegevensset ingevoerd. Machtiging kan niet worden gecontroleerd." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Geen package gevonden voor deze bron, kan autorisatie niet controleren." @@ -1673,139 +1582,143 @@ msgstr "Geen package gevonden voor deze bron, kan autorisatie niet controleren." #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "Gebruiker %s is niet gemachtigd om bronnen aan te maken voor gegevensset %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" -msgstr "Gebruiker %s is niet geautoriseerd om deze packages te wijzigen" +msgstr "Gebruiker %s is niet gemachtigd om deze pakketten te wijzigen" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" -msgstr "Gebruiker %s is niet geautoriseerd om groepen aan te maken" +msgstr "Gebruiker %s is niet gemachtigd om groepen aan te maken" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" -msgstr "Gebruiker %s is niet geautoriseerd om organisaties te creëren" +msgstr "Gebruiker %s is niet gemachtigd om organisaties te creëren" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" -msgstr "Gebruiker {user} is niet geautoriseerd om gebruikers aan te maken via de API" +msgstr "Gebruiker {user} is niet gemachtigd om gebruikers aan te maken via de API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" -msgstr "Niet geautoriseerd om gebruikers te maken" +msgstr "Niet gemachtigd om gebruikers te maken" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Groep niet gevonden." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Geldige API key nodig om een package aan te maken" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Geldige API key nodig om een groep aan te maken" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" -msgstr "Gebruiker %s is niet geautoriseerd om een lid toe te voegen" +msgstr "Gebruiker %s is niet gemachtigd om een lid toe te voegen" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" -msgstr "Gebruiker %s is niet geautoriseerd om groep %s te wijzigen" +msgstr "Gebruiker %s is niet gemachtigd om groep %s te wijzigen" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" -msgstr "Gebruiker %s is niet geautoriseerd om bron %s te verwijderen" +msgstr "Gebruiker %s is niet gemachtigd om bron %s te verwijderen" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "Bronoverzicht niet gevonden. Machtiging kan niet worden gecontroleerd." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Alleen de eigenaar kan een verwant item verwijderen" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" -msgstr "Gebruiker %s is niet geautoriseerd om relatie %s te verwijderen " +msgstr "Gebruiker %s is niet gemachtigd om relatie %s te verwijderen " -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" -msgstr "Gebruiker %s is niet geautoriseerd om een groep te verwijderen" +msgstr "Gebruiker %s is niet gemachtigd om een groep te verwijderen" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" -msgstr "Gebruiker %s is niet geautoriseerd om groep %s te verwijderen " +msgstr "Gebruiker %s is niet gemachtigd om groep %s te verwijderen " -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" -msgstr "Gebruiker %s is niet geautoriseerd om een organisatie te verwijderen" +msgstr "Gebruiker %s is niet gemachtigd om een organisatie te verwijderen" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" -msgstr "Gebruiker %s is niet geautoriseerd om organisatie %s te verwijderen" +msgstr "Gebruiker %s is niet gemachtigd om organisatie %s te verwijderen" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" -msgstr "Gebruiker %s niet geautoriseerd om task_status te verwijderen" +msgstr "Gebruiker %s niet gemachtigd om task_status te verwijderen" + +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Geen toegang" #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" -msgstr "Gebruiker %s is niet geautoriseerd om deze packages te lezen" +msgstr "Gebruiker %s is niet gemachtigd om deze pakketten te lezen" #: ckan/logic/auth/get.py:119 #, python-format msgid "User %s not authorized to read package %s" -msgstr "Gebruiker %s is niet geautoriseerd om package %s te lezen " +msgstr "Gebruiker %s is niet gemachtigd om pakket %s te lezen " #: ckan/logic/auth/get.py:141 #, python-format msgid "User %s not authorized to read resource %s" -msgstr "Gebruiker %s is niet geautoriseerd om bron %s te lezen " +msgstr "Gebruiker %s is niet gemachtigd om bron %s te lezen " #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "Gebruiker %s is niet gemachtigd om groep %s te lezen " -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "U moet ingelogd zijn om toegang te hebben tot uw dashboard." #: ckan/logic/auth/update.py:37 #, python-format msgid "User %s not authorized to edit package %s" -msgstr "Gebruiker %s is niet geautoriseerd om package %s te wijzigen " +msgstr "Gebruiker %s is niet gemachtigd om pakket %s te wijzigen " #: ckan/logic/auth/update.py:69 #, python-format msgid "User %s not authorized to edit resource %s" -msgstr "Gebruiker %s is niet geautoriseerd om bron %s te veranderen" +msgstr "Gebruiker %s is niet gemachtigd om bron %s te veranderen" #: ckan/logic/auth/update.py:98 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "Gebruiker %s is niet geautoriseerd om status van package %s te wijzigen " +msgstr "Gebruiker %s is niet gemachtigd om status van pakket %s te wijzigen " #: ckan/logic/auth/update.py:126 #, python-format msgid "User %s not authorized to edit organization %s" -msgstr "Gebruiker %s is niet geautoriseerd om organisatie %s te veranderen" +msgstr "Gebruiker %s is niet gemachtigd om organisatie %s te veranderen" #: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 msgid "Only the owner can update a related item" @@ -1818,12 +1731,12 @@ msgstr "U moet ingelogd zijn als systeembeheerder om een verwant item featured v #: ckan/logic/auth/update.py:165 #, python-format msgid "User %s not authorized to change state of group %s" -msgstr "Gebruiker %s is niet geautoriseerd om status van groep %s te wijzigen" +msgstr "Gebruiker %s is niet gemachtigd om status van groep %s te wijzigen" #: ckan/logic/auth/update.py:182 #, python-format msgid "User %s not authorized to edit permissions of group %s" -msgstr "Gebruiker %s is niet geautoriseerd om rechten van groep %s te wijzigen" +msgstr "Gebruiker %s is niet gemachtigd om rechten van groep %s te wijzigen" #: ckan/logic/auth/update.py:209 msgid "Have to be logged in to edit user" @@ -1832,26 +1745,26 @@ msgstr "U dient te zijn ingelogd om gebruikersgegevens te wijzigen" #: ckan/logic/auth/update.py:217 #, python-format msgid "User %s not authorized to edit user %s" -msgstr "Gebruiker %s is niet geautoriseerd om gebruiker %s te wijzigen" +msgstr "Gebruiker %s is niet gemachtigd om gebruiker %s te wijzigen" #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "Gebruiker {0} heeft geen toestemming om de gebruiker {1} bij te werken" #: ckan/logic/auth/update.py:236 #, python-format msgid "User %s not authorized to change state of revision" -msgstr "Gebruiker %s is niet geautoriseerd om status van revisie te wijzigen" +msgstr "Gebruiker %s is niet gemachtigd om status van revisie te wijzigen" #: ckan/logic/auth/update.py:245 #, python-format msgid "User %s not authorized to update task_status table" -msgstr "Gebruiker %s is niet geautoriseerd om task_status tabel te wijzigen" +msgstr "Gebruiker %s is niet gemachtigd om task_status tabel te wijzigen" #: ckan/logic/auth/update.py:259 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "Gebruiker %s niet geautoriseerd om term_translation tabel te wijzigen" +msgstr "Gebruiker %s niet gemachtigd om term_translation tabel te wijzigen" #: ckan/logic/auth/update.py:281 msgid "Valid API key needed to edit a package" @@ -1861,63 +1774,63 @@ msgstr "Geldige API key nodig om een package te wijzigen" msgid "Valid API key needed to edit a group" msgstr "Geldige API key nodig om een groep te wijzigen" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "Licentie is niet gespecificeerd" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Other (Open)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Other (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Other (Attribution)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Other (Non-Commercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Other (Not Open)" @@ -2024,8 +1937,6 @@ msgstr "Bevestig" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Afbreken" @@ -2050,12 +1961,13 @@ msgstr "Link" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Verwijder" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Afbeelding" @@ -2121,14 +2033,13 @@ msgstr "Bestand wordt geupload. Als u deze pagina verlaat stopt de upload. Weet #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Wijzig sortering bronnen" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2142,7 +2053,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Bijwerk" @@ -2181,34 +2091,42 @@ msgstr "Powered by Site Title: This is the title of this CKAN instance It " @@ -2315,7 +2230,7 @@ msgstr "Bevestig reset" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Beheer CKAN" #: ckan/templates/admin/index.html:20 #, python-format @@ -2327,11 +2242,11 @@ msgstr "" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Definitief verwijderen" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "

Onherstelbaar en definitief verwijderen

" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" @@ -2359,7 +2274,6 @@ msgid "" msgstr "De Data API kan worden benaderd via de volgende acties van de CKAN action API." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Creëer" @@ -2511,7 +2425,7 @@ msgstr "selecteren" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2544,8 +2458,6 @@ msgstr "groep formulier" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "bevestig delete" @@ -2563,7 +2475,7 @@ msgstr "Weet u zeker dat u dit lid wilt deleten - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2708,14 +2620,12 @@ msgstr "Weet u zeker dat u dit lid wil verwijderen?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Verwijderen" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Bewaar" @@ -2803,7 +2713,6 @@ msgstr "mijn-groep" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Omschrijving" @@ -2864,7 +2773,7 @@ msgstr "Vergelijk" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2950,52 +2859,44 @@ msgstr "Dit is een gekenmerkte sectie" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "Bijv. omgeving" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "Zoek gegevens" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Veel gebruikte labels" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" msgstr "{0} statistieken" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "dataset" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "datasets" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "Organisatie" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organisaties" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "group" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "groepen" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "gerelateerd item" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "gerelateerde items" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3013,7 +2914,6 @@ msgid "Custom" msgstr "Op maat gemaakt" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Het formulier bevat onjuiste informatie:" @@ -3026,7 +2926,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "Image URL" @@ -3071,7 +2970,7 @@ msgstr "Schets" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3105,6 +3004,20 @@ msgstr "Zoek organisaties" msgid "There are currently no organizations for this site" msgstr "Er zijn momenteel geen organisaties beschikbaar voor deze site" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Gebruikersnaam" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "E-mail adres" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Bijwerken lid" @@ -3141,7 +3054,7 @@ msgstr "Dataset toevoegen" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "Datasets in organisatie: {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 @@ -3156,7 +3069,7 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "" +msgstr "

Organisaties zijn afdelingen die datasets publiceren (bv. de afdeling Volksgezondheid). Dit betekent dat de datasets gepubliceerd en beheerd kunnen worden door een afdeling in plaats van een enkele gebruiker.

Binnen organisaties kunnen beheerders rollen toewijzen aan leden. Hiermee geven zij leden toestemming om datasets te publiceren (bv. Centraal Bureau voor de Statistiek).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" @@ -3229,7 +3142,7 @@ msgstr "Wijzigen metadata" #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Overzicht bijwerken" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3239,7 +3152,6 @@ msgid "Preview" msgstr "Preview" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "updaten" @@ -3282,7 +3194,7 @@ msgstr "Nieuwe bron" #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Overzicht toevoegen" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3298,7 +3210,7 @@ msgstr "" msgid "Add" msgstr "Toevoegen" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3330,28 +3242,32 @@ msgstr "Upload error:" msgid "Error:" msgstr "Fout:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Status" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Laatst gewijzigd" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Nooit" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Upload log" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Details" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Einde van log" @@ -3374,7 +3290,7 @@ msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Overzichten" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" @@ -3406,7 +3322,7 @@ msgstr "Bron:
%(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "Er zijn nog geen overzichten voor deze bron." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" @@ -3455,7 +3371,7 @@ msgid "unknown" msgstr "Onbekend" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Gecreëerd" @@ -3473,11 +3389,11 @@ msgstr "Licentie" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "Nieuw overzicht" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "Deze bron heeft geen overzichten" #: ckan/templates/package/resources.html:8 msgid "Add new resource" @@ -3491,6 +3407,10 @@ msgid "" "add some?

" msgstr "

Deze dataset heeft geen data, Voeg toe

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API documentatie" @@ -3515,15 +3435,15 @@ msgstr "U kunt ook het register raadplegen met behulp van de %(api_link)s (see % #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "Alle overzichten" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "Overzicht bekijken" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "Voorbeeld bekijken" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 @@ -3547,14 +3467,14 @@ msgid "Version" msgstr "Versie" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Provincie" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "Laatst gewijzigd" #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" @@ -3562,7 +3482,6 @@ msgstr "Data API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Titel" @@ -3582,30 +3501,30 @@ msgstr "bv. Enkele nuttige informatie over de data" msgid "eg. economy, mental health, government" msgstr "vb. Economie, geestelijke gezondheidszorg, overheid" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Defenities van licenties en aanvullende informatie is te vinden op opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organisaties" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Geen organisatie" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Zichtbaarheid" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Publiek" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Actief" @@ -3732,7 +3651,7 @@ msgstr "Ontdek" msgid "More information" msgstr "Meer informatie" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Insluiten" @@ -3752,11 +3671,11 @@ msgstr "" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Breedte" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Hoogte" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" @@ -3764,7 +3683,7 @@ msgstr "Code" #: ckan/templates/package/snippets/resource_views_list.html:8 msgid "Resource Preview" -msgstr "" +msgstr "Voorbeeld van de bron" #: ckan/templates/package/snippets/resources_list.html:13 msgid "Data and Resources" @@ -3772,7 +3691,7 @@ msgstr "Data en bronnen" #: ckan/templates/package/snippets/resources_list.html:29 msgid "This dataset has no data" -msgstr "" +msgstr "Deze gegevensset heeft geen inhoud" #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format @@ -3796,160 +3715,27 @@ msgstr "" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "" +msgstr "b.v. informatie over mijn overzicht" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "" +msgstr "Filter toevoegen" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "Filter verwijderen" #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" -msgstr "" +msgstr "Filters" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "" +msgstr "Wat is een overzicht?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Verwante Vorm" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Wat zijn gerelateerde items?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Gerelateerde media omvat elke applicatie, visualisatie of een idee met betrekking tot deze dataset.

Zo zou het een visualisatie, een pictograph, een staafdiagram, een applicatie of zelfs een nieuwsbericht dat refereert naar de dataset kunnen zijn.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Weet u zeker dat u het verwante item wilt verwijderen - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Applicaties & Ideeën" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Items tonen %(first)s - %(last)s of %(item_count)s Verwante items gevonden

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s verwante items gevonden

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Er zijn nog geen applicaties ingediend." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Wat zijn applicaties?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Dit zijn applicaties die gebouwd zijn met datasets als mede met ideeën die uitgevoerd kunnen worden" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filter Resultaten" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filter op type" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Alle" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Sorteren op" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Fout" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Toon enkel gekenmerkte items" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Toepassen" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Bewerkt gerelateerd item" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Bewerk gerelateerde" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Bewerk gerelateerd item" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Creëer een gerelateerd item" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Creëer gerelateerd " - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Creëer gerelateerd item" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Mijn gerelateerde item" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Informatie over het item..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Type" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Weet u zeker dat u dit gerelateerde item wilt verwijderen?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Ga naar {related_item_type}" +msgstr "Een overzicht is een representatie van gegevens uit een bepaalde bron" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -4038,7 +3824,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Er zijn geen {facet_type} die overeenkomen met het gezochte" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Home" @@ -4047,7 +3832,7 @@ msgid "Language" msgstr "Taal" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4079,21 +3864,25 @@ msgstr "Er zijn nog geen applicaties, ideeën, nieuwsberichten of foto's gerelat msgid "Add Item" msgstr "Item toevoegen" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Voorleggen" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Sorteer op" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filter Resultaten" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Probeer een andere zoekopdracht.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4168,7 +3957,7 @@ msgid "Subscribe" msgstr "Abonneren" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4187,10 +3976,6 @@ msgstr "Wijzigingen" msgid "Search Tags" msgstr "Zoeklabels" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Dashboard" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "News feed" @@ -4254,36 +4039,27 @@ msgstr "Jouw profiel laat andere CKAN gebruikers zien wie jij bent en wat jij do msgid "Change details" msgstr "Wijzigen details" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Gebruikersnaam" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Volledige naam" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "Bijvoorbeeld: Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "Bijvoorbeeld: joe@voorbeeld.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Informatie over jou" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Notificatie e-mails ontvangen?" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Wijzigen wachtwoord" @@ -4309,7 +4085,7 @@ msgstr "" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Vernieuw API key" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" @@ -4401,7 +4177,7 @@ msgstr "Dreëer datasets, groepen en andere interessante dingen" #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "gebruikersnaam" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" @@ -4463,11 +4239,11 @@ msgstr "API key" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Wachtwoord herstellen" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Herstel aanvragen" #: ckan/templates/user/request_reset.html:34 msgid "" @@ -4516,15 +4292,15 @@ msgstr "Nog niet geupload" msgid "DataStore resource not found" msgstr "Datastore bron niet gevonden" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Bron \"{0}\" is niet gevonden" @@ -4532,6 +4308,14 @@ msgstr "Bron \"{0}\" is niet gevonden" msgid "User {0} not authorized to update resource {1}" msgstr "Gebruiker {0} heeft geen toestemming om de bron {1} te bewerken" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4558,6 +4342,10 @@ msgstr "Landcode" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4569,71 +4357,31 @@ msgstr "" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "Afbeelding URL" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "Tabel" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Grafiek" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" +msgstr "Kaart" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Deze gecompileerde versie van SlickGrid is verkregen met de Google Closure Compiler, via het volgende commando:\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js (same as source)\nEr zijn 2 andere bestanden nodig om de SlickGrid view goed te laten werken:\n* jquery-ui-1.8.16.custom.min.js\n* jquery.event.drag-2.0.min.js\n\nDeze zijn aanwezig bij de Recline source, maar ontbreken in het samengestelde bestand om compatibiliteitsproblemen makkelijker op te lossen.\nCheck a.u.b. de SlickGrid licentie in het opgenomen included MIT-LICENSE.txt bestand.\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4643,56 +4391,55 @@ msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "bijv.: 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Aantal rijen" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "bijv.: 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Grafieksoort" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Groep (As 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Series (As 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "Veldsoort" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" -msgstr "" +msgstr "Veld voor geografische breedte (lat)" #: ckanext/reclineview/theme/templates/recline_map_form.html:8 msgid "Longitude field" -msgstr "" +msgstr "Veld voor geografische lengte (lon)" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "GeoJSON veld" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" -msgstr "" +msgstr "Automatische alle objecten in beeld brengen" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "Objecten samenvoegen (clusteren)" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Totaal aantal datasets" @@ -4720,33 +4467,27 @@ msgstr "Nieuwe datasets" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Hoogst gewaardeerde datasets" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Gemiddelde score" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Aantal scores" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Geen score" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Meest bewerkte dataset" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Aantal veranderingen" @@ -4756,12 +4497,10 @@ msgstr "Geen bewerkte datasets" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Grootste groepen" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Aantal datasets" @@ -4771,7 +4510,6 @@ msgstr "Geen groepen" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Top labels" @@ -4786,8 +4524,8 @@ msgstr "Aantal Datasets" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Gebruikers met het hoogste aantal datasets" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4797,44 +4535,18 @@ msgstr "Statistieken Menu" msgid "Total Number of Datasets" msgstr "Totaal Aantal Datasets" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistieken" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Dataset revisies per week" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Tekst" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Gebruikers met de meeste datasets" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Pagina laatst bijgewerkt:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Scoreboard - Statistieken" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Dataset scoreboard" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Kies een eigenschap van een dataset en ontdek welke categorieën in dat gebied het meeste datasets bevatten. Bijvoorbeeld labels, groepen, licentie, res_format, land." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Kies thema" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "Er is een fout opgetreden: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Website" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" diff --git a/ckan/i18n/no/LC_MESSAGES/ckan.mo b/ckan/i18n/no/LC_MESSAGES/ckan.mo index 75c29b4a234..a81d7c54120 100644 Binary files a/ckan/i18n/no/LC_MESSAGES/ckan.mo and b/ckan/i18n/no/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/no/LC_MESSAGES/ckan.po b/ckan/i18n/no/LC_MESSAGES/ckan.po index 2a90c325d82..715ffc66986 100644 --- a/ckan/i18n/no/LC_MESSAGES/ckan.po +++ b/ckan/i18n/no/LC_MESSAGES/ckan.po @@ -4,6 +4,7 @@ # # Translators: # geirmund , 2012 +# Hilde Austlid , 2015 # , 2011 # Olav A. Øvrebø , 2014 # Open Knowledge Foundation , 2011 @@ -13,252 +14,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:20+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Norwegian (http://www.transifex.com/projects/p/ckan/language/no/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:22+0000\n" +"Last-Translator: dread \n" +"Language-Team: Norwegian (http://www.transifex.com/okfn/ckan/language/no/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: no\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Autoriseringsfunksjonen ikke funnet: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Admin" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Redaktør" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Medlem" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Du må være systemadministrator for å forvalte" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Nettstedets tittel" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Stil" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Nettstedets slagord" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Logo" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Om" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Tekst til om-siden" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Introtekst" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Tekst på hjemmesiden" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Egendefinert CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Egendefinert CSS som settes inn på hver side" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Hjemmeside" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Kan ikke tømme pakken %s fordi tilknyttet versjon %s inkluderer ikke-slettede datakilder %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Feil på sletting av versjon %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Tømming komplett" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Handling ikke implementert." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Ikke autorisert til å se denne siden" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Ingen tilgang" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Ikke funnet" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Feilaktig forespørsel" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Handlingsnavn ukjent: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON-feil: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Feil på dataene i forespørselen: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Kan ikke liste enhet av denne typen: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Kan ikke lese enhet av denne typen: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Kan ikke opprette ny enhet av denne typen: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Kan ikke legge datakilde til søkeindeksen" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Kan ikke oppdatere enhet av denne typen: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Kan ikke oppdatere søkeindeksen" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Kan ikke slette enhet av denne typen: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Ingen versjon spesifisert" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Det finnes ingen versjon med id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Søkestreng mangler ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Kunne ikke lese parametere: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Feil i søkebegrep: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Ukjent register: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Feil utformet qjson-verdi: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Forespurte parametere må være i formen til en json-kodet ordbok." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Fant ikke gruppen" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Feil gruppetype" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Ikke autorisert til å lese gruppen %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -269,23 +270,23 @@ msgstr "Ikke autorisert til å lese gruppen %s" msgid "Organizations" msgstr "Organisasjoner" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupper" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -293,394 +294,303 @@ msgstr "Grupper" msgid "Tags" msgstr "Stikkord (tags)" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formater" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Lisenser" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Ikke autorisert til å utføre bulk-oppdatering" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Ikke autorisert til å opprette en ny gruppe" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Bruker %r ikke autorisert til å redigere %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Integritetsfeil" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Bruker %r ikke autorisert til å redigere rettighetene til %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Ikke autorisert til å slette gruppen %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organisasjonen er blitt slettet." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Gruppen har blitt slettet." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Ikke autorisert til å legge medlem til gruppen %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Ikke autorisert til å slette medlemmer fra gruppen %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Gruppemedlem er blitt slettet." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Velg to versjoner før du gjør sammenligningen." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Bruker %r ikke autorisert til å redigere %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Endringshistorikk for gruppe" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Nylige endringer i gruppen:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Loggmelding:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Ikke autorisert til å lese gruppen {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Du følger nå {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Du følger ikke lenger {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Ikke autorisert til å se følgere %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Dette nettstedet er frakoblet. Databasen er ikke startet." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Oppdater profilen din og legg til e-postadressen din og ditt fullstendige navn. {site} bruker e-post-adressen din hvis du trenger å endre passordet." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Oppdater profilen din og legg til e-postadressen din." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s bruker e-postadressen din i tilfelle du trenger å tilbakestille passordet ditt." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Oppdater profilen din og legg til det fullstendige navnet ditt." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Parameteren \"{parameter_name}\" er ikke et heltall" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Datasett ikke funnet" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Har ikke rettigheten til å lese datakilden %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Ugyldig versjonsformat: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Visning av datasett av typen {package_type} i formatet {format} er ikke støttet. (Finner ikke malfil for {file}.)" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Endringshistorikk for datasett." -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Siste endringer i CKAN-datasettet:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Ikke autorisert til å opprette en datakilde" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Ikke autorisert til å redigere denne ressursen" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Ressursen ikke funnet" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Ikke autorisert til å oppdatere datasettet" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Fant ikke datasettet {id}." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Du må legge til minst en dataressurs" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Feil" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Ikke autorisert til å opprette en ressurs" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Kan ikke legge datakilden til søkeindeksen." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Kan ikke oppdatere søkeindeksen." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Datasettet har blitt slettet." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Ikke autorisert til å slette datakilde %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Datasettet har blitt slettet." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Ressursen har blitt slettet." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Ikke autorisert til å slette ressursen %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Ikke autorisert til å lese datasettet %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Ingen tillatelse å lese ressursen %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Fant ikke ressursdata" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Materiale til nedlasting ikke tilgjengelig." -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Ingen forhåndsvisning er definert." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Mest sett" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Mest sett" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Minst sett" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Nyeste" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Eldste" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Relatert materiale ikke funnet." - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Relatert materiale ikke funnet" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Ikke autorisert" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Datakilde ikke funnet" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Relatert materiale ble opprettet" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Relatert materiale ble oppdatert" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Relatert materiale er slettet." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Ikke autorisert til å slette relatert materiale %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Applikasjon" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Ide" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Nyhetsartikkel" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Vitenskapelig artikkel" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Blogginnlegg" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualisering" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Arkivhistorikk" @@ -706,10 +616,10 @@ msgstr "Annet" msgid "Tag not found" msgstr "Stikkord ikke funnet" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Bruker ikke funnet" @@ -729,13 +639,13 @@ msgstr "Har ikke tillatelse til å slette brukeren \"{user_id}\"." msgid "No user specified" msgstr "Ingen bruker spesifisert" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Ikke autorisert til å redigere brukeren %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil oppdatert" @@ -759,75 +669,87 @@ msgstr "Bruker \"%s\" er nå registrert, men du er fortsatt logget inn som \"%s\ msgid "Unauthorized to edit a user." msgstr "Ikke autorisert til å redigere en bruker." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Bruker %s ikke autorisert til å redigere %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Innlogging mislyktes. Galt brukernavn eller passord." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Ikke autorisert til å be om tilbakestilling av passord." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" passer med flere brukere" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Brukeren finnes ikke: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Sjekk innboksen din for en tilbakestillingskode." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Kunne ikke sende tilbakestillings-lenke: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Ikke autorisert til å tilbakestille passord." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Ugyldig tilbakestillingskode. Prøv igjen." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Ditt passord har blitt tilbakestilt." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Passordet må bestå av 4 tegn eller mer." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Passordene du skrev inn stemmer ikke overens." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Du må oppgi et passord" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Fant ikke materiale" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} ikke funnet" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Ikke autorisert til å lese {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Alt" @@ -949,7 +871,7 @@ msgstr "{actor} la {related_type} {related_item} til datasettet {dataset}" msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} la til {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -957,10 +879,10 @@ msgid "View" msgstr "Se" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "1 ny aktivitet fra {site_title}" -msgstr[1] "{n} nye aktiviteter fra {site_title}" +msgstr[0] "" +msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1010,135 +932,135 @@ msgstr "november" msgid "December" msgstr "desember" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "akkurat nå" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} minutt siden" msgstr[1] "{mins} minutter siden" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} time siden" msgstr[1] "{hours} timer siden" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} dag siden" msgstr[1] "{days} dager siden" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} måned siden" msgstr[1] "{months} måneder siden" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "mer enn {years} år siden" msgstr[1] "mer enn {years} år siden" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{day}. {month} {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Oppdater din avatar på gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Ukjent" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Ressurs mangler navn" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Opprettet nytt datasett." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Redigerte ressurser." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Redigerte innstillinger." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} visning" msgstr[1] "{number} visninger" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} nylig visning" @@ -1169,7 +1091,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1194,7 +1116,7 @@ msgstr "Invitasjon til {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Manglende verdi" @@ -1207,7 +1129,7 @@ msgstr "Feltet %(name)s er uventet." msgid "Please enter an integer value" msgstr "Oppgi et heltall" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1217,11 +1139,11 @@ msgstr "Oppgi et heltall" msgid "Resources" msgstr "Ressurser" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Ugyldige ressurser for datakilde" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Ekstra" @@ -1231,25 +1153,22 @@ msgstr "Ekstra" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Stikkordtype \"%s\" eksisterer ikke" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Bruker" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Datasett" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Gruppe" @@ -1261,378 +1180,369 @@ msgstr "Klarte ikke å tolke som gyldig JSON" msgid "A organization must be supplied" msgstr "En organisasjon må oppgis" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Du kan ikke fjerne et datasett fra en eksisterende organisasjon" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organisasjonen eksisterer ikke" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Du kan ikke legge et datasett til denne organisasjonen" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Ugyldig heltall" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Må være et heltall" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Må være et positivt heltall" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Feil i datoformat" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Ingen lenker er tillatt i log_message." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Ressurs" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Relatert" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Dette gruppenavnet eller ID eksisterer ikke." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Aktivitetstype" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Navn må være tekststrenger" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Navnet kan ikke brukes" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Navnet må inneholde maksimalt %i tegn" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Denne URL er allerede i bruk." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Navnet \"%s\" inneholder mindre enn %s tegn" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Navnet \"%s\" inneholder flere enn %s tegn" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Versjon må inneholde maksimalt %i tegn" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Dupliser nøkkel \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "En gruppe med dette navnet finnes allerede i databasen" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Lengden til stikkordet \"%s\" er kortere enn minimum %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Lengden til stikkordet \"%s\" er mer enn maksimalt %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Stikkordet \"%s\" må skrives med alfanumeriske tegn (ascii) og symboler: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Stikkordet \"%s\" kan ikke skrives med store bokstaver" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Brukernavn må være tekststrenger" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Brukernavnet er ikke tilgjengelig." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Skriv inn begge passordene" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Passord må være tekststrenger" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Ditt passord må være 4 tegn eller mer" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Passordene du skrev inn stemmer ikke overens" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Endring ikke godkjent, da innholdet ser ut som spam. Unngå lenker i beskrivelsen din." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Navnet må være minst %s tegn langt" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Dette navnet er allerede i bruk." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Kan ikke endre verdi på nøkkel fra %s til %s. Nøkkelen er read-only" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Fant ikke stikkordvokabular." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Stikkord %s tilhører ikke vokabularet %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Intet stikkordnavn" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Stikkord %s tilhører allerede vokabular %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Oppgi en gyldig URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "rollen eksisterer ikke." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Datasett uten organisasjon kan ikke være private." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "ikke en liste" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "ikke en streng" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Kan ikke sette dette elementet som overordnet, det ville føre til en sirkel i hierarkiet" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Opprett objekt %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Opprett relasjon til datakilde: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Opprett medlemsobjekt %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Prøver å opprette en organisasjon som en gruppe" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Du må angi et navn eller id for datakilden (parameter \"pakke\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Du må angi en rangering (parameter \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Rangeringen må være et heltall" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Rangeringen må være mellom %i og %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Du må være innlogget for å kunne følge brukere" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Du kan ikke følge deg selv" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Du følger allerede {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Du må være innlogget for å følge et datasett." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Bruker {username} eksisterer ikke." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Du må være logget inn for å følge en gruppe." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Slett datakilde: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Slett %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Slett medlem: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id finnes ikke i data" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Kan ikke finne vokabular \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Kan ikke finne stikkord \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Du må være innlogget for å slutte å følge noe." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Du følger ikke {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Fant ikke ressursen." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Ikke spesifiser hvis \"query\"-parameter brukes" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Må være : pair(s)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Feltet \"{field}\" ikke gjenkjent i resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "ukjent bruker:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Element ikke funnet." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Fant ikke datakilden." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Oppdater objekt %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Oppdater pakkerelasjon: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "Fant ikke TaskStatus." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Fant ikke organisasjon." @@ -1663,7 +1573,7 @@ msgstr "Du må logge inn for å legge til relatert informasjon" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Ingen datakilde funnet for denne ressursen, kan ikke sjekke aut." @@ -1673,94 +1583,98 @@ msgstr "Ingen datakilde funnet for denne ressursen, kan ikke sjekke aut." msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Bruker %s ikke autorisert til å redigere disse datakildene" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Bruker %s ikke autorisert til å opprette grupper" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Bruker %s ikke autorisert til å opprette organisasjoner" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "Brukeren {user} har ikke tillatelse til å opprette brukere via API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Har ikke tillatelse til å opprette brukere" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Fant ikke gruppen." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Gyldig API-nøkkel kreves for å opprette en datakilde" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Gyldig API-nøkkel påkrevet for å opprette en gruppe" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Bruker %s ikke autorisert til å legge til medlemmer" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Bruker %s ikke autorisert til å redigere gruppen %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Bruker %s ikke autorisert til å slette ressursen %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Bare eier kan slette relatert informasjon" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Bruker %s ikke autorisert til å slette forhold %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Bruker %s ikke autorisert til å slette grupper" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Bruker %s ikke autorisert til å slette gruppen %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Bruker %s ikke autorisert til å slette organisasjoner" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Bruker %s ikke autorisert til å slette organisasjonen %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Bruker %s ikke autorisert til å slette task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Ikke autorisert" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1781,7 +1695,7 @@ msgstr "Bruker %s ikke autorisert til å lese ressurs %s" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Du må være innlogget for å få tilgang til kontrollpanelet ditt." @@ -1859,63 +1773,63 @@ msgstr "Gyldig API-nøkkel påkrevet for å redigere en datakilde" msgid "Valid API key needed to edit a group" msgstr "Gyldig API-nøkkel påkrevet for å redigere en gruppe" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Navngivelse" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Navngivelse-Del på samme vilkår" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Annet (åpen)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Annet (public domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Annet (navngivelse)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons ikke-kommersiell" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Annet (ikke-kommersiell)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Annet (ikke åpen)" @@ -2022,8 +1936,6 @@ msgstr "Bekreft" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Avbryt" @@ -2048,12 +1960,13 @@ msgstr "Lenke" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Fjern" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Bilde" @@ -2126,7 +2039,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2140,7 +2052,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Rediger" @@ -2179,34 +2090,42 @@ msgstr "Laget med Site Title: This is the title of this CKAN instance It " @@ -2357,7 +2273,6 @@ msgid "" msgstr "Data-APIet kan nås via disse handlingene til CKANs action-API." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Opprett" @@ -2509,7 +2424,7 @@ msgstr "Velg" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2542,8 +2457,6 @@ msgstr "Gruppeskjema" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Bekreft sletting" @@ -2561,7 +2474,7 @@ msgstr "Er du sikker på at du vil slette medlem - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2706,14 +2619,12 @@ msgstr "Er du sikker på at du vil slette dette medlemmet?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Slett" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Lagre" @@ -2801,7 +2712,6 @@ msgstr "min-gruppe" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Beskrivelse" @@ -2862,7 +2772,7 @@ msgstr "Sammenlign" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2956,44 +2866,36 @@ msgstr "" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Populære stikkord" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" msgstr "{0} statistikker" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "datasett" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "datasett" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organisasjon" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organisasjoner" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "gruppe" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "grupper" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "relatert materiale" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "relatert materiale" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3011,7 +2913,6 @@ msgid "Custom" msgstr "Tilpasset" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Skjemaet inneholder ugyldig informasjon:" @@ -3024,7 +2925,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL for bilde" @@ -3069,7 +2969,7 @@ msgstr "Utkast" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3103,6 +3003,20 @@ msgstr "Søk i organisasjoner..." msgid "There are currently no organizations for this site" msgstr "Det er for tiden ingen organisasjoner for dette nettstedet" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Brukernavn" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "E-post" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Oppdater medlem" @@ -3237,7 +3151,6 @@ msgid "Preview" msgstr "Forhåndsvisning" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Oppdater" @@ -3296,7 +3209,7 @@ msgstr "" msgid "Add" msgstr "Legg til" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3328,28 +3241,32 @@ msgstr "Feil ved opplasting:" msgid "Error:" msgstr "Feil:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Status" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Sist endret" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Aldri" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Last opp logg" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Detaljer" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Slutt på logg" @@ -3453,7 +3370,7 @@ msgid "unknown" msgstr "ukjent" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Opprettet" @@ -3489,6 +3406,10 @@ msgid "" "add some?

" msgstr "

Dette datasettet har ingen data, hva med å legge til noen?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API-dokumenter" @@ -3545,7 +3466,7 @@ msgid "Version" msgstr "Versjon" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Status" @@ -3560,7 +3481,6 @@ msgstr "Data-API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Tittel" @@ -3580,30 +3500,30 @@ msgstr "f.eks. noen nyttige notater om dataene" msgid "eg. economy, mental health, government" msgstr "f.eks. økonomi, helse, myndigheter" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Definisjoner av lisenser og tilleggsinformasjon kan bil funnet på opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organisasjon" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Ingen organisasjon" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Synlighet" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Offentlig" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Aktiv" @@ -3730,7 +3650,7 @@ msgstr "Utforsk" msgid "More information" msgstr "Tilleggsinformasjon" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Inkluder (embed)" @@ -3750,11 +3670,11 @@ msgstr "" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Bredde" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Høyde" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" @@ -3816,139 +3736,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Relatert skjema" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Hva er relatert informasjon?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Relaterte medier er en app, artikkel, visualisering eller ide relatert til dette datasettet.

For eksempel en spesiallaget visualisering eller grafikk, an app som bruker alle eller deler av dataene, eller en nyhetssak som refererer til dette datasettet.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Er du sikker på at du vil slette beslektet element - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Apper & ideer" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Viser %(first)s - %(last)s element av i alt %(item_count)s relaterte elementer

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s relaterte elementer funnet

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Ingen apper har blitt sendt inn ennå." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Hva er applikasjoner?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Dette er applikasjoner som bruker datasettene, og ideer til bruksområder for datasettene." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filterresultater" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtrer etter type" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Alle" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Sorter etter" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Standard" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Bare vis framhevede elementer" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Bruk" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Rediger relatert materiale" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Rediger relatert" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Rediger relatert materiale" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Opprett relatert materiale" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Opprett relatert" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Opprett relatert materiale" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Mitt relaterte materiale" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Litt informasjon om materialet" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Type" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Er du sikker på at du vil slette dette relaterte materialet?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Gå til {related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "Endringer" @@ -4036,7 +3823,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Det er ingen {facet_type} som passer med dette søket" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Hjem" @@ -4045,7 +3831,7 @@ msgid "Language" msgstr "Språk" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4077,21 +3863,25 @@ msgstr "Ingen apper, ideer, nyheter eller bilder er satt som relatert til dette msgid "Add Item" msgstr "Legg til element" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Send inn" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Sorter etter" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filterresultater" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Prøv et annet søk.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4166,7 +3956,7 @@ msgid "Subscribe" msgstr "Abonner" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4185,10 +3975,6 @@ msgstr "Endringer" msgid "Search Tags" msgstr "Søk i stikkord" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Kontrollpanel" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Nyhetsstrøm" @@ -4252,36 +4038,27 @@ msgstr "I profilen kan du fortelle andre CKAN-brukere om hvem du er og hva du gj msgid "Change details" msgstr "Endre detaljer" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Brukernavn" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Fullt navn" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "f.eks. Kari Nordmann" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "f.eks. kari@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Litt informasjon om deg selv." -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Abonner på e-postvarsling" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Endre passord" @@ -4514,15 +4291,15 @@ msgstr "Ikke lastet opp ennå" msgid "DataStore resource not found" msgstr "Fant ikke DataStore-ressurs" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Fant ikke ressursen \"{0}\"" @@ -4530,6 +4307,14 @@ msgstr "Fant ikke ressursen \"{0}\"" msgid "User {0} not authorized to update resource {1}" msgstr "Brukeren {0} har ikke tillatelse til å oppdatere ressursen {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4556,6 +4341,10 @@ msgstr "Landkode" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4573,64 +4362,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4690,7 +4439,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Totalt antall datasett" @@ -4718,33 +4466,27 @@ msgstr "Nye datasett" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Best vurderte datasett" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Gjennomsnittlig vurdering" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Antall vurderinger" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Ingen vurderinger" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Oftest redigerte datasett" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Antall endringer" @@ -4754,12 +4496,10 @@ msgstr "Ingen redigerte datasett" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Største grupper" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Antall datasett" @@ -4769,7 +4509,6 @@ msgstr "Ingen grupper" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Mest brukte stikkord" @@ -4784,8 +4523,8 @@ msgstr "Antall datasett" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Brukere med flest datasett" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4795,42 +4534,16 @@ msgstr "Statistikkmeny" msgid "Total Number of Datasets" msgstr "Totalt antall datasett" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistikk" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Endringer i datasett per uke" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Brukerne med fleste datasett" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Side sist oppdatert:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Leaderboard - Stats" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Dataset Leaderboard" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Velg en egenskap ved datasettet og se hvilke kategorier som har flest datasett. F.eks. stikkord, gruppe, lisens, land." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Velg område" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/pl/LC_MESSAGES/ckan.mo b/ckan/i18n/pl/LC_MESSAGES/ckan.mo index 5fdccbe68a9..4864987e2ce 100644 Binary files a/ckan/i18n/pl/LC_MESSAGES/ckan.mo and b/ckan/i18n/pl/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/pl/LC_MESSAGES/ckan.po b/ckan/i18n/pl/LC_MESSAGES/ckan.po index 574a702c7e1..e0255a43a4d 100644 --- a/ckan/i18n/pl/LC_MESSAGES/ckan.po +++ b/ckan/i18n/pl/LC_MESSAGES/ckan.po @@ -10,252 +10,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:23+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Polish (http://www.transifex.com/projects/p/ckan/language/pl/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:20+0000\n" +"Last-Translator: dread \n" +"Language-Team: Polish (http://www.transifex.com/okfn/ckan/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Funkcja autoryzjacji nie została znaleziona: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Edytor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Członek" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Aby zarządzać trzeba mieć uprawnienia administratora" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Tytuł strony" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Styl" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "O serwisie" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Tekst na stronie \"O nas\"" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Tekst na stronie głównej" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Własny CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Strona główna" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Nie można unicestwić pakietu %s ponieważ wersja %s posiada pakiety, które nie zostały usunięte %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Wystąpił problem przy usuwaniu wersji %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Usuwanie zakończone" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Akacja nie jest zaimplementowana." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Brak autoryzacji, aby zobaczyć tę stronę" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Odmowa dostępu" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Nie znaleziono" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Nieprawidłowe żądanie" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Nieznana nazwa akcji:%s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Błąd JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Błędne żądanie: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Nie można wyświetlić obiektów typu: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Nie można wyświetlić obiektu typu: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Nie można utworzyć obiektu typu: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Nie można dodać pakiet do indeksu wyszukiwania" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Nie można zaktualizować obiektu typu: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Nie można zaktualizować indeks wyszukiwania" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Nie można usunąć obiektu typu: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Nie określono wersji" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Brak wersji o identyfikatorze: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Nie można odczytać parametrów: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Nieprawidłowa opcja wyszukiwania: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Nieznany rejestr: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Parametry żądania muszą mieć postać tablicy asocjacyjnej w formacie json." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Grupa nie została znaleziona" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Brak autoryzacji by wyświetlić grupę %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -266,23 +266,23 @@ msgstr "Brak autoryzacji by wyświetlić grupę %s" msgid "Organizations" msgstr "" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupy" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -290,394 +290,303 @@ msgstr "Grupy" msgid "Tags" msgstr "Tagi" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Brak autoryzacji by utworzyć grupę" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Użytkownik %r nie posiada autoryzacji by edytować %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Błąd integralności" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Użytkownik %r nie posiada autoryzacji by edytować autoryzacje %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Zaznacz dwie wersje aby móc dokonać porównania." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Użytkownik %r nie posiada autoryzacji do edycji %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Histora wersji grupy CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Ostanie zmiany w grupie CKAN:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Wiadomość w logu:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Strona w tej chwili nie działa. Baza danych nie została zainicjowana." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Prosimy o zaktualizowanie profilu i dodanie adresu e-mail." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s używa Twojego adresu e-mail jeśli chcesz zrestartować hasło." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Prosimy o zaktualizowanie profilu i dodanie imienia oraz nazwiska." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Zbiór danych nie został znaleziony" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Brak autoryzacji by wyświetlić pakiet %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Nieprawidłowy format wersji: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Historia zmian zbioru danych CKAN." -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Ostanie zmiany w zbiorze danych CKAN: " -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Brak autoryzacji by utowrzyć pakiet" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Zasób nie został znaleziony" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Błąd" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Nie można dodać pakiet do indeksu wyszukiwania." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Nie można uaktualnić indeksu wyszukiwania." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 +#, python-format +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Brak autoryzacji do odczytania zasobu %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Historia wersji repozytorium CKAN" @@ -703,10 +612,10 @@ msgstr "Inny" msgid "Tag not found" msgstr "Tag nie został znaleziony" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Nie znaleziono użytkownika" @@ -726,13 +635,13 @@ msgstr "" msgid "No user specified" msgstr "Nie określono użytkownika" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Brak autoryzacji by zmodyfikować użytkownika %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil zaktualizowany" @@ -756,75 +665,87 @@ msgstr "" msgid "Unauthorized to edit a user." msgstr "" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Użytkownik %s nie posiada autoryzacji do modyfikacji %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" odpowiada wielu żytkownikom" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Brak użytkownika: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Kod resetujący powinien znajdować się w Twojej skrzyce e-mail. Sprawdź ją." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Nie można wysłać linka resetującego: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Błędy klucz resetujący. Spróbuj ponownie." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Twoje hasło zostało zresetowane." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Twoje hasło musi posiadać co najmniej 4 znaki." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Wprowadzone hasła różnią się." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "" @@ -946,7 +867,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -954,7 +875,7 @@ msgid "View" msgstr "Przeglądanie" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" msgstr[1] "" @@ -1008,141 +929,141 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1174,7 +1095,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1199,7 +1120,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Brakująca wartość" @@ -1212,7 +1133,7 @@ msgstr "" msgid "Please enter an integer value" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1222,11 +1143,11 @@ msgstr "" msgid "Resources" msgstr "Zasoby" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Niepoprawne zasoby pakietu" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Dodatkowe informacje" @@ -1236,25 +1157,22 @@ msgstr "Dodatkowe informacje" msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Użytkownik" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Zbiór danych" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grupa" @@ -1266,378 +1184,369 @@ msgstr "" msgid "A organization must be supplied" msgstr "" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Niepoprawna liczba całkowita" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Nieprawidłowy format danych" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Nie można umieszczać linków w treści logu." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Zasób" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Typ aktywności" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Nazwa może zawierać maksymalnie %i znaków" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Ten URL jest już używany." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Nazwa \"%s\" jest krótsza niż wymagane minimum %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Nazwa \"%s\" jest dłuższa niż dopuszczalne maksimum %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Wersja może zawierać maksymalnie %i znaków" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Zduplikowany klucz \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Grupa o tej nazwie już się występuje w bazie danych" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Tag \"%s\" jest krótszy od wymagego minimum %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Tag \"%s\" jest dłuższy niż wynosi maksium: %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Tag \"%s\" musi zawierać znaki alfanumeryczne oraz symbole:-_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Tag \"%s\" nie może zawierać wielkich liter" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Ten login nie jest dostępny." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Proszę wprowadzić oba hasła" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Hasło musi zawierać co najmniej 4 znaki" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Wprowadzone hasła nie pokrywają się" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Modyfikacja została zablokowana, ponieważ wygląda na spam. Prosimy o powstrzymanie się od używanai linków w opisie." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Nazwa musi posiadać co najmniej %s znaków" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Stwórz obiekt %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Stwórz relację pomiędzy pakietami: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Musisz określić identyfikator pakietu lub jego nazwę (parametr \"pakiet\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Musisz wprowadzić ocenę (parametr \"ocena\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Ocena musi być liczbą całkowitą." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Ocena musi być między %i i %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Usuń pakiet %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Usuń %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Zasób nie został znaleziony." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "nieznany użytkownik:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Pakiet nie został znaleziony." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Zaktualizuj obiekt %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Zaktualizuj relację między pakietami: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "Nie znaleziono stanu zadania." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "" @@ -1668,7 +1577,7 @@ msgstr "" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Nie znaleziono pakietu dla tego zasobu, nie można sprawdzić autoryzacji." @@ -1678,94 +1587,98 @@ msgstr "Nie znaleziono pakietu dla tego zasobu, nie można sprawdzić autoryzacj msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Użytkownik %s nie jest upoważniony do edycji tych pakietów" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Użytkownik %s nie jest upoważniony do tworzenia grup" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Grupa nie została znaleziona." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Poprawny klucz API wymagany do utworzenia pakietu." -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Poprawny klucz API wymagany do utworzenia grupy." -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Użtkownik %s nie jest upoważniony do edycji grupy %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Użytkownik %s nie jest upoważniony do usunięcia relacji %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Użytkownik %s nie jest upoważniony do usunięcia grupy %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Użytkownik %s nie jest upoważniony by usunąć task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1786,7 +1699,7 @@ msgstr "Użytkownik %s nie jest upoważniony by odczytać zasób %s" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1864,63 +1777,63 @@ msgstr "Poprawny klucz API wymagany do edycji pakietu" msgid "Valid API key needed to edit a group" msgstr "Poprawny klucz API wymagany do edycji grupy" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "" @@ -2027,8 +1940,6 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Anuluj" @@ -2053,12 +1964,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "" @@ -2131,7 +2043,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2145,7 +2056,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Edycja" @@ -2184,11 +2094,11 @@ msgstr "" msgid "Sysadmin settings" msgstr "" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" @@ -2196,23 +2106,31 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "Wyloguj się" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "Zarejestruj się" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2221,7 +2139,6 @@ msgstr "Zarejestruj się" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2231,15 +2148,13 @@ msgstr "Zarejestruj się" msgid "Datasets" msgstr "Zbiory danych" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "Szukaj" @@ -2275,24 +2190,24 @@ msgstr "" msgid "Trash" msgstr "Kosz" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2363,7 +2278,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "" @@ -2515,7 +2429,7 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2548,8 +2462,6 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "" @@ -2567,7 +2479,7 @@ msgstr "" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2712,14 +2624,12 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Usuń" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Zapisz" @@ -2807,7 +2717,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Opis" @@ -2869,7 +2778,7 @@ msgstr "" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2969,38 +2878,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "zbiory danych" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3018,7 +2919,6 @@ msgid "Custom" msgstr "" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Formularz posiada nieprawidłowe pola:" @@ -3031,7 +2931,6 @@ msgid "http://example.com/my-image.jpg" msgstr "" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "" @@ -3076,7 +2975,7 @@ msgstr "" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3110,6 +3009,20 @@ msgstr "" msgid "There are currently no organizations for this site" msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3244,7 +3157,6 @@ msgid "Preview" msgstr "Podgląd" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "" @@ -3303,7 +3215,7 @@ msgstr "" msgid "Add" msgstr "Dodaj" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3335,28 +3247,32 @@ msgstr "" msgid "Error:" msgstr "Błąd:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Ostatnia modyfikacja" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3460,7 +3376,7 @@ msgid "unknown" msgstr "" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "" @@ -3496,6 +3412,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Dokumentacja API" @@ -3552,7 +3472,7 @@ msgid "Version" msgstr "Wersja" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Stan" @@ -3567,7 +3487,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Tytuł" @@ -3587,30 +3506,30 @@ msgstr "" msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3737,7 +3656,7 @@ msgstr "" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "" @@ -3823,139 +3742,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -4043,7 +3829,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Strona startowa" @@ -4052,7 +3837,7 @@ msgid "Language" msgstr "" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4084,21 +3869,25 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4179,7 +3968,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4198,10 +3987,6 @@ msgstr "Edycje" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4265,36 +4050,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4527,15 +4303,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4543,6 +4319,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4569,6 +4353,10 @@ msgstr "" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4586,64 +4374,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4703,7 +4451,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Liczba zbiorów danych" @@ -4731,33 +4478,27 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Najlepiej ocenione zbiory danych" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Średnia ocena" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Liczba ocen" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Brak ocen" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Najczęściej edytowane zbiory danych" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Liczba edycji" @@ -4767,12 +4508,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Największe grupy" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Liczba zbiorów danych" @@ -4782,7 +4521,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Najczęstsze tagi" @@ -4797,7 +4535,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 @@ -4808,42 +4546,16 @@ msgstr "" msgid "Total Number of Datasets" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statystyka" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Liczba zmian zbioru danych na tydzień" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Użytkownicy posiadający największą liczbę zbiorów danych" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Data ostatniej edycji:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Klasyfikacja - statystyki" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Klasyfikacja zbiorów danych" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Wybierz cechę zbioru danych i sprawdź, które kategorie posiadają najwięcej zbiorów tego rodzaju. Możesz określić np. tags, groups, res_format, licence, country." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Wybierz obszar" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo b/ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo index 9a3b2efbfa6..cb80c066a6e 100644 Binary files a/ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo and b/ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po b/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po index 23a50372108..7603470f97d 100644 --- a/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po +++ b/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po @@ -3,260 +3,261 @@ # This file is distributed under the same license as the ckan project. # # Translators: +# Augusto Herrmann , 2015 # Christian Moryah Contiero Miranda , 2012,2014 # Gustavo Rocha Pereira de Souza , 2014 # Pablo Mendes <>, 2012 -# Yaso , 2013 +# Yaso , 2013 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:21+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/ckan/language/pt_BR/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-16 13:37+0000\n" +"Last-Translator: Augusto Herrmann \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/okfn/ckan/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Função de autorização não encontrada: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Administrador" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Editor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Membro" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "É necessário ser administrador do sistema para gerenciar" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Título do Site" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Estilo" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Lema do site" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" -msgstr "Logomarca da etiqueta do sítio" +msgstr "Logomarca do site" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Sobre" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Texto na página Sobre" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Texto Introdutório" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Texto na Home Page" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "CSS customizado" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "CSS customizável foi inserido no header da página" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Homepage" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Não foi possível expurgar o pacote %s pois a revisão associada %s inclui pacotes não excluídos %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problema ao expurgar a revisão %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Expurgação completa" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Ação não implementada." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Não autorizado a ver esta página" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Acesso negado" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Não encontrado" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Requisição incorreta" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Nome de ação desconhecido: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Erro JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Erro nos dados da requisição: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Não foi possível listar entidade deste tipo: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Não foi possível ler entidade deste tipo: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Não foi possível criar nova entidade deste tipo: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Não é possível adicionar pacote para índice de pesquisa" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Não foi possível atualizar entidade deste tipo: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Não é possível atualizar índice de pesquisa" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Não foi possível excluir entidade deste tipo: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Nenhuma revisão especificada" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Não há revisão com o id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Falta um termo de busca ('since_id=UUID' ou 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Não foi possível ler os parâmetros: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Opção de busca inválida: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Registro desconhecido: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Valor qjson mal formado: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Parâmetros de requisição devem estar na forma de um dicionário codificado em json." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Grupo não encontrado" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Organização não encontrada" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Tipo de grupo incorreto" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Não autorizado a ler o grupo %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -267,23 +268,23 @@ msgstr "Não autorizado a ler o grupo %s" msgid "Organizations" msgstr "Organizações" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupos" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -291,394 +292,303 @@ msgstr "Grupos" msgid "Tags" msgstr "Etiquetas" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formatos" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licenças" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Não autorizado a realizar atualização em lote" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Não autorizado a criar um grupo" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Usuário %r não autorizado a editar %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Erro de Integridade" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Usuário %r não autorizado a editar as autorizações %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Não autorizado a excluir o grupo %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "A organização foi excluída" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "O grupo foi excluído" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s foi excluído(a)." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Não autorizado a adicionar membro ao grupo %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Não autorizado a excluir membros do grupo %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Membro foi excluído do grupo" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Selecione duas revisões antes de fazer a comparação." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "O usuário %r não está autorizado a editar %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Histórico de Revisões de Grupos do CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Alterações recentes no Grupo CKAN:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Mensagem de log: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Não autorizado a ler o grupo {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Você está seguindo {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Você não está mais seguindo {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Não autorizado a visualizar os seguidores %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." -msgstr "Este sítio está desconectado no momento. Base de dados não inicializada." - -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Por favor atualize o seu perfil e adicione o seu endereço de e-mail e o seu nome completo. {site} usará o seu endereço de e-mail para o caso de você precisar reiniciar sua senha." +msgstr "Este site está fora do ar no momento. Base de dados não está inicializada." -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Por favor atualize o seu perfil e adicione o seu endereço de e-mail. " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "%s usa o seu endereço de e-mail se você precisar reinicializar a sua senha." +msgstr "%s usa o seu endereço de e-mail se você precisar redefinir a sua senha." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Por favor atualize o seu perfil e adicione o seu nome completo." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Parametro \"{parameter_name}\" não é do tipo inteiro" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Conjunto de dados não encontrado" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Não autorizado a ler o pacote %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Formato inválido de revisão: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Visualizando datasets {package_type} em formato {format} não suportado (arquivo de modelo {file} não encontrado)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Histórico de Revisões de Conjuntos de Dados do CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Alterações recentes a Conjuntos de Dados do CKAN: " -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Não autorizado a criar um pacote" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Não autorizado a editar esse recurso" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Recurso não encontrado" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Não autorizado a atualizar o conjunto de dados" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "O conjunto de dados {id} não pôde ser encontrado." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Você deve adicionar pelo menos um recurso" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Erro" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Não autorizado a criar recurso" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "Não autorizado a criar um recurso para este pacote" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Não é possível adicionar pacote para índice de pesquisa." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Não é possível atualizar índice de pesquisa." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "O conjunto de dados foi excluído." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Não autorizado a excluir o pacote %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "O conjunto de dados foi excluído." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "O recurso foi excluído." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Não autorizado a excluir o recurso %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Não autorizado a ler o conjunto de dados %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "Visão de recurso não encontrada" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Não autorizado a ler o recurso: %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Dados de recursos não encontrado" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Nenhum arquivo está disponível para baixar." -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Não autorizado a editar o recurso" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "Visualização não encontrada" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "Não autorizado a ver a Visualização %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "Tipo de Visualização não encontrado" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Dados para visão do recurso estão defeituosos" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Não autorizado a ler a visão do recurso %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "Visão do recurso não fornecida" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Não foi definida uma pré-visualização." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Mais visto" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Mais vistos" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Menos vistos" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Mais novo" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Mais velho" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "O item relacionado solicitado não foi encontrado" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Item relacionado não foi encontrado" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Não autorizado" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Pacote não foi encontrado." - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Item relacionado foi criado com sucesso" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Item relacionado foi atualizado com sucesso" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Item relacionado foi excluído." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Não autorizado a excluir item relacionado %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Aplicativo" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Ideia" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Artigo de Notícias" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Papel" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Postar" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualização" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Histórico de Revisão do Repositório CKAN" @@ -704,10 +614,10 @@ msgstr "Outro" msgid "Tag not found" msgstr "Etiqueta não encontrada" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Usuário não encontrado" @@ -727,13 +637,13 @@ msgstr "Você não possui autorização para deletar o usuário com id \"{user_i msgid "No user specified" msgstr "Nenhum usuário especificado" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Não autorizado a editar o usuário %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Perfil atualizado" @@ -757,75 +667,87 @@ msgstr "O usuário \"%s\" foi registrado, porém você ainda está identificado msgid "Unauthorized to edit a user." msgstr "Você não possui autorização para editar um usuário." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Usuário %s não está autorizado a editar %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "A senha digitada está incorreta" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Senha Antiga" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "Senha incorreta" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Entrada falhou. Nome de usuário ou senha incorretos." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Você não possui autorização para solicitar redefinição de senha." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" coincide com vários usuários" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Não existe usuário: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Por favor verifique sua caixa de entrada para um código de redefinição." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Não foi possível enviar link para redefinir: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." -msgstr "Não autorizado a reiniciar senha." +msgstr "Não autorizado a redefinir senha." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Chave de redefinição inválida. Por favor, tente novamente." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Sua senha foi redefinida." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Sua senha deve conter 4 ou mais caracteres." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "As senhas que você forneceu são diferentes." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Você deve informar uma senha" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Item de seguimento não encontrado" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} não foi encontrado" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Não autorizado a ler {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Tudo" @@ -835,7 +757,7 @@ msgstr "Faltando valor" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Redirecionar a um site externo não é permitido." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" @@ -947,7 +869,7 @@ msgstr "{actor} adicionou o {related_type} {related_item} ao conjunto de dados { msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} adicionou o {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -955,10 +877,10 @@ msgid "View" msgstr "Ver" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{n} nova atividade de {site_title}" -msgstr[1] "{n} novas atividades de {site_title}" +msgstr[0] "{n} nova atividade em {site_title}" +msgstr[1] "{n} novas atividades em {site_title}" #: ckan/lib/formatters.py:17 msgid "January" @@ -1008,135 +930,135 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Agora há pouco" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} minuto atrás" msgstr[1] "{mins} minutos atrás" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} hora atrás" msgstr[1] "{hours} horas atrás" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} dia atrás" msgstr[1] "{days} dias atrás" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "há {months} mês" msgstr[1] "há {months} meses" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "há mais de {years} ano" msgstr[1] "há mais de {years} anos" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{day} de {month} de {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{day} de {month} de {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day}/{month}/{year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Atualize o seu avatar em gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Desconhecido" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Recurso sem nome" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Criado um novo conjunto de dados." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Editados os recursos." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Editadas as configurações." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} visualização" msgstr[1] "{number} visualizações" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} visualização recente" @@ -1163,21 +1085,21 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Você solicitou a redefinição de sua senha em {site_title}.\n\nPor favor clique o seguinte link para confirmar a solicitação:\n\n {reset_link}\n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Você foi convidado para {site_title}. Um usuário já foi criado para você com o login {user_name}. Você pode alterá-lo mais tarde.\n\nPara aceitar este convite, por favor redefina sua senha em:\n\n {reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 msgid "Reset your password" -msgstr "Redefina sua senha" +msgstr "Redefinir sua senha" #: ckan/lib/mailer.py:151 msgid "Invite for {site_title}" @@ -1192,7 +1114,7 @@ msgstr "Convidar para {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Faltando valor" @@ -1205,7 +1127,7 @@ msgstr "O campo de entrada %(name)s não era esperado." msgid "Please enter an integer value" msgstr "Por favor entre com um valor inteiro" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1215,11 +1137,11 @@ msgstr "Por favor entre com um valor inteiro" msgid "Resources" msgstr "Recursos" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Recurso(s) do pacote inválido(s)" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Extras" @@ -1229,25 +1151,22 @@ msgstr "Extras" msgid "Tag vocabulary \"%s\" does not exist" msgstr "O vocabulário de etiquetas \"%s\" não existe" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Usuário" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Conjunto de dados" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grupo" @@ -1259,378 +1178,369 @@ msgstr "Não foi possível interpretar como JSON válido" msgid "A organization must be supplied" msgstr "É necessário informar uma organização" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Você não pode remover um conjunto de dados de uma organização existente." - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "A organização não existe" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Você não pode adicionar um conjunto de dados a essa organização" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Inteiro inválido" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Precisa ser um número natural" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Precisa ser um inteiro positivo" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Formatação de data incorreta" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Links não são permitidos em log_message." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "Id de conjunto de dados já existe" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Recurso" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Relacionado" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Esse nome ou ID de grupo não existe." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Tipo de atividade" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Nomes devem ser strings" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Esse nome não pode ser usado" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Precisa ter pelo menos %s caracteres" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Nome tem que ter um máximo de %i caracteres" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "Precisa conter apenas caracteres alfanuméricos (ascii) e os seguintes símbolos: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Essa URL já está em uso." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "O comprimento do nome \"%s\" é menor que o mínimo %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "O comprimento do nome \"%s\" é maior que o máximo %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Versão tem que ter um máximo de %i caracteres" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Chave duplicada \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Nome do grupo já existe na base de dados" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Comprimento da etiqueta \"%s\" é menor que o mínimo %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "O comprimento da etiqueta \"%s\" é maior que o máximo %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "A etiqueta \"%s\" deve conter caracteres alfanuméricos ou símbolos: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "A etiqueta \"%s\" não pode ter caixa alta" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Nomes de usuário devem ser strings" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Esse nome de login não está disponível." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Por favor forneça as duas senhas" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Senhas devem ser strings" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Sua senha deve conter no mínimo 4 caracteres" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "As senhas que você digitou não são iguais" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Editar não é permitido, já que a descrição parece spam. Por favor, evite links na sua descrição." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "O nome deve conter pelo menos %s caracteres" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Esse nome de vocabulário já está sendo utilizado." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Não é possível alterar o valor da chave de %s para %s. Essa chave é somente para leitura." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Vocabulário de etiquetas não encontrado." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "A etiqueta %s não pertence ao vocabulário %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Nenhum nome de etiqueta" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "A etiqueta %s já pertence ao vocabulário %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Por favor forneça uma URL válida" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "Esse papel não existe" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Conjuntos de dados sem uma organização não podem ser privados." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Não é uma lista" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Não é uma string" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Esse pai criaria um ciclo na hierarquia" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "\"filter_fields\" e \"filter_values\" devem ter o mesmo comprimento" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +msgstr "\"filter_fields\" é obrigatório quando \"filter_values\" estiver preenchido" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "\"filter_values\" é obrigatório quando \"filter_fields\" está preenchido" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "Há um campo de esquema com o mesmo nome" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "API REST: Criar objeto %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "API REST: Criar relacionamento de pacotes: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "API REST: Criar objeto membro %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Tentando criar uma organização como um grupo" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Você deve informar um id ou nome de pacote (parâmetro \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Você deve informar uma avaliação (parâmetro \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Avaliação deve ser um valor inteiro." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Avaliação deve ser entre %i e %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Você precisa estar autenticado para seguir usuários" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Você não pode seguir você mesmo" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Você já está seguindo {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Você precisa estar autenticado para seguir um conjunto de dados." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "O usuário {username} não existe." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Você precisa estar autenticado para seguir um grupo." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "API REST: Excluir Pacote: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "API REST: Excluir %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "API REST: Excluir membro: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id não está nos dados" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Não foi possível encontrar o vocabulário \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Não foi possível encontrar a etiqueta \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Você precisa estar autenticado para deixar de seguir algo" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Você não está seguindo {0}" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Recurso não foi encontrado." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Não especifique se estiver usando o parâmetro \"query\"." -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Precisa ser par(es) :" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Campo \"{field}\" não é reconhecido em resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "usuário desconhecido:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "O item não foi encontrado." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Pacote não foi encontrado." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "API REST: Atualiza o objeto %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "API REST: Atualizar relacionamento entre pacotes: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus não foi encontrado." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organização não foi encontrada." @@ -1659,9 +1569,9 @@ msgstr "Você precisa estar autenticado para adicionar um item relacionado" #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "Nenhum id de conjunto de dados foi fornecido, não é possível verificar autorização." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Nenhum pacote encontrado para este recurso, não foi possível verificar a autenticação." @@ -1669,96 +1579,100 @@ msgstr "Nenhum pacote encontrado para este recurso, não foi possível verificar #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "Usuário(a) %s não está autorizado(a) a criar recursos no conjunto de dados %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Usuário %s não autorizado a editar esses pacotes" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Usuário %s não autorizado a criar grupos" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Usuário %s não está autorizado a criar organizações" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "O usuário {user} não está autorizado a criar usuários pela API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Não está autorizado a criar usuários" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Grupo não foi encontrado." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "É necessário uma chave válida da API para criar um pacote" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "É necessário uma chave válida da API para criar um grupo" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Usuário %s não está autorizado a adicionar membros" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Usuário %s não autorizado a editar o grupo %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Usuário %s não está autorizado a excluir o recurso %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "Visão de recurso não encontrada, não é possível verificar a autenticação." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Somente o dono pode apagar um item relacionado" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Usuário %s não autorizado a excluir o relacionamento %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Usuário %s não está autorizado a excluir grupos" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Usuário %s não autorizado a excluir o grupo %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Usuário %s não está autorizado a excluir organizações" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Usuário %s não está autorizado a excluir a organização %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Usuário %s não está autorizado a excluir " +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Não autorizado" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1777,9 +1691,9 @@ msgstr "Usuário %s não está autorizado a ler o recurso %s" #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "Usuário(a) %s não está autorizado(a) a ler o grupo %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Você precisa estar autenticado para acessar o seu painel de controle. " @@ -1832,7 +1746,7 @@ msgstr "Usuário %s não autorizado a editar o usuário %s" #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "Usuário(a) {0} não autorizado(a) a atualizar o(a) usuário(a) {1}" #: ckan/logic/auth/update.py:236 #, python-format @@ -1857,63 +1771,63 @@ msgstr "É necessário uma chave válida da API para editar um pacote" msgid "Valid API key needed to edit a group" msgstr "É necessário uma chave válida da API para editar um grupo" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "Licença não especificada" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Licença e Dedicação ao Domínio Público do Open Data Commons (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Licença Aberta para Bases de Dados (ODbL) do Open Data Commons" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Licença de Atribuição do Open Data Commons" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Atribuição" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Atribuição e Compartilhamento pela mesma Licença" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "Licença GNU para Documentação Livre" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Outra (Aberta)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Outra (Domínio Público)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Outra (Atribuição)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "Open Government Licence do Reino Unido (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Não-Comercial (Qualquer)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Outra (Não-Comercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Outra (Não Aberta)" @@ -2020,8 +1934,6 @@ msgstr "Confirme" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Cancelar" @@ -2046,12 +1958,13 @@ msgstr "Link" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Remover" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Imagem" @@ -2117,14 +2030,13 @@ msgstr "Você está enviando um arquivo. Tem certeza de que quer navegar para ou #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Reordenar visão de recurso" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2138,7 +2050,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Editar" @@ -2177,34 +2088,42 @@ msgstr "Impulsionado por Site Title: This is the title of this CKAN instance It " @@ -2307,11 +2223,11 @@ msgstr "

Título do sítio: Este é o título dessa instânc #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 msgid "Confirm Reset" -msgstr "Confirma reinicialização" +msgstr "Confirmar reinicialização" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Administrar o CKAN" #: ckan/templates/admin/index.html:20 #, python-format @@ -2319,15 +2235,15 @@ msgid "" "

As a sysadmin user you have full control over this CKAN instance. " "Proceed with care!

For guidance on using sysadmin features, see the " "CKAN sysadmin guide

" -msgstr "" +msgstr "

Como um(a) usuário(a) administrador(a) do sistema você tem total controle sobre esta instância do CKAN. Proceda com cuidado!

Para aconselhamento sobre o uso das funcionalidades de administrador do sistema, vejao guia do administrador do CKAN.

" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Expurgar" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "

Expurgar para sempre e irreversivelmente conjuntos de dados excluídos.

" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" @@ -2342,7 +2258,7 @@ msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +msgstr " Maiores informações no documentação principal da API de dados do CKAN Data API e do DataStore.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" @@ -2355,7 +2271,6 @@ msgid "" msgstr "A Data API pode ser acessada pelas seguintes ações da CKAN action API" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Criar" @@ -2507,7 +2422,7 @@ msgstr "Selecionar" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2540,8 +2455,6 @@ msgstr "Formulário Grupo" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Confirmar apagar" @@ -2559,7 +2472,7 @@ msgstr "Você tem certeza de que deseja apagar o membro - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2704,14 +2617,12 @@ msgstr "Você tem certeza de que deseja apagar este usuário?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Excluir" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Salvar" @@ -2799,7 +2710,6 @@ msgstr "meu-grupo" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Descrição" @@ -2860,7 +2770,7 @@ msgstr "Comparar" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2946,59 +2856,51 @@ msgstr "Esta é uma seção de destaque" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "Ex.: meio ambiente" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "Pesquisar dados" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Etiquetas mais comuns" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" msgstr "{0} estatísticas" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "conjuntos de dados" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "conjuntos de dados" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organização" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organizações" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "grupo" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "grupos" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "item relacionado" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "itens relacionados" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" "You can use Markdown formatting here" -msgstr "" +msgstr "Você pode usar formatação Markdown aqui" #: ckan/templates/macros/form.html:265 msgid "This field is required" @@ -3009,7 +2911,6 @@ msgid "Custom" msgstr "Customizar" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "O formulário contém entradas inválidas:" @@ -3022,7 +2923,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://exemplo.com.br/minha-imagem.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL da imagem" @@ -3067,7 +2967,7 @@ msgstr "Rascunho" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3101,6 +3001,20 @@ msgstr "Pesquisar organizações..." msgid "There are currently no organizations for this site" msgstr "Atualmente não há organizações neste sítio" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nome de usuário" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Endereço de e-mail" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Atualizar Membro" @@ -3137,7 +3051,7 @@ msgstr "Adicionar Conjunto de Dados" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "Conjuntos de dados na organização: {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 @@ -3152,7 +3066,7 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "" +msgstr "

Organizações funcionam como órgãos de publicação para conjuntos de dados (por exemplo, o Ministério da Saúde). Isso significa que conjuntos de dados podem ser publicados por e pertencer a um órgão em vez de um usuário individual.

Dentro de organizações, os administradores podem atribuir papeis e autorizar seus membros, dando a usuários individuais o direito de publicar conjuntos de dados daquela organização específica (ex.: Instituto Brasileiro de Geografia e Estatística).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" @@ -3225,7 +3139,7 @@ msgstr "Editar metadados" #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Editar visão" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3235,7 +3149,6 @@ msgid "Preview" msgstr "Pré-visualização" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Atualiza" @@ -3278,7 +3191,7 @@ msgstr "Novo recurso" #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Adicionar visão" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3287,14 +3200,14 @@ msgid "" "href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-" "structured-data-the-data-explorer' target='_blank'>Data Explorer " "documentation. " -msgstr "" +msgstr " As visões do Data Explorer podem ser lentas e instáveis se a extensão DataStore não estiver habilitada. Para mais informações, por favor veja a documentação do Data Explorer. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" msgstr "Adicionar" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3326,28 +3239,32 @@ msgstr "Erro no envio:" msgid "Error:" msgstr "Erro:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "Rastreamento do erro:" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Estado" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Ultima atualização" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Nunca" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Enviar Log" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Detalhes" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Fim do log" @@ -3370,7 +3287,7 @@ msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Visões" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" @@ -3402,30 +3319,30 @@ msgstr "Fonte: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "Não há visões criadas para este recurso ainda." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "Não está vendo as visões que esperava?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +msgstr "Seguem alguns possíveis motivos para que você não veja as visões esperadas:" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "" +msgstr "Nenhuma visão que seja adequada para este recurso foi criada" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +msgstr "Os administradores do site podem não ter habilitado os plugins de visões relevantes" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "" +msgstr "Se uma visão exigir o DataStore, o plugin do DataStore pode não estar habilitado, os dados podem ainda não ter sido carregados no DataStore, ou o DataStore pode ainda não ter terminado de processar os dados" #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" @@ -3451,7 +3368,7 @@ msgid "unknown" msgstr "Desconhecido" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Criado" @@ -3469,11 +3386,11 @@ msgstr "Licença" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "Nova visão" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "O recurso não tem visões" #: ckan/templates/package/resources.html:8 msgid "Add new resource" @@ -3487,6 +3404,10 @@ msgid "" "add some?

" msgstr "

Esse conjunto de dados não possui dados, por que não adicionar alguns?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Documentação da API" @@ -3511,15 +3432,15 @@ msgstr " Você também pode ter acesso a esses registros usando a %(api_link)s ( #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "Todas as visões" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "Ver visão" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "Ver pré-visualização" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 @@ -3543,14 +3464,14 @@ msgid "Version" msgstr "Versão" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Estado" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "Última Atualização" #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" @@ -3558,7 +3479,6 @@ msgstr "API de dados" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Título" @@ -3578,30 +3498,30 @@ msgstr "ex.: Algumas anotações úteis sobre os dados" msgid "eg. economy, mental health, government" msgstr "ex.: economia, saúde mental, governo" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr " Definições de licenças e informações adicionais podem ser encontradas em opendefinition.org " -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organização" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Sem organização" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Visibilidade" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Pública" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Ativo" @@ -3612,7 +3532,7 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "" +msgstr "A licença de dados que você escolher acima aplica-se somente ao conteúdo de quaisquer recursos de arquivos que você adicionar a este conjunto de dados. Ao enviar este formulário, você concorda em lançar os valores de metadados que você incluir sob a licença Open Database License." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -3672,7 +3592,7 @@ msgstr "ex.: CSV, XML ou JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" +msgstr "Isto será estimado automaticamente. Deixe em branco se quiser" #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" @@ -3728,31 +3648,31 @@ msgstr "Explorar" msgid "More information" msgstr "Mais informações" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Embutir" #: ckan/templates/package/snippets/resource_view.html:24 msgid "This resource view is not available at the moment." -msgstr "" +msgstr "Esta visão de recurso não está disponível no momento." #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "" +msgstr "Incorporar visão de recurso" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "" +msgstr "Você pode copiar e colar o código para embutir em um CMS ou software de blog que suporte HTML puro" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Largura" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Altura" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" @@ -3760,7 +3680,7 @@ msgstr "Código" #: ckan/templates/package/snippets/resource_views_list.html:8 msgid "Resource Preview" -msgstr "" +msgstr "Pré-visualização do Recurso" #: ckan/templates/package/snippets/resources_list.html:13 msgid "Data and Resources" @@ -3768,7 +3688,7 @@ msgstr "Dados e recursos" #: ckan/templates/package/snippets/resources_list.html:29 msgid "This dataset has no data" -msgstr "" +msgstr "Este conjunto de dados não tem dados" #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format @@ -3788,164 +3708,31 @@ msgstr "Adicionar dados" #: ckan/templates/package/snippets/view_form.html:8 msgid "eg. My View" -msgstr "" +msgstr "ex.: Minha Visão" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "" +msgstr "ex.: Informações sobre a minha visão" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "" +msgstr "Adicionar Filtro" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "Remover Filtro" #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" -msgstr "" +msgstr "Filtros" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "" +msgstr "O que é uma visão?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Formulário relacionado" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "O que são itens relacionados?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Mídia Relacionada é qualquer aplicação, artigo, visualização ou ideia relacionados a este conjunto de dados.

Por exemplo, poderia ser uma visualização personalizada, pictograma ou gráfico de barras, uma aplicação usando os dados no todo ou em parte ou mesmo uma notícia que referencia este conjunto de dados.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Você tem certeza de que deseja excluir o item relacionado - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Aplicativos & Ideias" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Mostrando os itens %(first)s - %(last)s dentre %(item_count)s itens relacionados encontrados

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s itens relacionados encontrados

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Ainda não há aplicativos enviados." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "O que são aplicativos?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Esses são aplicativos construídos com os conjuntos de dados bem como ideias de coisas que poderiam ser feitas com eles." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filtrar Resultados" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtrar por tipo" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Tudo" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Ordenar por" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Padrão" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Mostrar apenas itens em destaque" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Aplicar" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Editar item relacionado" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Editar Relacionado" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Editar Item Relacionado" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Criar um item relacionado" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Criar Relacionado" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Criar Item Relacionado" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Meu Item Relacionado" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://exemplo.com.br/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://exemplo.com.br/imagem.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Um pouco de informação sobre o item..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Tipo" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Você tem certeza de que deseja excluir este item relacionado?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Ir para {related_item_type}" +msgstr "Uma visão é uma representação dos dados contidos num recurso" #: ckan/templates/revision/diff.html:6 msgid "Differences" @@ -4027,14 +3814,13 @@ msgstr "Mostrar mais {facet_type}" #: ckan/templates/snippets/facet_list.html:83 msgid "Show Only Popular {facet_type}" -msgstr "Mostrar somente {facet_type} popular" +msgstr "Mostrar somente {facet_type} mais comuns" #: ckan/templates/snippets/facet_list.html:87 msgid "There are no {facet_type} that match this search" msgstr "Não há {facet_type} que correspondam a essa busca" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Início" @@ -4043,7 +3829,7 @@ msgid "Language" msgstr "Idioma" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4075,21 +3861,25 @@ msgstr "Nenhum aplicativo, ideia, notícia ou imagem foi relacionado a este conj msgid "Add Item" msgstr "Inserir item" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Enviar" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Ordenar por" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtrar Resultados" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Por favor tente uma nova pesquisa.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4164,7 +3954,7 @@ msgid "Subscribe" msgstr "Assinar" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4183,10 +3973,6 @@ msgstr "Edições" msgid "Search Tags" msgstr "Buscar Etiquetas" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Painel de Controle" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Feed de notícias" @@ -4250,36 +4036,27 @@ msgstr "Seu perfil permite que outros usuários do CKAN saibam quem você é o q msgid "Change details" msgstr "Mudar detalhes" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nome de usuário" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Nome completo" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "ex.: José da Silva" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "ex.: jose@exemplo.com.br" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Um pouco de informações sobre você" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Assine o recebimento de notificações por e-mail" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Mudar a senha" @@ -4301,11 +4078,11 @@ msgstr "Tem certeza que quer apagar este Usuário ?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "Você tem certeza de que deseja gerar uma nova chave para a API?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Gerar Nova Chave para API" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" @@ -4397,7 +4174,7 @@ msgstr "Crie conjuntos de dados, grupos e outras coisas interessantes" #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "nome de usuário" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" @@ -4410,11 +4187,11 @@ msgstr "Registar Conta" #: ckan/templates/user/perform_reset.html:4 #: ckan/templates/user/perform_reset.html:14 msgid "Reset Your Password" -msgstr "Reinicializar sua senha" +msgstr "Redefinir sua senha" #: ckan/templates/user/perform_reset.html:7 msgid "Password Reset" -msgstr "Solicitar uma reinicialização de senha" +msgstr "Redefinir Senha" #: ckan/templates/user/perform_reset.html:24 msgid "Update Password" @@ -4459,11 +4236,11 @@ msgstr "Chave da API" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Redefinir senha" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Solicitação reiniciada" #: ckan/templates/user/request_reset.html:34 msgid "" @@ -4512,15 +4289,15 @@ msgstr "Não inserido ainda" msgid "DataStore resource not found" msgstr "recurso DataStore não encontrado" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "Os dados são inválidos (por exemplo: um valor numérico está fora dos limites ou foi inserido num campo de texto)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Recurso \"{0}\" não foi encontrado." @@ -4528,13 +4305,21 @@ msgstr "Recurso \"{0}\" não foi encontrado." msgid "User {0} not authorized to update resource {1}" msgstr "Usuário {0} não está autorizado para atualizar o recurso {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conjuntos de dados por página" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configuração teste" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "Campo Personalizado Crescente" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "Campo Personalizado Decrescente" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 @@ -4552,7 +4337,11 @@ msgstr "Código do país" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" -msgstr "" +msgstr "texto personalizado de recurso" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Este é um texto não traduzido" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 @@ -4561,134 +4350,93 @@ msgstr "Este grupo está sem descrição" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "A ferramenta de pré-visualização de dados do CKAN tem muitas funcionalidades poderosas" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "Url da imagem" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +msgstr "ex.: http://exemplo.com/imagem.jpg (se estiver em branco usará a url do recurso)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" -msgstr "" +msgstr "Explorador de Dados" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "Tabela" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Gráfico" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" +msgstr "Mapa" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nConcede-se permissão, por meio desta, gratuitamente, a qualquer pessoa\nque obtenha uma cópia deste software e arquivos de documentação associados\n(o \"Software\"), para lidar com o Software sem quaisquer restrições, incluindo\nsem limitação os direitos de uso, cópia, modificação, mesclagem, publicação,\ndistribuição, sublicenciamento, e/ou venda de cópias do Software, e de permitir\npessoas para as quais o Software é fornecido de fazerem o mesmo, sujeitos às\nseguintes condições:\n\nA notificação de direitos autorais acima e esta notificação de permissão serão\nincluídas em todas as cópias ou porções substanciais do Software.\n\nO SOFTWARE É FORNECIDO \"COMO ESTÁ\", SEM QUALQUER TIPO DE GARANTIA,\nEXPRESSA OU IMPLÍCITA, INCLUINDO MAS NÃO SE LIMITANDO ÀS GARANTIAS DE\nCOMERCIALIZAÇÃO, ADRQUAÇÃO A UMA FINALIDADE EM PARTICULAR E\nNÃO VIOLAÇÃO. EM NENHUMA HIPÓTESE OS AUTORES OU DETENTORES DE\nDIREITOS AUTORAIS PODERÃO SER RESPONSABILIZADOS POR QUAISQUER\nALEGAÇÃO. DANOS OU OUTRAS RESPONSABILIDADES, SEJA POR UMA AÇÃO OU\nCONTRATO, AGRAVO OU NÃO, ORIGINÁRIAS, EM CONSEQUÊNCIA OU EM\nCONEXÃO COM O SOFTWARE OU O USO OU OUTROS NEGÓCIOS COM O SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Essa versão compilada do SlickGrid foi obtida com o compilador Google Closure⏎\nusando o seguinte comando:⏎\n⏎\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js⏎\n⏎\nHá outros dois arquivos necessários para o SlickGrid view funcionar corretamente:⏎\n⏎\n* jquery-ui-1.8.16.custom.min.js ⏎\n* jquery.event.drag-2.0.min.js⏎\n⏎\nEsses estão incluídos no source do Recline, mas não foram incluidos no arquivo construído⏎\npara tornar mais fácil o tratamento de problemas de compatibilidade.⏎\n⏎\nPor favor cheque a licença do SlickGrid, inclusa no arquivo MIT-LICENSE.txt.⏎\n⏎\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "erro ao carregar visualização" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "Row offset" -msgstr "" +msgstr "Deslocamento de linhas" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "ex.: 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Quantidade de linhas" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "ex.: 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Tipo de gráfico" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Grupo (Eixo 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Série (Eixo 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "Tipo de campo" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" -msgstr "" +msgstr "Campo de latitude" #: ckanext/reclineview/theme/templates/recline_map_form.html:8 msgid "Longitude field" -msgstr "" +msgstr "Campo de longitude" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "Campo GeoJSON" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" -msgstr "" +msgstr "Aproximar automaticamente de pontos de interesse" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "Marcadores de algomeração" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Número total de Conjuntos de Dados" @@ -4716,33 +4464,27 @@ msgstr "Novos conjuntos de dados" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Conjuntos de Dados mais bem avaliados" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Média de avaliação" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Número de avaliações" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Nenhuma avaliação" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Conjuntos de Dados Mais Editados" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Número de edições" @@ -4752,12 +4494,10 @@ msgstr "Sem conjuntos de dados editados" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Maiores Grupos" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Número de conjuntos de dados" @@ -4767,7 +4507,6 @@ msgstr "Sem grupos" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Principais Etiquetas" @@ -4782,8 +4521,8 @@ msgstr "Número de conjuntos de dados" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Usuários que possuem mais conjuntos de dados" +msgid "Users Creating Most Datasets" +msgstr "Usuários que Mais Criaram Conjuntos de Dados" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4793,49 +4532,23 @@ msgstr "Estatísticas" msgid "Total Number of Datasets" msgstr "Número total de Conjuntos de Dados" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Estatísticas" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Revisões de Conjuntos de Dados por semana" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Usuários que possuem mais conjuntos de dados" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Última atualização da página:" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Texto" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Quadro de recordistas - Estatísticas" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Quadro de Recordistas de Conjuntos de Dados" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Escolha um atributo de conjunto de dados e descubra quais categorias naquela área têm mais conjuntos de dados. Ex.: etiquetas, grupos, licença, formato de recurso, país." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Escolha uma área" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "Ocorreu um erro: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Website" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "Url de página Web" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "ex.: http://exemplo.com (se estiver em branco usará a url do recurso)" diff --git a/ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo index 8d48a763b5b..89c58a09d6b 100644 Binary files a/ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo and b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po index f9c7c9537a2..6e0f62fda93 100644 --- a/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po +++ b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po @@ -4,256 +4,258 @@ # # Translators: # alfalb_mansil, 2014 +# Fatima Pires , 2015 +# Jorge Rocha , 2015 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:20+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/ckan/language/pt_PT/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:23+0000\n" +"Last-Translator: dread \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/okfn/ckan/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Não foi encontrada a função 'Autorização': %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Administração" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Editor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Membro" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Precisa de ser o administrador do sistema para administrar" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" -msgstr "Título do Site" +msgstr "Título da Página" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Estilo" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" -msgstr "" +msgstr "Subtítulo da Página" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" -msgstr "" +msgstr "Logótipo da página" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Sobre" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" -msgstr "Sobre o texto da página" +msgstr "Texto da página Sobre" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" -msgstr "Texto da Introdução" +msgstr "Texto Introdutório" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Texto na página principal" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Personalizar CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" -msgstr "CSS personalizável inserida no cabeçalho da página" +msgstr "Personalizar CSS inserido no cabeçalho da página" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Página Principal" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Não é possível purgar o pacote %s como revisão %s associada inclui os pacotes %s não apagados" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problema ao purgar a revisão %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Purgar completo" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Ação não implementada." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Não está autorizado a ver esta página" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Acesso negado" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Não encontrado" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Pedido errado" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Nome da ação não conhecido: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Erro JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" -msgstr "" +msgstr "Pedido de dados errado: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" -msgstr "" +msgstr "Não é possível listar entidades do tipo: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" -msgstr "" +msgstr "Não é possível ler entidades do tipo: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" -msgstr "" +msgstr "Não é possível criar novas entidades do tipo: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" -msgstr "" +msgstr "Não é possível adicionar pacote de dados ao índice de pesquisa " -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" -msgstr "" +msgstr "Não é possível atualizar entidades do tipo: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" -msgstr "" +msgstr "Não é possível atualizar o índice de pesquisa" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" -msgstr "" +msgstr "Não é possível eliminar entidades do tipo: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" -msgstr "" +msgstr "Sem revisão especificada " -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" -msgstr "" +msgstr "Não existe revisão com id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" +msgstr "Falta o termo de pesquisa ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" -msgstr "" +msgstr "Não é possível ler os parâmetros: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" -msgstr "" +msgstr "Opção de pesquisa errada: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" -msgstr "" +msgstr "Registo desconhecido: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" -msgstr "" +msgstr "Valor qjson mal gerado: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." -msgstr "" - -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +msgstr "A solicitação de parâmetros ao dicionário deve ser na forma de código json." + +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Grupo não encontrado" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Organização não encontrada" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Tipo de grupo incorreto" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Não está autorizado a ler o grupo %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -264,430 +266,339 @@ msgstr "Não está autorizado a ler o grupo %s" msgid "Organizations" msgstr "Organizações" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupos" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 #: ckan/templates/tag/index.html:12 msgid "Tags" -msgstr "" +msgstr "Etiquetas" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formatos" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licenças" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" -msgstr "" +msgstr "Não está autorizado a realizar atualizações. " -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Não está autorizado a criar um grupo" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Utilizador %r não está autorizado a editar %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Erro de Integridade" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" -msgstr "" +msgstr "Utilizador %r não está autorizado a editar %s autorizações" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" -msgstr "" +msgstr "Não está autorizado a eliminar grupo %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "A organização foi apagada." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "O grupo foi apagado." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s foi eliminado." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Não está autorizado a adicionar o grupo %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Não está autorizado a apagar os membros do grupo %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "O membro do grupo foi apagado." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Selecionar duas revisões antes de efetuar a comparação." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" -msgstr "O utilizador %r não está autorizado a editar %r" +msgstr "Utilizador %r não está autorizado a editar %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" -msgstr "Hitórico Revisão Grupo CKAN" +msgstr "Histórico Revisão Grupo CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Alterações recentes ao grupo CKAN:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " -msgstr "" +msgstr "Mensagem de registo: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Não está autorizado a ler o grupo {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" -msgstr "" +msgstr "Começou a seguir {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" -msgstr "" +msgstr "Já não está a seguir {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" -msgstr "" +msgstr "Não está autorizado a visualizar os seguidores %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." -msgstr "" - -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" +msgstr "Esta página está, de momento, sem acesso à Internet. A base de dados não será iniciada." -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " -msgstr "" +msgstr "Por favor atualize o seu perfil e adicione o seu endereço de email." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "" - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" +msgstr "%s use o seu endereço de email se precisar de redefinir a sua palavra-passe." -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "O parâmetro \"{parameter_name}\" não é um íntegro" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +msgstr "O parâmetro \"{parameter_name}\" não é um inteiro" + +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" -msgstr "Não foi encontrada a base de dados" +msgstr "Conjunto de dados não encontrado" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" -msgstr "" +msgstr "Não é autorizado a ler o pacote %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" -msgstr "" +msgstr "Formato de revisão inválido: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." -msgstr "" +msgstr "Visualização de conjunto de dados {package_type} no formato {format} não é suportado (template {file} não encontrado)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" -msgstr "" +msgstr "Histórico de Revisões de Conjuntos de dados CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " -msgstr "" +msgstr "Alterações recentes ao conjunto de dados CKAN:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Não está autorizado a criar um pacote" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Não está autorizado a editar este recurso" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Recurso não encontrado" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" -msgstr "" +msgstr "Não está autorizado a atualizar conjuntos de dados" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." -msgstr "" +msgstr "O conjunto de dados {id} não foi possível de ser encontrado." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Deve adicionar pelo menos um recurso de dados" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Erro" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Não está autorizado a criar um recurso" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "Não está autorizado a criar um recursos para este pacote" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." -msgstr "" +msgstr "Não é possível adicionar pacote ao índice de pesquisa. " -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." -msgstr "" +msgstr "Não é possível atualizar o índice de pesquisa." + +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "O conjunto de dados foi eliminado. " -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" -msgstr "" - -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" +msgstr "Não está autorizado a eliminar o pacote %s" -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "O recurso foi apagado." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" -msgstr "" +msgstr "Não está autorizado a eliminar o recurso %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" -msgstr "" +msgstr "Não está autorizado a ler o conjunto de dados %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "Vista do recurso não encontrada" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" -msgstr "" +msgstr "Não está autorizado a ler o recurso %s " -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" -msgstr "Dados do recurso não ecnotrados" +msgstr "Dados do recurso não encontrados" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Nenhuma transferência disponível " -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Não está autorizado a editar o recurso" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "Vista não encontrada" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "Não está autorizado a visualizar a Vista %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "Tipo de Vista Não encontrada " -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Dados da vista do recurso errados" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Não está autorizado a ler a vista do recurso %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "Vista de recurso não fornecida" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Não foi definida nenhuma pré-visualização." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "A mais visualizada" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "A Mais Visualizada" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "A menos visualizada" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "A Mais Recente" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "A Mais Antiga" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "O pedido do item relacionado não foi encontrado" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Item relacionado não encontrado" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Não autorizado" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Pacote não encontrado" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "O item relacionado foi criado com sucesso" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "O item relacionado foi atualizado com sucesso" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "O item relacionado foi apagado." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Não está autorizado para apagar o item %s relacionado" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Aplicação" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Ideia" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Papel" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Publicar" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualização" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Histórico Revisão Repositório CKAN" #: ckan/controllers/revision.py:44 msgid "Recent changes to the CKAN repository." -msgstr "" +msgstr "Alterações recentes no repositorio CKAN." #: ckan/controllers/revision.py:108 #, python-format msgid "Datasets affected: %s.\n" -msgstr "" +msgstr "Conjuntos de dados afetados: %s.\n" #: ckan/controllers/revision.py:188 msgid "Revision updated" @@ -699,18 +610,18 @@ msgstr "Outro" #: ckan/controllers/tag.py:70 msgid "Tag not found" -msgstr "" +msgstr "Etiqueta não encontrada" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Utilizador não encontrado" #: ckan/controllers/user.py:149 msgid "Unauthorized to register as a user." -msgstr "Não está autorizado a registar como um utilizador." +msgstr "Não está autorizado a registar-se como um utilizador." #: ckan/controllers/user.py:166 msgid "Unauthorized to create a user" @@ -724,15 +635,15 @@ msgstr "Não está autorizado a apagar o utilizador com a id. \"{user_id}\"." msgid "No user specified" msgstr "Nenhum utilizador especificado" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Não está autorizado a editar o utilizador %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" -msgstr "Perfil enviado" +msgstr "Perfil atualizado" #: ckan/controllers/user.py:232 #, python-format @@ -748,81 +659,93 @@ msgstr "'Captcha' errada. Por favor, tente de novo." msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" -msgstr "" +msgstr "O utilizador \"%s\" já está registado, porém ainda está com a sessão iniciada como \"%s\"" #: ckan/controllers/user.py:276 msgid "Unauthorized to edit a user." msgstr "Não está autorizado a editar um utilizador." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" -msgstr "O utilizador %s não está autorizado a editar %s" +msgstr "Utilizador %s não está autorizado a editar %s" + +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Palavra-passe inserida está incorreta" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Palavra-passe antiga " + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "Palavra-passe incorreta" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." -msgstr "Início de sessão falhou. Nome de utilizador ou senha errado." +msgstr "Início de sessão falhou. Nome de utilizador ou palavra-passe errada." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." -msgstr "Não está autorizado a solicitar a reposição da senha." +msgstr "Não está autorizado a solicitar a redefinição da palavra-passe." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" -msgstr "" +msgstr "\"%s\" coincide com vários utilizadores " -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Não existe tal utilizador: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Por favor, verifique a sua caixa de correio para o código de reposição." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" -msgstr "Não foi possível enviar a hiperligação de reposição: %s" +msgstr "Não foi possível enviar a hiperligação de redefinição: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." -msgstr "Não está autorizado para reiniciar a senha." +msgstr "Não está autorizado para redefinir a palavra-passe." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." -msgstr "" +msgstr "Chave de redefinição inválida. Por favor, tente novamente. " -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." -msgstr "A sua senha foi reposta." +msgstr "A sua palavra-passe foi redefinida." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." -msgstr "A sua senha deve ter 4 ou mais carateres." +msgstr "A sua palavra-passe deve ter 4 ou mais carateres." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." -msgstr "As senhas inseridas são diferentes." +msgstr "As palavras-chave inseridas são diferentes." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" -msgstr "Deve indicar uma senha" +msgstr "Deve indicar uma palavra-chave" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Seguir item não encontrado" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} não encontrado" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Não está autorizado a ler {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Tudo" @@ -832,119 +755,119 @@ msgstr "Valor em falta" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Não é permitido redirecionar para página externa. " #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" +msgstr "O {actor} adicionou a etiqueta {tag} ao conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:67 msgid "{actor} updated the group {group}" -msgstr "" +msgstr "O {actor} atualizou o grupo {group}" #: ckan/lib/activity_streams.py:70 msgid "{actor} updated the organization {organization}" -msgstr "" +msgstr "O {actor} atualizou a organização {organization}" #: ckan/lib/activity_streams.py:73 msgid "{actor} updated the dataset {dataset}" -msgstr "" +msgstr "O {actor} atualizou o conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:76 msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" +msgstr "O {actor} alterou o campo extra {extra} do conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:79 msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" +msgstr "O {actor} atualizou o recurso {resource} no conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:82 msgid "{actor} updated their profile" -msgstr "" +msgstr "O {actor} atualizou o seu perfil" #: ckan/lib/activity_streams.py:86 msgid "" "{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" +msgstr "O {actor} atualizou o {related_type} {related_item} do conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:89 msgid "{actor} updated the {related_type} {related_item}" -msgstr "" +msgstr "O {actor} atualizou o {related_type} {related_item}" #: ckan/lib/activity_streams.py:92 msgid "{actor} deleted the group {group}" -msgstr "" +msgstr "O {actor} eliminou o grupo {group}" #: ckan/lib/activity_streams.py:95 msgid "{actor} deleted the organization {organization}" -msgstr "" +msgstr "O {actor} eliminou a organização {organization}" #: ckan/lib/activity_streams.py:98 msgid "{actor} deleted the dataset {dataset}" -msgstr "" +msgstr "O {actor} eliminou o conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:101 msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" +msgstr "O {actor} apagou o campo extra {extra} do conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:104 msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" +msgstr "O {actor} eliminou o recurso {resource} do conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:108 msgid "{actor} created the group {group}" -msgstr "" +msgstr "O {actor} criou o grupo {group}" #: ckan/lib/activity_streams.py:111 msgid "{actor} created the organization {organization}" -msgstr "" +msgstr "O {actor} criou a organização {organization}" #: ckan/lib/activity_streams.py:114 msgid "{actor} created the dataset {dataset}" -msgstr "" +msgstr "O {actor} criou o conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:117 msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" +msgstr "O {actor} adicionou o campo extra {extra} ao conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:120 msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" +msgstr "O {actor} adicionou o recurso {resource} ao conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:123 msgid "{actor} signed up" -msgstr "" +msgstr "{actor} subscreveu " #: ckan/lib/activity_streams.py:126 msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" +msgstr "O {actor} removeu a etiqueta {tag} do conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:129 msgid "{actor} deleted the related item {related_item}" -msgstr "" +msgstr "O {actor} eliminou o item relacionado {related_item}" #: ckan/lib/activity_streams.py:132 msgid "{actor} started following {dataset}" -msgstr "" +msgstr "O {actor} começou a seguir {dataset}" #: ckan/lib/activity_streams.py:135 msgid "{actor} started following {user}" -msgstr "" +msgstr "O {actor} começou a seguir {user}" #: ckan/lib/activity_streams.py:138 msgid "{actor} started following {group}" -msgstr "" +msgstr "O {actor} começou a seguir {group}" #: ckan/lib/activity_streams.py:142 msgid "" "{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" +msgstr "O {actor} adicionou o {related_type} {related_item} ao conjunto de dados {dataset}" #: ckan/lib/activity_streams.py:145 msgid "{actor} added the {related_type} {related_item}" -msgstr "" +msgstr "O {actor} adicionou o {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -952,7 +875,7 @@ msgid "View" msgstr "Visualização" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" msgstr[1] "" @@ -1005,139 +928,139 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Agora" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" -msgstr[0] "à {mins} minuto" -msgstr[1] "à {mins} minutos" +msgstr[0] "há {mins} minuto" +msgstr[1] "há {mins} minutos" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" -msgstr[0] "à {hours} hora" -msgstr[1] "à {hours} horas" +msgstr[0] "há {hours} hora" +msgstr[1] "há {hours} horas" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" -msgstr[0] "à {days} dia" -msgstr[1] "à {days} dias" +msgstr[0] "há {days} dia" +msgstr[1] "há {days} dias" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" -msgstr[0] "à {months} mês" -msgstr[1] "à {months} meses" +msgstr[0] "há {months} mês" +msgstr[1] "há {months} meses" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Há mais de um {years} ano" +msgstr[1] "Há mais de {years} anos" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" -msgstr "" +msgstr "{day} de {month}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Atualize o seu avatar em gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Desconhecido" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Recurso sem nome" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." -msgstr "" +msgstr "Foi criado um novo conjunto de dados." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Recursos editados." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Configurações editadas." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} visualização" +msgstr[1] "{number} visualizações" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} visualização recente" +msgstr[1] "{number} visualizações recentes" #: ckan/lib/mailer.py:25 #, python-format @@ -1151,7 +1074,7 @@ msgstr "%s <%s>" #: ckan/lib/mailer.py:99 msgid "No recipient email address available!" -msgstr "" +msgstr "Nenhum endereço de email disponível. " #: ckan/lib/mailer.py:104 msgid "" @@ -1160,21 +1083,21 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Solicitou que a sua palavra-passe em {site_title} seja redefinida.\n\nPor favor, clique no seguinte link para confirmar o pedido:\n\n{reset_link}\n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Foi convidado para {site_title}. Um utilizador já foi criado com o seguinte nome {user_name}. Pode alterá-lo mais tarde. \n\nPara aceitar este convite, por favor, defina uma palavra-passe em:\n\n{reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 msgid "Reset your password" -msgstr "Reinicie a sua senha" +msgstr "Redefina a sua palavra-passe" #: ckan/lib/mailer.py:151 msgid "Invite for {site_title}" @@ -1189,20 +1112,20 @@ msgstr "Convidar para {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Valor em falta" #: ckan/lib/navl/validators.py:64 #, python-format msgid "The input field %(name)s was not expected." -msgstr "" +msgstr "Campo de entrada %(name)s não esperado. " #: ckan/lib/navl/validators.py:116 msgid "Please enter an integer value" -msgstr "" +msgstr "Por favor, insira um número de valor inteiro." -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1212,11 +1135,11 @@ msgstr "" msgid "Resources" msgstr "Recursos" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" -msgstr "" +msgstr "Pacote de recurso(s) inválido" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Extras" @@ -1224,27 +1147,24 @@ msgstr "Extras" #: ckan/logic/converters.py:72 ckan/logic/converters.py:87 #, python-format msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" +msgstr "Vocabulário de etiquetas \"%s\" não existe" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Utilizador" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" -msgstr "" +msgstr "Conjunto de Dados" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grupo" @@ -1256,693 +1176,688 @@ msgstr "Não foi possível analisar como um JSON válido" msgid "A organization must be supplied" msgstr "Deve ser indicada uma organização" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "A organização não existe" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" -msgstr "" +msgstr "Não pode adicionar um conjunto de dados nesta organização" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" -msgstr "Integro inválido" +msgstr "Inteiro inválido" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" -msgstr "" +msgstr "Deve ser um número natural" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" -msgstr "Deverá ser um integro positivo" +msgstr "Deverá ser um inteiro positivo" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Formato de data incorreto" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." -msgstr "" +msgstr "Não são permitidos links na mensagem de registo. " -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "O ID do conjunto de dados já existe" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Recurso" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Relacionado" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "O nome do grupo ou a Id. não existe." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Tipo de Atividade" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" -msgstr "" +msgstr "Os nomes devem ser em formato texto" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" -msgstr "" +msgstr "Esse nome não pode ser utilizado" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Devem ter pelo menos %s caracteres" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" -msgstr "" +msgstr "O nome deve ter no máximo %i caracteres" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "Deverão ser, unicamente, carateres alfanuméricos minúsculos (ascii) e os símbolos: - _ ." -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "O URL já está a ser utilizado." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" -msgstr "" +msgstr "O tamanho do nome \"%s\" é menor que o mínimo permitido %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" -msgstr "" +msgstr "O tamanho da etiqueta \"%s\" é maior que o máximo permitido %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" -msgstr "" +msgstr "A versão deve ter no máximo %i caracteres" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Chave duplicada \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "O nome do grupo já existe na base de dados" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" -msgstr "" +msgstr "O tamanho da etiqueta \"%s\" é menor que o mínimo permitido %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" +msgstr "O tamanho da etiqueta \"%s\" é maior que o máximo permitido %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" +msgstr "A etiqueta \"%s\" deve ser de carateres alfanuméricos ou símbolos: - _ ." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" -msgstr "" +msgstr "A etiqueta \"%s\" não deve ser em maiúsculas" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" -msgstr "" +msgstr "O nome do utilizador deve ser em formato texto" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." -msgstr "O nome de iniciar a sessão não está disponível." +msgstr "Esse nome de utilizador não está disponível." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" -msgstr "Por favor, insira ambas as senhas" +msgstr "Por favor, insira ambas as palavras-chave" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" -msgstr "" +msgstr "Palavras-passe devem ser em formato texto" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" -msgstr "A sua senha deve ter 4 ou mais carateres" +msgstr "A sua palavra-passe deve ter 4 ou mais carateres" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" -msgstr "As senhas inseridas são diferentes." +msgstr "As palavras-passe inseridas são diferentes." -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." -msgstr "" +msgstr "Edite, não é permitido parece como spam. Por favor, evite links na sua descrição." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" -msgstr "" +msgstr "O nome deve conter pelo menos %s caracteres" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." -msgstr "" +msgstr "Esse nome de vocabulário já está em uso." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" +msgstr "Não é possivel alterar o numero da chave de %s para %s. Esta é somente de leitura." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." -msgstr "" +msgstr "Vocabulário de etiquetas não encontrado." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" -msgstr "" +msgstr "A etiqueta %s não pertence ao vocabulário %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" -msgstr "" +msgstr "Nenhum nome de etiqueta" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" -msgstr "" +msgstr "A etiqueta %s já pertence ao vocabulário %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" -msgstr "" +msgstr "Por favor, forneça um URL válido." -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." -msgstr "" +msgstr "A função não existe." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." -msgstr "" +msgstr "Conjuntos de dados sem organização não podem ser privados. " -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" -msgstr "" +msgstr "Não é uma lista." -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" -msgstr "" +msgstr "Não é um formato texto" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "\"filter_fields\" e \"filter_values\" devem ter o mesmo comprimento." -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +msgstr "\"filter_fields\" é solicitado quando \"filter_values\" é preenchido" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "\"filter_values\" é solicitado quando \"filter_fields\" é preenchido" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "Há um campo com o mesmo nome. " -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" -msgstr "" +msgstr "REST API: Cria o objeto %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" -msgstr "" +msgstr "A tentar criar uma organização como um grupo" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" +msgstr "Deverá fornecer um pacote ID ou um nome (parâmetro \"pacote\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." -msgstr "" +msgstr "Deverá fornecer uma classificação (parâmetro \"classificação\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." -msgstr "" +msgstr "A classificação deverá ser um valor inteiro. " -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." -msgstr "" +msgstr "A classificação deverá ser entre %i e %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" -msgstr "" +msgstr "Precisa de iniciar a sessão para poder seguir utilizadores " -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" -msgstr "" +msgstr "Não pode seguir-se a si próprio" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" -msgstr "" +msgstr "Já está a seguir {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." -msgstr "" +msgstr "É necessário ter a sessão iniciada para poder seguir um conjunto de dados. " -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." -msgstr "" +msgstr "Utilizador {username} não existe." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." -msgstr "" +msgstr "É necessário ter a sessão iniciada para poder seguir um grupo." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" -msgstr "" +msgstr "REST API: Eliminar pacote: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" -msgstr "" +msgstr "REST API: Eliminar %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" -msgstr "" +msgstr "REST API: Eliminar membro: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" -msgstr "" +msgstr "Os dados não têm ID" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" -msgstr "" +msgstr "Não foi possivel encontrar a etiqueta \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." -msgstr "" +msgstr "Precisa de ter a sessão iniciada para poder deixar de seguir alguém. " -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." -msgstr "" +msgstr "Não está a seguir {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "O recurso não foi encontrado." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" -msgstr "" +msgstr "Não especificou o parâmetro \"query\"" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" -msgstr "" +msgstr "Deverá ser : par(es)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" - -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" +msgstr "O campo \"{field}\" não é reconhecido no recurso de pesquisa." -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "O item não foi encontrado." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "O pacote não foi encontrado." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" -msgstr "" +msgstr "REST API: Atualizar objeto. %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." -msgstr "" +msgstr "A organização não foi encontrada." #: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 #, python-format msgid "User %s not authorized to create packages" -msgstr "" +msgstr "Utilizador %s não está autorizado a criar pacotes" #: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 #, python-format msgid "User %s not authorized to edit these groups" -msgstr "" +msgstr "Utilizador %s não está autorizado a editar estes grupos" #: ckan/logic/auth/create.py:36 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "" +msgstr "Utilizador %s não está autorizado a adicionar conjuntos de dados nesta organização" #: ckan/logic/auth/create.py:58 msgid "You must be a sysadmin to create a featured related item" -msgstr "" +msgstr "É necessário que seja um Administrador de sistema para poder criar um item relacionado em destaque." #: ckan/logic/auth/create.py:62 msgid "You must be logged in to add a related item" -msgstr "" +msgstr "Precisa de ter a sessão iniciada para poder adicionar um item relacionado " #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "Não existe ID fornecido ao conjunto de dados, não foi possivel verificar autor. " -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." -msgstr "" +msgstr "Não foi encontrado nenhum pacote para este recurso, não foi possivel verificar autor." #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a criar recursos no conjunto de dados %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" -msgstr "" +msgstr "Utilizador %s não está autorizado a editar estes pacotes" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" -msgstr "" +msgstr "Utilizador %s não está autorizado a criar grupos" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" -msgstr "" +msgstr "Utilizador %s não está autorizado a criar organizações" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" -msgstr "" +msgstr "Utilizador {user} não está autorizado a criar novos perfis de utilizadores via API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Não está autorizado a criar utilizadores" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "O grupo não foi encontrado." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" -msgstr "" +msgstr "É necessária uma chave API válida para criar um pacote" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" -msgstr "" +msgstr "É necessária uma chave API válida para criar um grupo " -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" -msgstr "" +msgstr "Utilizador %s não está autorizado a adicionar membros" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a editar o grupo %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a eliminar o recurso %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "Visualização de recurso não encontrado, não é possível verificar autor." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" -msgstr "" +msgstr "Somente o proprietário pode excluir um item relacionado" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a eliminar a conexão %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" -msgstr "" +msgstr "Utilizador %s não está autorizado a eliminar grupos" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a eliminar o grupo %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" -msgstr "" +msgstr "Utilizador %s não está autorizado a eliminar organizações" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a eliminar a organização %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" -msgstr "" +msgstr "Utilizador %s não está autorizado a eliminar task_status" + +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Não autorizado" #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" -msgstr "" +msgstr "Utilizador %s não está autorizado a ler estes pacotes" #: ckan/logic/auth/get.py:119 #, python-format msgid "User %s not authorized to read package %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a ler o pacote %s" #: ckan/logic/auth/get.py:141 #, python-format msgid "User %s not authorized to read resource %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a ler o recurso %s" #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a ler o grupo %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." -msgstr "" +msgstr "Necessita de iniciar a sessão para poder ter acesso ao painel de controlo. " #: ckan/logic/auth/update.py:37 #, python-format msgid "User %s not authorized to edit package %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a editar o pacote %s" #: ckan/logic/auth/update.py:69 #, python-format msgid "User %s not authorized to edit resource %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a editar o recurso %s" #: ckan/logic/auth/update.py:98 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a alterar o estado do pacote %s" #: ckan/logic/auth/update.py:126 #, python-format msgid "User %s not authorized to edit organization %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a editar a organização %s" #: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 msgid "Only the owner can update a related item" -msgstr "" +msgstr "Somente o proprietário pode atualizar um item relacionado" #: ckan/logic/auth/update.py:148 msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" +msgstr "Necessita de ser um Administrador de sistema para poder alterar o campo apresentado no item relacionado. " #: ckan/logic/auth/update.py:165 #, python-format msgid "User %s not authorized to change state of group %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a alterar o estado do grupo %s" #: ckan/logic/auth/update.py:182 #, python-format msgid "User %s not authorized to edit permissions of group %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a editar as permissões do grupo %s" #: ckan/logic/auth/update.py:209 msgid "Have to be logged in to edit user" -msgstr "" +msgstr "É necessário iniciar a sessão para poder editar o seu perfil" #: ckan/logic/auth/update.py:217 #, python-format msgid "User %s not authorized to edit user %s" -msgstr "" +msgstr "Utilizador %s não está autorizado a editar o perfil %s" #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "Utilizador {0} não está autorizado a atualizar o perfil {1}" #: ckan/logic/auth/update.py:236 #, python-format msgid "User %s not authorized to change state of revision" -msgstr "" +msgstr "Utilizador %s não está autorizado a alterar o estado de revisão" #: ckan/logic/auth/update.py:245 #, python-format msgid "User %s not authorized to update task_status table" -msgstr "" +msgstr "Utilizador %s não está autorizado a atualizar a tabela task_status" #: ckan/logic/auth/update.py:259 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "" +msgstr "Utilizador %s não está autorizado a atualizar a tabela term_translation" #: ckan/logic/auth/update.py:281 msgid "Valid API key needed to edit a package" -msgstr "" +msgstr "É necessária uma chave API válida para editar um pacote" #: ckan/logic/auth/update.py:291 msgid "Valid API key needed to edit a group" -msgstr "" +msgstr "É necessária uma chave API válida para editar um grupo" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "Licença não especificada" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" +msgstr "Open Data Commons - Domínio Público" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" +msgstr "Open Data Commons - Atribuição e Compartilha Igual" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" -msgstr "" +msgstr "Open Data Commons - Atribuição" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" -msgstr "" +msgstr "Creative Commons - Domínio Público" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" -msgstr "" +msgstr "Creative Commons - Atribuição" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" -msgstr "" +msgstr "Creative Commons - Atribuição e Compartilha Igual" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" -msgstr "" +msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Outro (Abrir)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Outro (Domínio Público)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Outro (Atribuição)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" -msgstr "" +msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" -msgstr "" +msgstr "Creative Commons - Atribuição e Não Comercial" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Outro (Não Comercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Outro (Não Abrir)" #: ckan/model/package_relationship.py:52 #, python-format msgid "depends on %s" -msgstr "" +msgstr "depende de %s" #: ckan/model/package_relationship.py:52 #, python-format msgid "is a dependency of %s" -msgstr "" +msgstr "é uma dependência de %s " #: ckan/model/package_relationship.py:53 #, python-format msgid "derives from %s" -msgstr "" +msgstr "deriva de %s" #: ckan/model/package_relationship.py:53 #, python-format msgid "has derivation %s" -msgstr "" +msgstr "tem derivação de %s" #: ckan/model/package_relationship.py:54 #, python-format msgid "links to %s" -msgstr "" +msgstr "liga a %s" #: ckan/model/package_relationship.py:54 #, python-format msgid "is linked from %s" -msgstr "" +msgstr "está ligado desde %s" #: ckan/model/package_relationship.py:55 #, python-format @@ -1971,11 +1886,11 @@ msgstr "A carregar ..." #: ckan/public/base/javascript/modules/api-info.js:20 msgid "There is no API data to load for this resource" -msgstr "" +msgstr "Não há dados API para carregar neste recurso" #: ckan/public/base/javascript/modules/api-info.js:21 msgid "Failed to load data API information" -msgstr "" +msgstr "Falha no carregamento da informação dos dados API" #: ckan/public/base/javascript/modules/autocomplete.js:31 msgid "No matches found" @@ -1983,15 +1898,15 @@ msgstr "Não foram encontradas correspondências" #: ckan/public/base/javascript/modules/autocomplete.js:32 msgid "Start typing…" -msgstr "" +msgstr "Comece a escrever ..." #: ckan/public/base/javascript/modules/autocomplete.js:34 msgid "Input is too short, must be at least one character" -msgstr "" +msgstr "Entrada muito curta, deve ter pelo menos um caratere." #: ckan/public/base/javascript/modules/basic-form.js:4 msgid "There are unsaved modifications to this form" -msgstr "" +msgstr "Existem modificações que não estão a ser guardadas" #: ckan/public/base/javascript/modules/confirm-action.js:7 msgid "Please Confirm Action" @@ -1999,7 +1914,7 @@ msgstr "Por favor, Confirme a Ação" #: ckan/public/base/javascript/modules/confirm-action.js:8 msgid "Are you sure you want to perform this action?" -msgstr "Tem a certeza que deseja realizar este ação?" +msgstr "Tem a certeza que deseja realizar esta ação?" #: ckan/public/base/javascript/modules/confirm-action.js:9 #: ckan/templates/user/new_user_form.html:9 @@ -2017,8 +1932,6 @@ msgstr "Confirmar" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Cancelar" @@ -2043,12 +1956,13 @@ msgstr "Hiperligação" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Remover" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Imagem" @@ -2058,7 +1972,7 @@ msgstr "Envie um ficheiro no seu computador" #: ckan/public/base/javascript/modules/image-upload.js:20 msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" +msgstr "Link para um URL na internet ( pode também ligar-se com API)" #: ckan/public/base/javascript/modules/related-item.js:25 msgid "show more" @@ -2096,32 +2010,31 @@ msgstr "Recurso enviado" #: ckan/public/base/javascript/modules/resource-upload-field.js:28 msgid "Unable to upload file" -msgstr "" +msgstr "Não é possivel enviar o ficheiro" #: ckan/public/base/javascript/modules/resource-upload-field.js:29 msgid "Unable to authenticate upload" -msgstr "" +msgstr "Não é possivel autenticar o envio" #: ckan/public/base/javascript/modules/resource-upload-field.js:30 msgid "Unable to get data for uploaded file" -msgstr "" +msgstr "Não foi possivel obter dados a partir do ficheiro enviado" #: ckan/public/base/javascript/modules/resource-upload-field.js:31 msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" -msgstr "" +msgstr "Está a enviar um ficheiro. Tem a certeza de que deseja sair e parar o envio?" #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Reordenar as vistas dos recursos" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2135,7 +2048,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Editar" @@ -2154,7 +2066,7 @@ msgstr "Erro %(error_code)s" #: ckan/templates/footer.html:9 msgid "About {0}" -msgstr "Sobre o {0}" +msgstr "Sobre {0}" #: ckan/templates/footer.html:15 msgid "CKAN API" @@ -2162,46 +2074,54 @@ msgstr "API CKAN" #: ckan/templates/footer.html:16 msgid "Open Knowledge Foundation" -msgstr "" +msgstr "Open Knowledge Foundation" #: ckan/templates/footer.html:24 msgid "" "Powered by CKAN" -msgstr "" +msgstr " Fornecido por CKAN " #: ckan/templates/header.html:12 msgid "Sysadmin settings" -msgstr "" +msgstr "Configurações do Administrador de sistema" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "Ver perfil" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Painel de Controlo (%(num)d novo item)" +msgstr[1] "Painel de Controlo (%(num)d novos itens)" + +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Painel de controlo" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "Editar configurações" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Definições" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "Terminar Sessão" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "Iniciar Sessão" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "Registar" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2210,7 +2130,6 @@ msgstr "Registar" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2218,23 +2137,21 @@ msgstr "Registar" #: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 #: ckan/templates/user/read_base.html:53 msgid "Datasets" -msgstr "" +msgstr "Conjuntos de Dados" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" -msgstr "" +msgstr "Pesquisar Conjuntos de Dados" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "Procurar" #: ckan/templates/page.html:6 msgid "Skip to content" -msgstr "" +msgstr "Ir para o conteúdo" #: ckan/templates/activity_streams/activity_stream_items.html:9 msgid "Load less" @@ -2246,7 +2163,7 @@ msgstr "Carregar mais" #: ckan/templates/activity_streams/activity_stream_items.html:23 msgid "No activities are within this activity stream" -msgstr "" +msgstr "Não há atividades dentro deste fluxo de atividades" #: ckan/templates/admin/base.html:3 msgid "Administration" @@ -2262,26 +2179,26 @@ msgstr "Configurar" #: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 msgid "Trash" -msgstr "" +msgstr "Lixo" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" -msgstr "Tem a certeza que deseja reiniciar a configuração?" +msgstr "Tem a certeza que deseja redefinir a configuração?" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" -msgstr "Reiniciar" +msgstr "Redefinir" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" -msgstr "" +msgstr "Atualizar Configurações" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "Opções da configuração CKAN" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2299,16 +2216,16 @@ msgid "" "target=\"_blank\">reading the documentation.

" "

Homepage: This is for choosing a predefined layout for " "the modules that appear on your homepage.

" -msgstr "" +msgstr "

Título do portal: Este é o título desta instância CKAN. Aparece em vários pontos do CKAN.

Estilo: Escolha de uma lista de esquemas de cores com variações simples do esquema principal para conseguir uma personalização rápida do tema do portal.

Logótipo do portal: Este é o logótipo que aparece no cabeçalho de todos os modelos de instância CKAN.

Sobre: Texto descritivo sobre a página será exibido nesta instância CKAN .

Texto Introdutório: Este texto será exibido nesta instância CKAN home page como uma nota de boas vindas aos visitantes.

CSS personalizado: O bloco CSS aparece na <head> etiqueta de cada página. Se deseja personalizar os estilos e os conteúdos da página de uma forma mais completa, recomendamos a leitura da seguinte documentação .

Página Inicial: Permite escolher o layout pré-definido dos módulos que surgem na página inicial.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 msgid "Confirm Reset" -msgstr "" +msgstr "Confirmar redefinição" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Administrador CKAN" #: ckan/templates/admin/index.html:20 #, python-format @@ -2316,43 +2233,42 @@ msgid "" "

As a sysadmin user you have full control over this CKAN instance. " "Proceed with care!

For guidance on using sysadmin features, see the " "CKAN sysadmin guide

" -msgstr "" +msgstr "

Como Administrador do Sistema tem total controlo sobre o CKAN. Proceda com CUIDADO!

Para obter mais informações para um uso correto, consulte no CKAN o guia Administrador do Sistema

" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Purgar" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "

Eliminar para sempre e de forma irreversível um conjuntos de dados já eliminado.

" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" -msgstr "" +msgstr "CKAN Dados API" #: ckan/templates/ajax_snippets/api_info.html:23 msgid "Access resource data via a web API with powerful query support" -msgstr "" +msgstr "O acesso ao recurso dados através de um API na internet é um apoio de consulta poderoso" #: ckan/templates/ajax_snippets/api_info.html:24 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +msgstr "Mais informações sobre o API principal dos dados CKAN e a documentação sobre o armazenamento de dados.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" -msgstr "" +msgstr "Pontos de acesso" #: ckan/templates/ajax_snippets/api_info.html:37 msgid "" "The Data API can be accessed via the following actions of the CKAN action " "API." -msgstr "" +msgstr "É possivel aceder aos dados API seguindo as ações API no CKAN." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Criar" @@ -2362,11 +2278,11 @@ msgstr "Atualizar / Inserir" #: ckan/templates/ajax_snippets/api_info.html:50 msgid "Query" -msgstr "" +msgstr "Query" #: ckan/templates/ajax_snippets/api_info.html:54 msgid "Query (via SQL)" -msgstr "" +msgstr "Query (via SQL)" #: ckan/templates/ajax_snippets/api_info.html:66 msgid "Querying" @@ -2374,15 +2290,15 @@ msgstr "" #: ckan/templates/ajax_snippets/api_info.html:70 msgid "Query example (first 5 results)" -msgstr "" +msgstr "Query exemplo (os 5 primeiros resultados)" #: ckan/templates/ajax_snippets/api_info.html:75 msgid "Query example (results containing 'jones')" -msgstr "" +msgstr "Query exemplo (resultados que contenham 'jones')" #: ckan/templates/ajax_snippets/api_info.html:81 msgid "Query example (via SQL statement)" -msgstr "" +msgstr "Query exemplo (via instrução SQL)" #: ckan/templates/ajax_snippets/api_info.html:93 msgid "Example: Javascript" @@ -2398,13 +2314,13 @@ msgstr "Exemplo: Python" #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." -msgstr "" +msgstr "Este recurso não pode ser pré-visualizado no momento." #: ckan/templates/dataviewer/snippets/data_preview.html:11 #: ckan/templates/package/resource_read.html:118 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." -msgstr "" +msgstr "Clique aqui para mais informações." #: ckan/templates/dataviewer/snippets/data_preview.html:18 #: ckan/templates/package/snippets/resource_view.html:33 @@ -2436,7 +2352,7 @@ msgstr "Standard" #: ckan/templates/development/snippets/form.html:5 msgid "Standard Input" -msgstr "" +msgstr "Entrada padrão " #: ckan/templates/development/snippets/form.html:6 msgid "Medium" @@ -2472,7 +2388,7 @@ msgstr "" #: ckan/templates/development/snippets/form.html:13 msgid "Custom Field (empty)" -msgstr "" +msgstr "Personalizar Campo (vazio)" #: ckan/templates/development/snippets/form.html:19 #: ckan/templates/group/snippets/group_form.html:35 @@ -2482,7 +2398,7 @@ msgstr "" #: ckan/templates/snippets/custom_form_fields.html:20 #: ckan/templates/snippets/custom_form_fields.html:37 msgid "Custom Field" -msgstr "" +msgstr "Personalizar Campo" #: ckan/templates/development/snippets/form.html:22 msgid "Markdown" @@ -2490,7 +2406,7 @@ msgstr "" #: ckan/templates/development/snippets/form.html:23 msgid "Textarea" -msgstr "" +msgstr "Área de texto" #: ckan/templates/development/snippets/form.html:24 msgid "Select" @@ -2504,12 +2420,12 @@ msgstr "Selecionar" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 msgid "Activity Stream" -msgstr "" +msgstr "Histórico de atividades" #: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 #: ckan/templates/organization/admins.html:3 @@ -2523,7 +2439,7 @@ msgstr "Adicionar um Grupo" #: ckan/templates/group/base_form_page.html:11 msgid "Group Form" -msgstr "" +msgstr "Formulário de Grupo" #: ckan/templates/group/confirm_delete.html:3 #: ckan/templates/group/confirm_delete.html:15 @@ -2537,14 +2453,12 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Confirmar Eliminação" #: ckan/templates/group/confirm_delete.html:11 msgid "Are you sure you want to delete group - {name}?" -msgstr "Tem a certeza que deseja apagar o grupo {name}?" +msgstr "Tem a certeza que deseja apagar o grupo - {name}?" #: ckan/templates/group/confirm_delete_member.html:11 #: ckan/templates/organization/confirm_delete_member.html:11 @@ -2556,7 +2470,7 @@ msgstr "Tem a certeza que deseja apagar o membro - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2630,7 +2544,7 @@ msgstr "Atualmente, este site não tem grupos" #: ckan/templates/group/index.html:31 #: ckan/templates/organization/index.html:31 msgid "How about creating one?" -msgstr "" +msgstr "E que tal criar um?" #: ckan/templates/group/member_new.html:8 #: ckan/templates/organization/member_new.html:10 @@ -2660,7 +2574,7 @@ msgstr "Utilizador Existente" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:23 msgid "If you wish to add an existing user, search for their username below." -msgstr "" +msgstr "Se deseja adicionar um utilizador já existente, procure o nome do mesmo abaixo. " #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:40 @@ -2675,7 +2589,7 @@ msgstr "Novo Utilizador" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:47 msgid "If you wish to invite a new user, enter their email address." -msgstr "" +msgstr "Se pretende convidar um novo membro, escreva o respetivo contacto de email. " #: ckan/templates/group/member_new.html:55 #: ckan/templates/group/members.html:18 @@ -2701,14 +2615,12 @@ msgstr "Tem a certeza que deseja apagar este membro?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Apagar" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Guardar" @@ -2722,7 +2634,7 @@ msgid "" "

Admin: Can edit group information, as well as manage " "organization members.

Member: Can add/remove " "datasets from groups

" -msgstr "" +msgstr "

Administrador: Pode editar as informações do grupo, bem como gerir os membros da organização.

Membro: Pode adicionar e remover conjuntos de dados provenientes de grupos

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -2742,7 +2654,7 @@ msgstr "Criar Grupo" #: ckan/templates/snippets/sort_by.html:14 #: ckanext/example_idatasetform/templates/package/search.html:12 msgid "Relevance" -msgstr "Relevancia" +msgstr "Relevância" #: ckan/templates/group/read.html:18 #: ckan/templates/organization/bulk_process.html:99 @@ -2766,11 +2678,11 @@ msgstr "Popular" #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." -msgstr "" +msgstr "Pesquisar conjuntos de dados..." #: ckan/templates/group/snippets/feeds.html:3 msgid "Datasets in group: {group}" -msgstr "" +msgstr "Conjuntos de dados no grupo: {group}" #: ckan/templates/group/snippets/feeds.html:4 #: ckan/templates/organization/snippets/feeds.html:4 @@ -2796,13 +2708,12 @@ msgstr "meu-grupo" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Descrição" #: ckan/templates/group/snippets/group_form.html:20 msgid "A little information about my group..." -msgstr "" +msgstr "Alguma informação sobre o meu grupo ..." #: ckan/templates/group/snippets/group_form.html:60 msgid "Are you sure you want to delete this Group?" @@ -2818,15 +2729,15 @@ msgstr "Guardar Grupo" #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 msgid "{num} Dataset" msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{num} Conjunto de dados" +msgstr[1] "{num} Conjuntos de dados" #: ckan/templates/group/snippets/group_item.html:34 #: ckan/templates/organization/snippets/organization_item.html:33 #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 msgid "0 Datasets" -msgstr "" +msgstr "0 Conjuntos de dados" #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 @@ -2835,7 +2746,7 @@ msgstr "Ver {name}" #: ckan/templates/group/snippets/group_item.html:43 msgid "Remove dataset from this group" -msgstr "" +msgstr "Remover o conjunto de dados deste grupo" #: ckan/templates/group/snippets/helper.html:4 msgid "What are Groups?" @@ -2847,7 +2758,7 @@ msgid "" "could be to catalogue datasets for a particular project or team, or on a " "particular theme, or as a very simple way to help people find and search " "your own published datasets. " -msgstr "" +msgstr "Pode usar Grupos CKAN para criar e gerir coleções de conjuntos de dados. Poderão servir para catalogar conjuntos de dados de um projeto ou equipa em particular, ou sobre um tema especifico, ou como uma forma simples de ajudar os utilizadores a encontrar e pesquisar os seus próprios conjuntos de dados publicados." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -2857,7 +2768,7 @@ msgstr "Comparar" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2899,7 +2810,7 @@ msgstr "Autor" #: ckan/templates/revision/read.html:56 #: ckan/templates/revision/snippets/revisions_list.html:8 msgid "Log Message" -msgstr "" +msgstr "Mensagem de registo" #: ckan/templates/home/index.html:4 msgid "Welcome" @@ -2925,7 +2836,7 @@ msgid "" "href=\"http://ckan.org/tour/\">http://ckan.org/tour/
Features " "overview: http://ckan.org/features/

" -msgstr "" +msgstr "

A plataforma CKAN é líder mundial em portais de dados abertos.

CKAN é um software revolucionário, uma solução que torna dados acessíveis e utilizáveis - fornecendo ferramentas para agilizar a publicação, partilha, encontrar e utilizar dados (incluindo o armazenamento de dados e prestação de dados APIs). CKAN é dirigido a editores de dados (governos nacionais e regionais, empresas e organizações) que querem fazer dos seus dados, dados abertos e disponíveis.

CKAN é usado pelos governos e grupos de utilizadores em todo o mundo em portais de dados da comunidade, incluindo portais para o governo local, nacional e internacional, tais como o Reino Unido data.gov.uk e União Europeia publicdata.eu, os brasileiros dados.gov.br, os portais governamentais holandeses e dos países baixos, bem como das cidades e locais municipais dos EUA, Reino Unido, Argentina, Finlândia, entre outros.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Vista geral das características: http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" @@ -2935,67 +2846,59 @@ msgstr "Bem-vindo ao CKAN" msgid "" "This is a nice introductory paragraph about CKAN or the site in general. We " "don't have any copy to go here yet but soon we will " -msgstr "" +msgstr "Este é um parágrafo introdutório agradável sobre o CKAN ou sobre o site em geral. Ainda não temos qualquer cópia para ir aqui, mas em breve vamos ter" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" -msgstr "" +msgstr "Esta é uma secção em destaque" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "P.ex. ambiente" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "Pesquisar dados" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Etiquetas Populares" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" -msgstr "{0} estatisticas" +msgstr "{0} estatísticas" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" -msgstr "" +msgstr "conjunto de dados" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" -msgstr "" +msgstr "conjuntos de dados" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organização" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organizações" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "grupo" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "grupos" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "item relacionado" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "itens relacionados" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" "You can use Markdown formatting here" -msgstr "" +msgstr "Aqui, pode usar o formato Markdown " #: ckan/templates/macros/form.html:265 msgid "This field is required" @@ -3003,23 +2906,21 @@ msgstr "O campo é necessário" #: ckan/templates/macros/form.html:265 msgid "Custom" -msgstr "" +msgstr "Personalizar" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" -msgstr "" +msgstr "O formulário contém entradas inválidas:" #: ckan/templates/macros/form.html:395 msgid "Required field" -msgstr "Campo necessário" +msgstr "Campo Obrigatório " #: ckan/templates/macros/form.html:410 msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL da Imagem" @@ -3029,24 +2930,24 @@ msgstr "Limpar Enviar" #: ckan/templates/organization/base_form_page.html:5 msgid "Organization Form" -msgstr "" +msgstr "Formulário de organização" #: ckan/templates/organization/bulk_process.html:3 #: ckan/templates/organization/bulk_process.html:11 msgid "Edit datasets" -msgstr "" +msgstr "Editar conjuntos de dados" #: ckan/templates/organization/bulk_process.html:6 msgid "Add dataset" -msgstr "" +msgstr "Adicionar conjunto de dados" #: ckan/templates/organization/bulk_process.html:16 msgid " found for \"{query}\"" -msgstr "" +msgstr "encontrados para \"{query}\"" #: ckan/templates/organization/bulk_process.html:18 msgid "Sorry no datasets found for \"{query}\"" -msgstr "" +msgstr "Pedimos desculpa, não foram encontrados conjuntos de dados para \"{query}\"" #: ckan/templates/organization/bulk_process.html:37 msgid "Make public" @@ -3064,7 +2965,7 @@ msgstr "Rascunho" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3073,7 +2974,7 @@ msgstr "Privado" #: ckan/templates/organization/bulk_process.html:88 msgid "This organization has no datasets associated to it" -msgstr "" +msgstr "Esta organização não tem nenhum conjunto de dados associado" #: ckan/templates/organization/confirm_delete.html:11 msgid "Are you sure you want to delete organization - {name}?" @@ -3098,6 +2999,20 @@ msgstr "Procurar organizações ..." msgid "There are currently no organizations for this site" msgstr "Atualmente, não existem organizações para este site" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nome de utilizador" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Endereço de email" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Atualizar Membro" @@ -3109,7 +3024,7 @@ msgid "" "edit datasets, but not manage organization members.

" "

Member: Can view the organization's private datasets, " "but not add new datasets.

" -msgstr "" +msgstr "

Administrador: Pode adicionar, editar e excluir conjuntos de dados, bem como gerir os membros da organização

Editor: Pode adicionar e editar conjuntos de dados, mas não pode girir os membros da organização.

Membro: Pode visualizar os conjuntos de dados privados da organização, mas não pode adicionar novos conjuntos de dados.

" #: ckan/templates/organization/new.html:3 #: ckan/templates/organization/new.html:5 @@ -3130,11 +3045,11 @@ msgstr "Criar Organização" #: ckan/templates/package/search.html:16 #: ckan/templates/user/dashboard_datasets.html:7 msgid "Add Dataset" -msgstr "" +msgstr "Adicionar Conjunto de Dados" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "Conjuntos de dados na organização: {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 @@ -3149,14 +3064,14 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "" +msgstr "

As organizações agem como departamentos de publicação para conjuntos de dados (p.ex., o Departamento de Saúde).\nIsto significa que os conjuntos de dados podem ser publicados e pertencem a um departamento em vez de a um utilizador individual.

Dentro das organizações, os administradores podem atribuir funções e autorizar os seus membros, dando aos utilizadores individuais, o direito de publicar conjuntos de dados de determinada organização (p.ex., Instituto Nacional de Estatística).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" " CKAN Organizations are used to create, manage and publish collections of " "datasets. Users can have different roles within an Organization, depending " "on their level of authorisation to create, edit and publish. " -msgstr "" +msgstr "Organizações CKAN são usadas para criar, gerir e publicar coleções de conjuntos de dados. Os utilizadores podem ter diferentes funções dentro de uma organização, dependendo do nível de autorização cedido para criar, editar e publicar." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3168,13 +3083,13 @@ msgstr "minha-organização" #: ckan/templates/organization/snippets/organization_form.html:20 msgid "A little information about my organization..." -msgstr "" +msgstr "Alguma informação sobre a minha organização ..." #: ckan/templates/organization/snippets/organization_form.html:60 msgid "" "Are you sure you want to delete this Organization? This will delete all the " "public and private datasets belonging to this organization." -msgstr "" +msgstr "Tem certeza de que deseja eliminar esta Organização? Irá apagar todos os conjuntos de dados públicos e privados pertencentes a esta organização." #: ckan/templates/organization/snippets/organization_form.html:64 msgid "Save Organization" @@ -3188,30 +3103,30 @@ msgstr "Ver {organization_name}" #: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 #: ckan/templates/package/snippets/new_package_breadcrumb.html:2 msgid "Create Dataset" -msgstr "" +msgstr "Criar Conjunto de Dados" #: ckan/templates/package/base_form_page.html:22 msgid "What are datasets?" -msgstr "" +msgstr "O que são conjuntos de dados?" #: ckan/templates/package/base_form_page.html:25 msgid "" " A CKAN Dataset is a collection of data resources (such as files), together " "with a description and other information, at a fixed URL. Datasets are what " "users see when searching for data. " -msgstr "" +msgstr "Um conjunto de dados CKAN é uma coleção de recursos de dados (como p.ex. ficheiros), juntamente com uma descrição, entre outras informações, num URL fixo. Os conjuntos de dados são os que os utilizadores vêem quando pesquisam por dados." #: ckan/templates/package/confirm_delete.html:11 msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" +msgstr "Tem a certeza que pretende eliminar o conjunto de dados - {name}?" #: ckan/templates/package/confirm_delete_resource.html:11 msgid "Are you sure you want to delete resource - {name}?" -msgstr "" +msgstr "Tem certeza de que deseja excluir recurso - {name}?" #: ckan/templates/package/edit_base.html:16 msgid "View dataset" -msgstr "" +msgstr "Ver conjunto de dados" #: ckan/templates/package/edit_base.html:20 msgid "Edit metadata" @@ -3222,23 +3137,22 @@ msgstr "Editar metadados" #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Editar vista" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 #: ckan/templates/package/snippets/resource_item.html:33 #: ckan/templates/snippets/datapreview_embed_dialog.html:16 msgid "Preview" -msgstr "" +msgstr "Prévisualização" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" -msgstr "" +msgstr "Atualizar" #: ckan/templates/package/group_list.html:14 msgid "Associate this group with this dataset" -msgstr "" +msgstr "Associar este grupo com este conjunto de dados " #: ckan/templates/package/group_list.html:14 msgid "Add to group" @@ -3246,15 +3160,15 @@ msgstr "Adicionar ao grupo" #: ckan/templates/package/group_list.html:23 msgid "There are no groups associated with this dataset" -msgstr "" +msgstr "Não existem grupos associados a este conjunto de dados" #: ckan/templates/package/new_package_form.html:15 msgid "Update Dataset" -msgstr "" +msgstr "Atualizar conjunto de dados" #: ckan/templates/package/new_resource.html:5 msgid "Add data to the dataset" -msgstr "" +msgstr "Adicionar dados ao conjunto de dados " #: ckan/templates/package/new_resource.html:11 #: ckan/templates/package/new_resource_not_draft.html:8 @@ -3275,7 +3189,7 @@ msgstr "Novo recurso" #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Adicionar vista" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3284,19 +3198,19 @@ msgid "" "href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-" "structured-data-the-data-explorer' target='_blank'>Data Explorer " "documentation. " -msgstr "" +msgstr "Vistas do tipo Data Explorer podem ser lentas e falíveis, a não ser que a extensão DataStore seja ativada. Para mais informação, consulte por favor a documentação do Data Explorer . " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" msgstr "Adicionar" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " "differ significantly from the current revision." -msgstr "" +msgstr "Esta é uma revisão antiga deste conjunto de dados, está tal como editado a %(timestamp)s. Pode divergir significativamente da revisão atual. " #: ckan/templates/package/related_list.html:7 msgid "Related Media for {dataset}" @@ -3304,15 +3218,15 @@ msgstr "" #: ckan/templates/package/related_list.html:12 msgid "No related items" -msgstr "" +msgstr "Não existe nenhum item relacionado." #: ckan/templates/package/related_list.html:17 msgid "Add Related Item" -msgstr "" +msgstr "Adicionar Item Relacionado" #: ckan/templates/package/resource_data.html:12 msgid "Upload to DataStore" -msgstr "" +msgstr "Carregar pata o DataStore" #: ckan/templates/package/resource_data.html:19 msgid "Upload error:" @@ -3323,30 +3237,34 @@ msgstr "Erro de envio:" msgid "Error:" msgstr "Erro:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Estado" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" -msgstr "Última atualização" +msgstr "Última Atualização" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Nunca" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Detalhes" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" -msgstr "" +msgstr "Terminar sessão" #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" @@ -3363,15 +3281,15 @@ msgstr "Editar recurso" #: ckan/templates/package/resource_edit_base.html:26 msgid "DataStore" -msgstr "" +msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Vistas" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" -msgstr "" +msgstr "Ponto de acesso à API" #: ckan/templates/package/resource_read.html:41 #: ckan/templates/package/snippets/resource_item.html:48 @@ -3390,28 +3308,28 @@ msgstr "URL:" #: ckan/templates/package/resource_read.html:69 msgid "From the dataset abstract" -msgstr "" +msgstr "Do resumo do conjunto de dados" #: ckan/templates/package/resource_read.html:71 #, python-format msgid "Source: %(dataset)s" -msgstr "" +msgstr "Fonte: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "Ainda não há vistas criadas para este recurso." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "Não está a ver as vistas que estava à espera?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +msgstr "Algumas razões pelas quais não está a ver as vistas esperadas: " #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "" +msgstr "Não foi criada nenhuma vista que seja adequada a este recurso" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" @@ -3426,14 +3344,14 @@ msgstr "" #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" -msgstr "" +msgstr "Informação adicional " #: ckan/templates/package/resource_read.html:151 #: ckan/templates/package/snippets/additional_info.html:6 #: ckan/templates/revision/diff.html:43 #: ckan/templates/snippets/additional_info.html:11 msgid "Field" -msgstr "" +msgstr "Campo" #: ckan/templates/package/resource_read.html:152 #: ckan/templates/package/snippets/additional_info.html:7 @@ -3448,9 +3366,9 @@ msgid "unknown" msgstr "desconhecido" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" -msgstr "Criado" +msgstr "Data de criação" #: ckan/templates/package/resource_read.html:165 #: ckan/templates/package/snippets/resource_form.html:37 @@ -3466,11 +3384,11 @@ msgstr "Licença" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "Nova vista" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "Este recurso não tem vistas" #: ckan/templates/package/resources.html:8 msgid "Add new resource" @@ -3482,11 +3400,15 @@ msgstr "Adicionar novo recurso" msgid "" "

This dataset has no data, why not " "add some?

" -msgstr "" +msgstr "

Este conjunto de dados não tem dados, não gostaria de acrescentar alguns?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" #: ckan/templates/package/search.html:53 msgid "API Docs" -msgstr "Dosumentos API" +msgstr "Documentos API" #: ckan/templates/package/search.html:55 msgid "full {format} dump" @@ -3497,26 +3419,26 @@ msgstr "" msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" +msgstr "Pode aceder a este registo usando %(api_link)s (ver %(api_doc_link)s) ou transferir em %(dump_link)s. " #: ckan/templates/package/search.html:60 #, python-format msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " -msgstr "" +msgstr "Pode aceder a este registo usando %(api_link)s (ver %(api_doc_link)s)." #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "Todas as vistas" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "Ver vista" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "Ver pré-visualização" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 @@ -3532,7 +3454,7 @@ msgstr "Fonte" #: ckan/templates/package/snippets/additional_info.html:42 #: ckan/templates/package/snippets/package_metadata_fields.html:20 msgid "Maintainer" -msgstr "" +msgstr "Gestor" #: ckan/templates/package/snippets/additional_info.html:49 #: ckan/templates/package/snippets/package_metadata_fields.html:10 @@ -3540,14 +3462,14 @@ msgid "Version" msgstr "Versão" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Estado" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "Última Atualização " #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" @@ -3555,50 +3477,49 @@ msgstr "Dados API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Título" #: ckan/templates/package/snippets/package_basic_fields.html:4 msgid "eg. A descriptive title" -msgstr "" +msgstr "p.ex. Um título descritivo. " #: ckan/templates/package/snippets/package_basic_fields.html:13 msgid "eg. my-dataset" -msgstr "" +msgstr "p.ex. O meu conjunto de dados" #: ckan/templates/package/snippets/package_basic_fields.html:19 msgid "eg. Some useful notes about the data" -msgstr "" +msgstr "p.ex. Algumas notas úteis sobre os dados" #: ckan/templates/package/snippets/package_basic_fields.html:24 msgid "eg. economy, mental health, government" -msgstr "" +msgstr "p.ex. economia, saúde mental, governo" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " -msgstr "" +msgstr "As definições das licenças e mais informações adicionais sobre as mesmas, podem ser encontradas em creativecommons.org e em opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organização" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Nenhuma organização" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Visibilidade" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Público" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Ativo" @@ -3609,15 +3530,15 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "" +msgstr "A licença escolhida acima só se aplica aos conteúdos de todos os ficheiros de recursos que se adicionem a este conjunto de dados. Ao submeter este formulário, está a concordar em ceder livremente os
metadados
que inseriu, sob a forma Open Database License ." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" -msgstr "" +msgstr "Tem a certeza que deseja eliminar este conjunto de dados?" #: ckan/templates/package/snippets/package_form.html:44 msgid "Next: Add Data" -msgstr "" +msgstr "Próximo: Adicionar Dados" #: ckan/templates/package/snippets/package_metadata_fields.html:6 msgid "http://example.com/dataset.json" @@ -3631,11 +3552,11 @@ msgstr "1.0" #: ckan/templates/package/snippets/package_metadata_fields.html:20 #: ckan/templates/user/new_user_form.html:6 msgid "Joe Bloggs" -msgstr "" +msgstr "Joel Martins" #: ckan/templates/package/snippets/package_metadata_fields.html:16 msgid "Author Email" -msgstr "" +msgstr "Email do Autor" #: ckan/templates/package/snippets/package_metadata_fields.html:16 #: ckan/templates/package/snippets/package_metadata_fields.html:22 @@ -3645,7 +3566,7 @@ msgstr "joe@example.com" #: ckan/templates/package/snippets/package_metadata_fields.html:22 msgid "Maintainer Email" -msgstr "" +msgstr "Email do Gestor" #: ckan/templates/package/snippets/resource_edit_form.html:12 msgid "Update Resource" @@ -3661,19 +3582,19 @@ msgstr "" #: ckan/templates/package/snippets/resource_form.html:32 msgid "Some useful notes about the data" -msgstr "" +msgstr "Algumas notas úteis sobre os dados" #: ckan/templates/package/snippets/resource_form.html:37 msgid "eg. CSV, XML or JSON" -msgstr "" +msgstr "p.ex. CSV, XML ou JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" +msgstr "Será inferido automaticamente. Deixe em branco se desejar" #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" -msgstr "" +msgstr "p.ex. 2012-06-05" #: ckan/templates/package/snippets/resource_form.html:53 msgid "File Size" @@ -3681,7 +3602,7 @@ msgstr "Tamanho do Ficheiro" #: ckan/templates/package/snippets/resource_form.html:53 msgid "eg. 1024" -msgstr "ex. 1024" +msgstr "p.ex. 1024" #: ckan/templates/package/snippets/resource_form.html:55 #: ckan/templates/package/snippets/resource_form.html:57 @@ -3695,7 +3616,7 @@ msgstr "ex. application/json" #: ckan/templates/package/snippets/resource_form.html:65 msgid "Are you sure you want to delete this resource?" -msgstr "" +msgstr "Tem certeza de que deseja excluir este recurso?" #: ckan/templates/package/snippets/resource_form.html:72 msgid "Previous" @@ -3703,7 +3624,7 @@ msgstr "Anterior" #: ckan/templates/package/snippets/resource_form.html:75 msgid "Save & add another" -msgstr "" +msgstr "Guardar & Adicionar" #: ckan/templates/package/snippets/resource_form.html:78 msgid "Finish" @@ -3711,31 +3632,31 @@ msgstr "Terminar" #: ckan/templates/package/snippets/resource_help.html:2 msgid "What's a resource?" -msgstr "" +msgstr "O que é um recurso?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." -msgstr "" +msgstr "Um recurso pode ser qualquer ficheiro ou a ligação a um ficheiro que contenham dados úteis." #: ckan/templates/package/snippets/resource_item.html:24 msgid "Explore" -msgstr "" +msgstr "Explorar" #: ckan/templates/package/snippets/resource_item.html:36 msgid "More information" -msgstr "" +msgstr "Mais informação" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" -msgstr "" +msgstr "Incorporar " #: ckan/templates/package/snippets/resource_view.html:24 msgid "This resource view is not available at the moment." -msgstr "" +msgstr "Esta vista de recurso não está disponível neste momento." #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "" +msgstr "Incorporar vista de recurso" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" @@ -3745,230 +3666,97 @@ msgstr "" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Largura" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Altura " #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" -msgstr "" +msgstr "Código" #: ckan/templates/package/snippets/resource_views_list.html:8 msgid "Resource Preview" -msgstr "" +msgstr "Pré-visualização de Recursos" #: ckan/templates/package/snippets/resources_list.html:13 msgid "Data and Resources" -msgstr "" +msgstr "Dados e Recursos" #: ckan/templates/package/snippets/resources_list.html:29 msgid "This dataset has no data" -msgstr "" +msgstr "Este conjunto de dados não tem dados " #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format msgid "Read dataset as of %s" -msgstr "" +msgstr "Leia o conjunto de dados a partir de %s" #: ckan/templates/package/snippets/stages.html:23 #: ckan/templates/package/snippets/stages.html:25 msgid "Create dataset" -msgstr "" +msgstr "Criar conjunto de dados" #: ckan/templates/package/snippets/stages.html:30 #: ckan/templates/package/snippets/stages.html:34 #: ckan/templates/package/snippets/stages.html:36 msgid "Add data" -msgstr "" +msgstr "Adicionar dados" #: ckan/templates/package/snippets/view_form.html:8 msgid "eg. My View" -msgstr "" +msgstr "p.ex. A Minha Vista" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "" +msgstr "p.ex. Informação sobre a minha vista" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "" +msgstr "Adicionar Filtro" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "Remover Filtro " #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" -msgstr "" +msgstr "Filtros" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "" +msgstr "O que é uma vista?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" +msgstr "Uma vista é uma representação dos dados realizada sobre um recurso" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "Diferenças" -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" msgstr "" -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "Diferença" -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "Não existem diferenças" -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "" +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "Histórico " #: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 msgid "Revisions" -msgstr "" +msgstr "Revisões" #: ckan/templates/revision/read.html:30 msgid "Undelete" @@ -3976,19 +3764,19 @@ msgstr "" #: ckan/templates/revision/read.html:64 msgid "Changes" -msgstr "" +msgstr "Alterar" #: ckan/templates/revision/read.html:74 msgid "Datasets' Tags" -msgstr "" +msgstr "Etiquetas Conjuntos de Dados " #: ckan/templates/revision/snippets/revisions_list.html:7 msgid "Entity" -msgstr "" +msgstr "Entidade" #: ckan/templates/snippets/activity_item.html:3 msgid "New activity item" -msgstr "" +msgstr "Novo item de atividade" #: ckan/templates/snippets/datapreview_embed_dialog.html:4 msgid "Embed Data Viewer" @@ -4000,15 +3788,15 @@ msgstr "" #: ckan/templates/snippets/datapreview_embed_dialog.html:10 msgid "Choose width and height in pixels:" -msgstr "" +msgstr "Escolha a largura e a altura em pixels:" #: ckan/templates/snippets/datapreview_embed_dialog.html:11 msgid "Width:" -msgstr "" +msgstr "Largura: " #: ckan/templates/snippets/datapreview_embed_dialog.html:13 msgid "Height:" -msgstr "" +msgstr "Altura:" #: ckan/templates/snippets/datapusher_status.html:8 msgid "Datapusher status: {status}." @@ -4020,39 +3808,38 @@ msgstr "" #: ckan/templates/snippets/facet_list.html:80 msgid "Show More {facet_type}" -msgstr "" +msgstr "Mostrar mais {facet_type}" #: ckan/templates/snippets/facet_list.html:83 msgid "Show Only Popular {facet_type}" -msgstr "" +msgstr "Mostrar apenas os/as {facet_type} mais populares" #: ckan/templates/snippets/facet_list.html:87 msgid "There are no {facet_type} that match this search" -msgstr "" +msgstr "Não existe nenhum {facet_type} que corresponda a esta pesquisa" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" -msgstr "" +msgstr "Página inicial" #: ckan/templates/snippets/language_selector.html:4 msgid "Language" -msgstr "" +msgstr "Idioma" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" -msgstr "" +msgstr "Ir" #: ckan/templates/snippets/license.html:14 msgid "No License Provided" -msgstr "" +msgstr "Sem licença" #: ckan/templates/snippets/license.html:28 msgid "This dataset satisfies the Open Definition." -msgstr "" +msgstr "Este conjunto de dados satisfaz os requisitos de Dados Abertos." #: ckan/templates/snippets/organization.html:48 msgid "There is no description for this organization" @@ -4060,225 +3847,216 @@ msgstr "Não existe nenhuma descrição para esta organização" #: ckan/templates/snippets/package_item.html:57 msgid "This dataset has no description" -msgstr "" +msgstr "Este conjunto de dados não tem nenhuma descrição" #: ckan/templates/snippets/related.html:15 msgid "" "No apps, ideas, news stories or images have been related to this dataset " "yet." -msgstr "" +msgstr "Não há nenhuma aplicação, ideia, notícia ou imagem que tenham sido relacionada a este conjunto de dados. " #: ckan/templates/snippets/related.html:18 msgid "Add Item" -msgstr "" +msgstr "Adicionar Item" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" -msgstr "" +msgstr "Submeter" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" -msgstr "" +msgstr "Ordenar por" + +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtrar Resultados" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" -msgstr "" +msgstr "

Por favor, tente um novo termo de pesquisa.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" -msgstr "" +msgstr "

Ocorreu um erro durante a pesquisa. Por favor, tente novamente.

" #: ckan/templates/snippets/search_result_text.html:15 msgid "{number} dataset found for \"{query}\"" msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} conjunto de dados encontrado para \"{query}\"" +msgstr[1] "{number} conjuntos de dados encontrados para \"{query}\"" #: ckan/templates/snippets/search_result_text.html:16 msgid "No datasets found for \"{query}\"" -msgstr "" +msgstr "Não foram encontrados conjuntos de dados para \"{query}\"" #: ckan/templates/snippets/search_result_text.html:17 msgid "{number} dataset found" msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} conjunto de dados encontrado" +msgstr[1] "{number} conjuntos de dados encontrados" #: ckan/templates/snippets/search_result_text.html:18 msgid "No datasets found" -msgstr "" +msgstr "Não foram encontrados conjuntos de dados" #: ckan/templates/snippets/search_result_text.html:21 msgid "{number} group found for \"{query}\"" msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} grupo encontrado para \"{query}\"" +msgstr[1] "{number} grupos encontrados para \"{query}\"" #: ckan/templates/snippets/search_result_text.html:22 msgid "No groups found for \"{query}\"" -msgstr "" +msgstr "Nenhum grupo encontrado para \"{query}\"" #: ckan/templates/snippets/search_result_text.html:23 msgid "{number} group found" msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} grupo encontrado " +msgstr[1] "{number} grupos encontrados" #: ckan/templates/snippets/search_result_text.html:24 msgid "No groups found" -msgstr "" +msgstr "Nenhum grupo encontrado" #: ckan/templates/snippets/search_result_text.html:27 msgid "{number} organization found for \"{query}\"" msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} organização encontrada para \"{query}\"" +msgstr[1] "{number} organizações encontradas para \"{query}\"" #: ckan/templates/snippets/search_result_text.html:28 msgid "No organizations found for \"{query}\"" -msgstr "" +msgstr "Não foram encontradas organizações para \"{query}\"" #: ckan/templates/snippets/search_result_text.html:29 msgid "{number} organization found" msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{number} organização encontrada" +msgstr[1] "{number} organizações encontradas" #: ckan/templates/snippets/search_result_text.html:30 msgid "No organizations found" -msgstr "" +msgstr "Nenhuma organização encontrada" #: ckan/templates/snippets/social.html:5 msgid "Social" -msgstr "" +msgstr "Social" #: ckan/templates/snippets/subscribe.html:2 msgid "Subscribe" -msgstr "" +msgstr "Subscrever" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" -msgstr "" +msgstr "Email" #: ckan/templates/snippets/subscribe.html:5 msgid "RSS" -msgstr "" +msgstr "RSS" #: ckan/templates/snippets/context/user.html:23 #: ckan/templates/user/read_base.html:57 msgid "Edits" -msgstr "" +msgstr "Editar" #: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" +msgstr "Pesquisar por Etiquetas" #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" -msgstr "" +msgstr "Notícias" #: ckan/templates/user/dashboard.html:20 #: ckan/templates/user/dashboard_datasets.html:12 msgid "My Datasets" -msgstr "" +msgstr "Os meus Conjuntos de Dados" #: ckan/templates/user/dashboard.html:21 #: ckan/templates/user/dashboard_organizations.html:12 msgid "My Organizations" -msgstr "" +msgstr "As minhas Organizações" #: ckan/templates/user/dashboard.html:22 #: ckan/templates/user/dashboard_groups.html:12 msgid "My Groups" -msgstr "" +msgstr "Os meus Grupos" #: ckan/templates/user/dashboard.html:39 msgid "Activity from items that I'm following" -msgstr "" +msgstr "Atividade dos itens que está a seguir" #: ckan/templates/user/dashboard_datasets.html:17 #: ckan/templates/user/read.html:14 msgid "You haven't created any datasets." -msgstr "" +msgstr "Ainda não criou nenhum conjunto de dados." #: ckan/templates/user/dashboard_datasets.html:19 #: ckan/templates/user/dashboard_groups.html:22 #: ckan/templates/user/dashboard_organizations.html:22 #: ckan/templates/user/read.html:16 msgid "Create one now?" -msgstr "" +msgstr "Criar um agora?" #: ckan/templates/user/dashboard_groups.html:20 msgid "You are not a member of any groups." -msgstr "" +msgstr "Não é membro de nenhum grupo." #: ckan/templates/user/dashboard_organizations.html:20 msgid "You are not a member of any organizations." -msgstr "" +msgstr "Não é membro de nenhuma organização." #: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 #: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 #: ckan/templates/user/snippets/user_search.html:2 msgid "Users" -msgstr "" +msgstr "Utilizadores " #: ckan/templates/user/edit.html:17 msgid "Account Info" -msgstr "" +msgstr "Informação sobre a conta" #: ckan/templates/user/edit.html:19 msgid "" " Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" +msgstr "O seu perfil permite que outros utilizadores CKAN saibam quem é e o que faz. " #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nome de utilizador" +msgstr "Alterar detalhes" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" -msgstr "" +msgstr "Nome completo" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" -msgstr "" +msgstr "p.ex. Joel Martins" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" -msgstr "" +msgstr "p.ex. joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" -msgstr "" +msgstr "Alguma informação sobre si" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" -msgstr "" +msgstr "Subscrever notificações por email" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" -msgstr "" +msgstr "Alterar palavra-passe" #: ckan/templates/user/edit_user_form.html:29 #: ckan/templates/user/logout_first.html:12 @@ -4286,269 +4064,281 @@ msgstr "" #: ckan/templates/user/perform_reset.html:20 #: ckan/templates/user/snippets/login_form.html:22 msgid "Password" -msgstr "" +msgstr "Palavra-passe" #: ckan/templates/user/edit_user_form.html:31 msgid "Confirm Password" -msgstr "" +msgstr "Confirmar Palavra-passe" #: ckan/templates/user/edit_user_form.html:37 msgid "Are you sure you want to delete this User?" -msgstr "" +msgstr "Tem a certeza que pretende eliminar este utilizador?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "Tem a certeza que pretende voltar a gerar a chave API?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Gerar nova Chave API" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" -msgstr "" +msgstr "Atualizar Perfil" #: ckan/templates/user/list.html:3 #: ckan/templates/user/snippets/user_search.html:11 msgid "All Users" -msgstr "" +msgstr "Todos os utilizadores " #: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 #: ckan/templates/user/login.html:12 #: ckan/templates/user/snippets/login_form.html:28 msgid "Login" -msgstr "" +msgstr "Iniciar sessão" #: ckan/templates/user/login.html:25 msgid "Need an Account?" -msgstr "" +msgstr "Precisa de uma Conta?" #: ckan/templates/user/login.html:27 msgid "Then sign right up, it only takes a minute." -msgstr "" +msgstr "Faça a sua inscrição correta e completa, leva apenas um minuto." #: ckan/templates/user/login.html:30 msgid "Create an Account" -msgstr "" +msgstr "Criar uma Conta" #: ckan/templates/user/login.html:42 msgid "Forgotten your password?" -msgstr "" +msgstr "Esqueceu a sua palavra-passe?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." -msgstr "" +msgstr "Não há problema, para redefinir a palavra-passe, use o formulário de recuperação de palavras-passe." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" -msgstr "" +msgstr "Esqueceu a sua palavra-passe?" #: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 msgid "Logged Out" -msgstr "" +msgstr "Sessão terminada" #: ckan/templates/user/logout.html:11 msgid "You are now logged out." -msgstr "" +msgstr "Acabou de terminar a sessão." #: ckan/templates/user/logout_first.html:9 msgid "You're already logged in as {user}." -msgstr "" +msgstr "Já iniciou a sessão como {user}." #: ckan/templates/user/logout_first.html:9 msgid "Logout" -msgstr "" +msgstr "Terminar sessão" #: ckan/templates/user/logout_first.html:13 #: ckan/templates/user/snippets/login_form.html:24 msgid "Remember me" -msgstr "" +msgstr "Memorizar" #: ckan/templates/user/logout_first.html:22 msgid "You're already logged in" -msgstr "" +msgstr "Já está com a sessão iniciada" #: ckan/templates/user/logout_first.html:24 msgid "You need to log out before you can log in with another account." -msgstr "" +msgstr "Precisa de terminar a sua sessão para poder iniciar uma sessão com uma conta diferente." #: ckan/templates/user/logout_first.html:25 msgid "Log out now" -msgstr "" +msgstr "Terminar sessão agora" #: ckan/templates/user/new.html:6 msgid "Registration" -msgstr "" +msgstr "Inscrição" #: ckan/templates/user/new.html:14 msgid "Register for an Account" -msgstr "" +msgstr "Registe-se para criar uma Conta" #: ckan/templates/user/new.html:26 msgid "Why Sign Up?" -msgstr "" +msgstr "Porquê inscrever-se?" #: ckan/templates/user/new.html:28 msgid "Create datasets, groups and other exciting things" -msgstr "" +msgstr "Crie conjuntos de dados, grupos, entre outras \"coisas\" interessantes" #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "nome de utilizador" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" -msgstr "" +msgstr "Nome completo" #: ckan/templates/user/new_user_form.html:17 msgid "Create Account" -msgstr "" +msgstr "Criar Conta" #: ckan/templates/user/perform_reset.html:4 #: ckan/templates/user/perform_reset.html:14 msgid "Reset Your Password" -msgstr "" +msgstr "Redefina a sua Palavra-passe" #: ckan/templates/user/perform_reset.html:7 msgid "Password Reset" -msgstr "" +msgstr "Palavra-passe redefinida" #: ckan/templates/user/perform_reset.html:24 msgid "Update Password" -msgstr "" +msgstr "Atualizar Palavra-passe" #: ckan/templates/user/perform_reset.html:38 #: ckan/templates/user/request_reset.html:32 msgid "How does this work?" -msgstr "" +msgstr "Como é que isto funciona?" #: ckan/templates/user/perform_reset.html:40 msgid "Simply enter a new password and we'll update your account" -msgstr "" +msgstr "Basta escrever uma nova palavra-passe que nós atualizaremos a sua conta" #: ckan/templates/user/read.html:21 msgid "User hasn't created any datasets." -msgstr "" +msgstr "O utilizador não criou nenhum conjunto de dados." #: ckan/templates/user/read_base.html:39 msgid "You have not provided a biography." -msgstr "" +msgstr "Não forneceu uma biografia." #: ckan/templates/user/read_base.html:41 msgid "This user has no biography." -msgstr "" +msgstr "Este utilizador não tem bibliografia." #: ckan/templates/user/read_base.html:73 msgid "Open ID" -msgstr "" +msgstr "Abrir ID" #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 msgid "This means only you can see this" -msgstr "" +msgstr "Isso significa que somente pode ver isto" #: ckan/templates/user/read_base.html:87 msgid "Member Since" -msgstr "" +msgstr "Membro desde" #: ckan/templates/user/read_base.html:96 msgid "API Key" -msgstr "" +msgstr "Chave API" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Palavra-passe redefinida" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Pedir redefinição" #: ckan/templates/user/request_reset.html:34 msgid "" "Enter your username into the box and we will send you an email with a link " "to enter a new password." -msgstr "" +msgstr "Escreva o seu nome de utilizador que nós lhe enviamos de seguida um email com um link de acesso, onde poderá inserir a sua nova palavra-passe." #: ckan/templates/user/snippets/followee_dropdown.html:14 #: ckan/templates/user/snippets/followee_dropdown.html:15 msgid "Activity from:" -msgstr "" +msgstr "Atividade de:" #: ckan/templates/user/snippets/followee_dropdown.html:23 msgid "Search list..." -msgstr "" +msgstr "Lista de pesquisa ... " #: ckan/templates/user/snippets/followee_dropdown.html:44 msgid "You are not following anything" -msgstr "" +msgstr "Não está a seguir nada" #: ckan/templates/user/snippets/followers.html:9 msgid "No followers" -msgstr "" +msgstr "Sem seguidores" #: ckan/templates/user/snippets/user_search.html:5 msgid "Search Users" -msgstr "" +msgstr "Pesquisar por utilizadores" #: ckanext/datapusher/helpers.py:19 msgid "Complete" -msgstr "" +msgstr "Completo " #: ckanext/datapusher/helpers.py:20 msgid "Pending" -msgstr "" +msgstr "Pendente" #: ckanext/datapusher/helpers.py:21 msgid "Submitting" -msgstr "" +msgstr "Submeter" #: ckanext/datapusher/helpers.py:27 msgid "Not Uploaded Yet" -msgstr "" +msgstr "Ainda não foi enviado" #: ckanext/datastore/controller.py:31 msgid "DataStore resource not found" -msgstr "" +msgstr "O recurso DataStore não foi encontrado" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "Os dados eram inválidos (por exemplo: um valor numérico está fora do intervalo ou foi inserido num campo de texto)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." -msgstr "" +msgstr "Recurso \"{0}\" não foi encontrado." #: ckanext/datastore/logic/auth.py:16 msgid "User {0} not authorized to update resource {1}" -msgstr "" +msgstr "Utilizador {0} não está autorizado a atualizar o recurso {1}" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conjuntos de dados por página" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testar Conflitos " #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "Campo personalizado Ascendente" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "Campo personalizado Descendente" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "Custom Text" -msgstr "" +msgstr "Personalizar texto" #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 msgid "custom text" -msgstr "" +msgstr "personalizar texto" #: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 msgid "Country Code" -msgstr "" +msgstr "Código do país" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" +msgstr "personalizar o texto do recurso" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" msgstr "" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 @@ -4558,74 +4348,34 @@ msgstr "Este grupo não tem nenhuma descrição" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "A ferramenta de pré-visualização dos dados CKAN é munida de poderosas funcionalidades." #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "Imagem URL" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +msgstr "p.ex. http://example.com/image.jpg (se estiver em branco use o URL do recurso)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "Tabela " -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Gráfico" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" +msgstr "Mapa" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4636,45 +4386,45 @@ msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "p.ex.: 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Número de linhas" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "p.ex.: 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Gráfico tipo" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Grupo (Axis 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Séries (Eixo 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "Campo Tipo" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" -msgstr "" +msgstr "Campo Latitude" #: ckanext/reclineview/theme/templates/recline_map_form.html:8 msgid "Longitude field" -msgstr "" +msgstr "Campo Longitude" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "Campo GeoJSON" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" @@ -4685,154 +4435,118 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" -msgstr "" +msgstr "Número total de conjuntos de dados" #: ckanext/stats/templates/ckanext/stats/index.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:40 msgid "Date" -msgstr "" +msgstr "Data" #: ckanext/stats/templates/ckanext/stats/index.html:18 msgid "Total datasets" -msgstr "" +msgstr "Total de conjuntos de dados" #: ckanext/stats/templates/ckanext/stats/index.html:33 #: ckanext/stats/templates/ckanext/stats/index.html:179 msgid "Dataset Revisions per Week" -msgstr "" +msgstr "As revisões, por semana, do conjunto de dados" #: ckanext/stats/templates/ckanext/stats/index.html:41 msgid "All dataset revisions" -msgstr "" +msgstr "Todas as revisões do conjunto de dados" #: ckanext/stats/templates/ckanext/stats/index.html:42 msgid "New datasets" -msgstr "" +msgstr "Novos conjuntos de dados" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" -msgstr "" +msgstr "Os conjuntos de dados mais votados" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" -msgstr "" +msgstr "Média das Classificações" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" -msgstr "" +msgstr "Número de classificações" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" -msgstr "" +msgstr "Sem classificação " #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" -msgstr "" +msgstr "Os conjuntos de dados mais editados" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" -msgstr "" +msgstr "Número de edições " #: ckanext/stats/templates/ckanext/stats/index.html:103 msgid "No edited datasets" -msgstr "" +msgstr "Não existem conjuntos de dados editados" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" -msgstr "" +msgstr "Os maiores grupos" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" -msgstr "" +msgstr "Número de conjuntos de dados" #: ckanext/stats/templates/ckanext/stats/index.html:127 msgid "No groups" -msgstr "" +msgstr "Não existem Grupos " #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" -msgstr "" +msgstr "As principais Etiquetas " #: ckanext/stats/templates/ckanext/stats/index.html:136 msgid "Tag Name" -msgstr "" +msgstr "Nome da Etiqueta" #: ckanext/stats/templates/ckanext/stats/index.html:137 #: ckanext/stats/templates/ckanext/stats/index.html:157 msgid "Number of Datasets" -msgstr "" +msgstr "Número de conjuntos de dados" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" -msgstr "" +msgstr "Menu Estatística " #: ckanext/stats/templates/ckanext/stats/index.html:178 msgid "Total Number of Datasets" -msgstr "" +msgstr "Número total de conjuntos de dados " -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Texto" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Página de internet" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "URL da página de internet" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "p.ex. http://example.com (se estiver em branco use o URL do recurso)" diff --git a/ckan/i18n/ro/LC_MESSAGES/ckan.mo b/ckan/i18n/ro/LC_MESSAGES/ckan.mo index a5061fdc0fe..b10526ead51 100644 Binary files a/ckan/i18n/ro/LC_MESSAGES/ckan.mo and b/ckan/i18n/ro/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ro/LC_MESSAGES/ckan.po b/ckan/i18n/ro/LC_MESSAGES/ckan.po index 2f9f8360299..6253ffd8bbc 100644 --- a/ckan/i18n/ro/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ro/LC_MESSAGES/ckan.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the ckan project. # # Translators: -# Adrià Mercader , 2013 +# Adrià Mercader , 2013,2015 # irina.tisacova , 2013 # Nicolaie Constantinescu , 2012 # opendataro , 2013 @@ -12,252 +12,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:21+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Romanian (http://www.transifex.com/projects/p/ckan/language/ro/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:21+0000\n" +"Last-Translator: dread \n" +"Language-Team: Romanian (http://www.transifex.com/okfn/ckan/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Funcția de autorizare nu există: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Administrator" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Redactor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Membru" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Este nevoie să fii administrator de sistem pentru a gestiona" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Titlul site-ului" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Stil" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Linia Etichetei Site-ului" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Logo-ul etichetei paginii" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Despre" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Despre pagina textului" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Text de introducere" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Textul de pe pagina de start" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "CSS personalizat" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "CSS personalizate introduse în antetul paginii" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Pagina principală" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Nu pot elimina pachetul %s deoarece revizuirea %s include pachete încă existente %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Sunt probleme la eliminarea revizuirii %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Eliminare completă" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Acțiune neimplementată" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Nu ești autorizat să vezi pagina aceasta" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Acces interzis" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "De negăsit" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Cerere incorectă" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Numele acțiunii nu este cunoscut: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Eroare JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Datele cererii incorecte: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Nu pot afișa intrări de acest tip: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Nu pot citi entități de acest tip: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Nu pot crea o nouă entitate de acest tip: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Nu pot adăuga pachetul la indexarea pentru căutare" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Nu pot actualiza o entitate de acest tip: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Incapabil de a actualiza indexul de căutare" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Nu pot șterge entitatea de acest tip: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Nu este specificată nicio revizie" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Nu există nicio revizie cu id-ul: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Termen de căutare lipsă ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Nu am putut citi parametrii: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Opțiune de căutare incorectă: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Registru necunoscut: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Valoare qjson formată eronat: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Parametrii ceruți trebuie să fie într-o formă din dicționarul de codare json." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Grupul nu a fost găsit" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "TIpul grupului este greşit" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Neautorizat pentru a citi grupul %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -268,23 +268,23 @@ msgstr "Neautorizat pentru a citi grupul %s" msgid "Organizations" msgstr "Organizații" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupuri" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -292,394 +292,303 @@ msgstr "Grupuri" msgid "Tags" msgstr "Cuvinte cheie" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formate" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licenţe" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Nu sunteți autorizat să efectuați actualizarea în masă" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Neautorizat pentru a crea un grup" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Utilizatorul %r nu este autorizat să editeze %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Eroare de integritate" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Utilizatorul %r nu este autorizat să editeze autorizările %s " -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Nu sunteți autorizat să ștergeți grupul %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organizația a fost ștearsă." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Grupul a fost șters." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Nu sunteți autorizat să adăugați membri la grupul %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Nu sunteți autorizat să ștergeți membrii din grupul %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Membrul de grup a fost șters." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Selectează două revizii înainte de a face comparații." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Utilizatorul %r nu este autorizat să editeze %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Istoricul Reviziilor de Grup al CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Modificări recente ale Grupului CKAN: " -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Mesaj din jurnalier: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Nu sunteți autorizat să citiți grupul {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Acum urmăriți {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Nu mai urmăriți {0}." -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Nu sunteți autorizat să vizualizați follower-ii %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Acest site este momentan off-line. Nu este inițializată baza de date." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Vă rog actualizaţi profilul dumneavoastră şi adăugaţi e-mail-ul dumneavoastră şi numele deplin. {site} foloseşte email-ul dumneavoastră în caz că aveţi nevoie să resetaţi parola" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Vă rog Actualizați profilul și indicați adresa de e-mail." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s va utiliza adresa Dvs. e-mail pentru a vă reseta parola." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Vă rog Actualizați profilul și indicați numele complet." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Parametrul \"{parameter_name}\" nu este un număr întreg" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Baza de date nu a fost găsită" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Nu sunteți autorizat să citiți pachetul %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Format de revizuire nevalabil: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Istoricul revizuirilor seturilor de date CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Schimbări recente la setul de date CKAN" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Nu sunteți autorizat pentru a crea un pachet" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Nu sunteți autorizat să editați această resursă" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Resursa nu a fost găsită" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Nu sunteți autorizat să actualizați setul de date" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Setul de date {id} nu a fost găsit" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Trebuie să adăugați cel puțin o resursă de date" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Eroare" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Nu sunteți autorizat să creați o resursă" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Nu pot adăuga pachetul la indexarea pentru căutare" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Incapabil de a actualiza indexul de căutare" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Setul de date a fost șters." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Nu sunteți autorizat să ștergeți pachetul %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Setul de date a fost șters." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Resursa a fost ștearsă." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Nu sunteți autorizat să ștergeți resursa %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Neautorizat pentru a citi setul de date %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Neautorizat pentru a citi resursa %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Resursa nu a fost găsită" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Nu este disponibil nici o descărcare" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Previzualizarea nu a fost definită." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Cel mai vizualizat" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Cel mai vizualizat" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Cel mai puțin vizualizat" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Cele mai noi" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Cele mai vechi" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Articolul corespunzător solicitat nu a fost găsit" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Articolul corespunzător nu a fost găsit" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Neautorizat" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Pachetul nu a fost găsit" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Articolul relevant a fost creat cu succes" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Articolul relevant a fost actualizat cu succes " - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Articolul relevant a fost șters." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Nu sunteți autorizat să ștergeți articolul relevant %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Aplicație" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idee" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Articol de știri" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Hârtie" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Post" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Vizualizare" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Istoricul revizuirilor repozitoriului CKAN" @@ -705,10 +614,10 @@ msgstr "Alta" msgid "Tag not found" msgstr "Eticheta nu a fost găsită" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Utilizatorul nu a fost găsit" @@ -728,13 +637,13 @@ msgstr "Nu eşti autorizat să ştergi utilizatorul cu id-ul \"{user_id}\"." msgid "No user specified" msgstr "Utilizatorul nu a fost specificat" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Nu sunteți autorizat să editați utilizatorul %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil actualizat" @@ -758,75 +667,87 @@ msgstr "Utilizatorul \"%s\" este acum înregistrat, dar dumneavoastră sunteţi msgid "Unauthorized to edit a user." msgstr "Nu sunteți autorizat să editați utilizatorul." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Utilizatorul %s nu ste autorizat să editeze %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Autentificarea a eșuat. Nume de utilizator sau parolă greșită." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Nu sunteți autorizat șă solicitați resetarea parolei." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" coincide cu mai mulți utilizatori" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Nu există utilizatorul %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Verificați inbox-ul pentru codul de resetare" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Nu am putut transmite link-ul de resetare: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Nu sunteți autorizat să resetați parola." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Cheia de resetare nu este valabilă. Mai incercați." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Parola a fost resetată." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Parola trebuie să conțină cel puțin 4 caractere." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Parolele introduse nu coincid." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Trebuie să introduceți parola" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Articolul urmărit nu a fost găsit" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} nu a fost găsit" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Nu sunteți autorizat să citiți {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Totul" @@ -948,7 +869,7 @@ msgstr "{actor} a adăugat {related_type} {related_item} la setul de date {datas msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} a adăugat {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -956,11 +877,11 @@ msgid "View" msgstr "" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] " o nouă activitate din {site_title}" -msgstr[1] "cîteva activităţi din {site_title}" -msgstr[2] "{n} noi activităţi din {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1010,141 +931,141 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Chiar acum" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" -msgstr[0] "un minut în urmâ" -msgstr[1] "cîteva minute în urmă" +msgstr[0] "{mins} minut în urmâ" +msgstr[1] "{mins} minute în urmă" msgstr[2] "{mins} minute în urmă" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" -msgstr[0] "o oră în urmă" -msgstr[1] "cîteva ore în urmă" +msgstr[0] "{hours} oră în urmă" +msgstr[1] "{hours} ore în urmă" msgstr[2] "{hours} ore în urmă" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} o zi în urmă" msgstr[1] "{days} cîteva zile în urmă" msgstr[2] "{days} zile în urmă" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} lună în urmă" msgstr[1] "{months} luni în urmă" msgstr[2] "{months} luni în urmă" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Actualizați avatarul la gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Necunoscut" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Resursă fără denumire" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Set de date nou creat." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Resurse editate." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Setări editate." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" -msgstr[0] "nici o vizualizare" +msgstr[0] "{number} vizualizare" msgstr[1] "{number} vizualizări" msgstr[2] "{number} vizualizări" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} vizualizare recentă" @@ -1176,7 +1097,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1201,7 +1122,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Lipsește valoarea" @@ -1214,7 +1135,7 @@ msgstr "Câmpul de intrare %(name)s nu a fost aşteptat" msgid "Please enter an integer value" msgstr "Introduceți o valoare intreagă" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1224,11 +1145,11 @@ msgstr "Introduceți o valoare intreagă" msgid "Resources" msgstr "Resurse" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Pachetul de resurs(e) nevalabil" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Extras" @@ -1238,25 +1159,22 @@ msgstr "Extras" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Vocabularul de etichete \"%s\" nu există" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Utilizator" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Set de date" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grup" @@ -1268,378 +1186,369 @@ msgstr "" msgid "A organization must be supplied" msgstr "Trebuie să indicați organizația" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organizația nu ezistă" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Nu puteți să adăugați un set de date la această organizație" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Unitate nevalabilă" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Data formatată incorect" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Nici un link nu este permis în mesajul de conectare" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Resursă" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Înrudit" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Acest grup sau ID nu există." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Tip de activitate" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Acest nume nu poate fi utilizat" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Numele trebuie să conțină maximum %i caractere" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Acest URL este deja utilizat." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Lungimea numelui \"%s\" este mai mică decît minimul necesar %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Lungimea numelui \"%s\" este mai mare decît maximul necesar %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Versiunea trebuie să conțină maximum %i caractere" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Cheie duplicat \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Această denumire de grup deja există în baza de date" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Lungimea etichetei \"%s\" este mai mică decît minimul necesar %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Lungimea etichetei \"%s\" este mai mare decît maximul necesar %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Eticheta \"%s\" trebuie să conţină caractere alfanumerice sau simboluri: -_. " -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Eticheta \"%s\" nu trebuie să fie majusculă" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Acest nume de utilizator nu este disponibil." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Indicați ambele parole" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Parola trebuie să conțină cel puțin 4 caractere" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Parolele introduse nu se potrivesc" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Editarea nu este permisă, fiind privită ca spam. Vă rugăm să evitați link-uri în descriere." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Numele trebuie să conțină cel puțin %s caractere" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Acest vocabular de nume este deja în uz." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Nu se poate modifica valoarea cheie de la %s spre %s. Această cheie este doar pentru citire" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Vocabularul de etichete nu a fost găsit" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Eticheta %s nu aparţine vocabularului %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Nici un nume de etichetă" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Eticheta %s deja aparţine vocabularului %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Indicați un URL valabil" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "rolul nu există." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Seturi de date fără organizaţii nu pot fi private" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Nu o listă" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Nu un șir" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Crează obiectul %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Crează relaţia pachet: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Crează obiectul membru %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Încercarea de a crea o organizație ca un grup" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Trebuie să furnizaţi un id de pachet sau nume (parametrul ''package'')." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Trebuie să furnizaţi un rating ( parametrul ''rating'')." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Rating trebuie să fie o valoare întreagă" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Rating trebuie să fie între %i și %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Trebuie să fiți conectat pentru a urmări utilizatorii" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Nu puteți să vă urmăriți" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Deja urmăriți {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Trebuie să fiți conectat pentru a urmări un set de date." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Utilizatorul {username} nu există." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Trebuie să fiți conectat pentru a urmări un grup." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Șterge pachetul: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Șterge %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Șterge Membrul: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id-ul nu se regăseşte în date" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Nu a putut fi găsit în vocabular \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Nu a putut fi găsit cuvîntul cheie \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Trebuie să fiţi conectat pentru a anula urmărirea." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Nu urmăriți {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Resursa nu a fost găsită." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Nu specificaţi dacă utilizaţi parametrul de ''interogare''" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Trebuie să fie : pereche(i)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Cîmpul \"{field}\" nu este recunoscut în resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "utilizator necunoscut:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Elementul nu a fost găsit" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Pachetul nu a fost găsit." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Actualizaţi obiectul %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Actualizaţi relaţia pachet: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "Starea sarcină nu a fost găsită." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organizația nu a fost găsită." @@ -1670,7 +1579,7 @@ msgstr "Trebuie să fiți autentificat pentru a adăuga un articol asociat" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Nici un pachet nu a fost găsit pentru această resursă, imposibil de verificat autentificarea." @@ -1680,94 +1589,98 @@ msgstr "Nici un pachet nu a fost găsit pentru această resursă, imposibil de v msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Utilizatorul %s nu este autorizat să editeze aceste pachete" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Utilizatorul %s nu este autorizat să creeze grupuri" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Utilizatorul %s nu este autorizat să creeze organizații" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Grupul nu a fost găsit." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Se cere o cheie API valabilă pentru a crea un pachet" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Se cere o cheie API valabilă pentru a crea un grup" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Utilizatorul %s nu este autorizat să adauge membri" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Utilizatorul %s nu ste autorizat să editeze grupul %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Utilizatorul %s nu este autorizat să șteargă resursa %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Numai proprietarul poate să șteargă un articol asociat" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Utilizatorul %s nu este autorizat să șteargă relația %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Utilizatorul %s nu este autorizat să șteargă grupuri" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Utilizatorul %s nu este autorizat să șteargă grupul %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Utilizatorul %s nu este autorizat să șteargă organizații" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Utilizatorul %s nu este autorizat să șteargă organizația %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Utilizatorul %s nu este autorizat să șteargă starea sarcinii" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Neautorizat" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1788,7 +1701,7 @@ msgstr "Utilizatorul %s nu este autorizat să citească %s" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Trebuie să fiți conectat pentru a accesa panoul de bord" @@ -1866,63 +1779,63 @@ msgstr "Se cere o cheie API valabilă pentru a edita un pachet" msgid "Valid API key needed to edit a group" msgstr "Se cere o cheie API valabilă pentru a edita un grup" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Altă (Deschisă)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Altă (Domeniu Public)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Altă (Atribuire)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Altă (Ne comercială)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Altă (Nu este Deschisă)" @@ -2029,8 +1942,6 @@ msgstr "Confirm" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Anulare" @@ -2055,12 +1966,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Imagine" @@ -2133,7 +2045,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2147,7 +2058,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Editează" @@ -2186,11 +2096,11 @@ msgstr "Alimentat de Site Title: This is the title of this CKAN instance It " @@ -2365,7 +2280,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Crează" @@ -2517,7 +2431,7 @@ msgstr "Selectează" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2550,8 +2464,6 @@ msgstr "Adaugă o Formă" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Confirmă Ștergerea" @@ -2569,7 +2481,7 @@ msgstr "Sunteți sigur că doriți să ștergeți membrul - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2714,14 +2626,12 @@ msgstr "Sunteți sigur că doriți să ștergeți acest membru?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Șterge" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Salvează" @@ -2809,7 +2719,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Descriere" @@ -2871,7 +2780,7 @@ msgstr "Compară" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2971,38 +2880,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "set de date" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "seturi de date" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3020,7 +2921,6 @@ msgid "Custom" msgstr "" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "" @@ -3033,7 +2933,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL-ul Imaginii" @@ -3078,7 +2977,7 @@ msgstr "Proiect" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3112,6 +3011,20 @@ msgstr "Caută organizații..." msgid "There are currently no organizations for this site" msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nume de utilizator" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3246,7 +3159,6 @@ msgid "Preview" msgstr "" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Actualizare" @@ -3305,7 +3217,7 @@ msgstr "" msgid "Add" msgstr "Adaugă" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3337,28 +3249,32 @@ msgstr "" msgid "Error:" msgstr "Eroare:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Ultima actualizare" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3462,7 +3378,7 @@ msgid "unknown" msgstr "" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Creat" @@ -3498,6 +3414,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Documente API" @@ -3554,7 +3474,7 @@ msgid "Version" msgstr "Versiune" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "" @@ -3569,7 +3489,6 @@ msgstr "Date API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Titlu" @@ -3589,30 +3508,30 @@ msgstr "eg. Cîteva notițe utile despre date" msgid "eg. economy, mental health, government" msgstr "eg. economie, guvern, sănătate publică" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organizație" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Public" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3739,7 +3658,7 @@ msgstr "" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "" @@ -3825,139 +3744,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Aplicații și Idei" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Ce sunt aplicații?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Acestea sunt aplicații dezvoltate cu seturi de date, precum și idei pentru lucrurile care pot fi realizate cu ele." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filtrează Rezultatele" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "FIltrează după tip" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Toate" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Sortează după" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Aplică" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Editează articolul asociat" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Tip" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -4045,7 +3831,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Home" @@ -4054,7 +3839,7 @@ msgid "Language" msgstr "Limba" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4086,21 +3871,25 @@ msgstr "" msgid "Add Item" msgstr "Adaugă Articol" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Transmite" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtrează Rezultatele" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4181,7 +3970,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4200,10 +3989,6 @@ msgstr "" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Tablou de bord" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4267,36 +4052,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Nume de utilizator" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "ex. joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4529,15 +4305,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4545,6 +4321,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4571,6 +4355,10 @@ msgstr "Prefixul Țării" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4588,64 +4376,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4705,7 +4453,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Numărul total de seturi de date" @@ -4733,33 +4480,27 @@ msgstr "Seturi de date noi" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Cele mai apreciate" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Cele mai editate seturi de date" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Numărul de editări" @@ -4769,12 +4510,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Numărul seturilor de date" @@ -4784,7 +4523,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Top Cuvinte Cheie" @@ -4799,7 +4537,7 @@ msgstr "Numărul seturilor de date" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 @@ -4810,42 +4548,16 @@ msgstr "Meniu Statistică" msgid "Total Number of Datasets" msgstr "Număr Total de Seturi de Date" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistici" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Revizii ale seturilor de date per săptămână" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Ultima actualizare a paginii:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Clasament - Statistici" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Clasamentul Seturilor de Date" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/ru/LC_MESSAGES/ckan.mo b/ckan/i18n/ru/LC_MESSAGES/ckan.mo index 7c653f685d1..1efa6b7d38e 100644 Binary files a/ckan/i18n/ru/LC_MESSAGES/ckan.mo and b/ckan/i18n/ru/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/ru/LC_MESSAGES/ckan.po b/ckan/i18n/ru/LC_MESSAGES/ckan.po index 7e7888b819c..937cd3deb26 100644 --- a/ckan/i18n/ru/LC_MESSAGES/ckan.po +++ b/ckan/i18n/ru/LC_MESSAGES/ckan.po @@ -3,260 +3,262 @@ # This file is distributed under the same license as the ckan project. # # Translators: +# Dmitry Oshkalo , 2015 # Gromislav , 2013 # ivbeg , 2013 # mih, 2015 # Sean Hammond , 2012 +# Sergey Motornyuk , 2015 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-29 13:39+0000\n" -"Last-Translator: mih\n" -"Language-Team: Russian (http://www.transifex.com/projects/p/ckan/language/ru/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:20+0000\n" +"Last-Translator: dread \n" +"Language-Team: Russian (http://www.transifex.com/okfn/ckan/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Функция авторизации не найдена: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Админ" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Редактор" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Участник" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Для этого действия необходимы права администратора." -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Заголовок сайта" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Стиль" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Линия тэгов сайта" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Логотип тэга сайта" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "О проекте" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Текст страницы о проекте" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Вводный Текст" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Текст на главной странице" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Произвольное CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Настраиваемый CSS код внесен в заголовок страницы" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" -msgstr "" +msgstr "Домашняя страница" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Невозможно удалить пакет %s так как вовремя проверки %s были найдены неудаленные пакеты %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "При удалении редакции %s возникла проблема %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Очищение заверншено" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Действие не вступило в силу" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Недостаточно прав для просмотра этой страницы" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Отказано в доступе" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Не найдено" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Неверный запрос" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Неизвестное имя действия: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Ошибка JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Неверные данные запроса: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Невозможно упорядочить объект этого типа: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Невозможно прочитать объект этого типа: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Невозможно задать такое имя: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Невозможно добавить пакет в поисковый индекс" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Невозможно обновить объект такого типа: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Невозможно обновить поисковый индекс" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Невозможно удалить объект такого типа: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Проверка не указана" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Версии с идентификатором %s не существует" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Потерян поисковый термин ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Невозможно прочитать параметры: %r " -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Неверный параметр поиска: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Неизвестный регистр: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Ошибочное значение qjson: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Параметры запроса должны содержаться в словаре формата json." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Группа не найдена" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Организация не найдена" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" -msgstr "" +msgstr "Неправильный тип группы" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Недостаточно прав для чтения группы %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -267,23 +269,23 @@ msgstr "Недостаточно прав для чтения группы %s" msgid "Organizations" msgstr "Организации" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Группы" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -291,394 +293,303 @@ msgstr "Группы" msgid "Tags" msgstr "Теги" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Форматы" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Неавторизованы на массовое обновление" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Недостаточно прав для создания группы" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Пользователь %r не имеет достаточно прав для редактирования %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Ошибка целостности" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Пользователь %r не имеет достаточно прав для редактирования прав пользователя %s " -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Недостаточно прав чтобы удалить группу %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Организация была удалена." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Группа была удалена" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Недостаточно прав для добавления участника в группу %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Недостаточно прав для удаления участников группы %s " -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Участник группы был удален." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Выберите две версии перед сравнением" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "У пользователя %r недостаточно прав для редактирования %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "История прежних версий группы" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Последние изменения в группе CKAN:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Запись в лог" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Недостаточно прав для чтения группы {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Теперь вы следуете за {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Вы более не следуете за {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Недостаточно прав для просмотра следующих %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Этот сайт сейчас находится в режиме оффлайн. База данных не инициализирована." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Пожалуйста обновите Ваш профиль и добавьте Ваш email адрес и ФИО. Сайт использует and add your email address and your full name. {site} использует Ваш email адрес если Вам необходимо сбросить Ваш пароль." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Пожалуйста обновите свой профайл и добавьте свой электронный адрес." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s использует Ваш email, если Вам необходимо сбросить свой пароль " -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Пожалуйста обновите Ваш профиль и добавьте ФИО." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +msgstr "Параметр \"{parameter_name}\" не является целым числом" + +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Пакет данных не найден" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Недостаточно прав для просмотра пакета %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Неверный формат проверки: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "История редакций CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Последние изменения в пакете CKAN" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Недостаточно прав для создания пакета" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Недостаточно прав для редактирования данного ресурса" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Файлы не найдены" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Недостаточно прав для обновления массива данных" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Массив данных {id} не найден." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Вы должны добавить хотя бы один ресурс" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Ошибка" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Недостаточно прав для создания ресурса" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Невозможно добавить пакет в поисковый индекс." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Невозможно обновить поисковый индекс." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Массив был удалён." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Недостаточно прав для удаления пакета %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Массив был удалён." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Ресурс был удален." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Недостаточно прав для удаления ресурса %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Недостаточно прав для чтения массива данных %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Недостаточно прав для просмотра файлов %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Недоступна выгрузка" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Предпросмотр не определен." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Наиболее просматриваемые" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Наиболее просматриваемые" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Наименее просматриваемые" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Новейшие" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Старейшие" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Запрошенный связанный предмет не найден" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Связанный предмет не найден" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Не авторизован" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Пакет не найден" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Связанный предмет успешно создан" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Связанный пункт успешно обновлен" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Связанный пункт был удален" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Недостаточно прав для удаления связанного предмета %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Приложение" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Идея" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Новостная статья" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Бумага" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Пост" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Визуализация" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "История прежних версий базы CKAN" @@ -704,10 +615,10 @@ msgstr "Другое" msgid "Tag not found" msgstr "Тэг не найден" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Ползователь не найден" @@ -727,13 +638,13 @@ msgstr "" msgid "No user specified" msgstr "Пользователь не указан" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Недостаточно прав для измениния пользователя %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Данные обновлены" @@ -757,75 +668,87 @@ msgstr "Пользователь \"%s\" зарегистрирован, но в msgid "Unauthorized to edit a user." msgstr "Нет прав редактировать пользователя." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Пользователь %s не имеет право редактировать %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Старый пароль" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "некорректный пароль" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Войти не удалось. Неправильный логин или пароль" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Нет прав на запрос о сбросе пароля." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" соответствует нескольким пользователям" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Пользователя:%s нет" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Пожалуйста проверьте ваши входящие на наличие кода восстановления." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Не удалось отослать ссылку на восстановление:%s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Нет прав на сброс пароля." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Неправильный код восстановления. Попробуйте снова." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Ваш пароль был восстановлен." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Пароль должен содержать минимум 4 символа" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Введенные пароли не совпадают" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Вы должны ввести пароль" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "сопровождающий элемент не был найден" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} не найдено" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Недостаточно прав для чтения {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Все" @@ -947,7 +870,7 @@ msgstr "{actor} добавил {related_type} {related_item} к массиву msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} добавил {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -955,11 +878,12 @@ msgid "View" msgstr "Посмотреть" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{n} новая активность от {site_title}" -msgstr[1] "{n} новая активность от {site_title}" -msgstr[2] "{n} новая активность от {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1009,146 +933,153 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Только что" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} минуту спустя" msgstr[1] "{mins} минут спустя" msgstr[2] "{mins} минут спустя" +msgstr[3] "{mins} минут спустя" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} час назад" msgstr[1] "{hours} часа назад" msgstr[2] "{hours} часов назад" +msgstr[3] "{hours} часов назад" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} день назад" msgstr[1] "{days} дней назад" msgstr[2] "{days} дней назад" +msgstr[3] "{days} дней назад" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "{months} месяц назад" +msgstr[1] "{months} месяцев назад" +msgstr[2] "{months} месяцев назад" +msgstr[3] "{months} месяцев назад" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" +msgstr[3] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Обновите свой аватар на gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Неизвестный" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Безымянный ресурс" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Создать новый пакет данных." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Отредактированные ресурсы." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Отредактированные настройки." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} просмотр" msgstr[1] "{number} просмотры" msgstr[2] "{number} просмотры" +msgstr[3] "{number} просмотры" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} последние просмотр" msgstr[1] "{number} последние просмотры" msgstr[2] "{number} последние просмотры" +msgstr[3] "{number} последние просмотры" #: ckan/lib/mailer.py:25 #, python-format @@ -1175,7 +1106,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1200,7 +1131,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Отсутствующая величина" @@ -1213,7 +1144,7 @@ msgstr "Веденное поле %(name)s не было ожидаемо." msgid "Please enter an integer value" msgstr "Пожалуйста, введите целое число" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1223,11 +1154,11 @@ msgstr "Пожалуйста, введите целое число" msgid "Resources" msgstr "Ресурсы" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Внешние ресурс(ы) данных недействительны" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Дополнения" @@ -1237,25 +1168,22 @@ msgstr "Дополнения" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Тег словаря \"%s\" не существует" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Пользователь" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Набор данных" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Группа" @@ -1267,378 +1195,369 @@ msgstr "" msgid "A organization must be supplied" msgstr "Организации должны быть поставлены" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Организация не существует" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Вы не можете добавить пакет данных в эту организацию" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Неверное число" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" -msgstr "" +msgstr "Должно быть натуральным числом" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" -msgstr "" +msgstr "Должно быть положительным целым числом" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Формат даты указан неверно" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Гиперссылки в log_message запрещены." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "Набор данных с таким идентификатором уже существует" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Ресурсы" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Связанное" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Это имя группы или ID не существует." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Тип процесса" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Это имя не может быть использовано" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Длина слова должна быть не менее %s символов" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Имя должно содержать максимум %i символов" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Этот URL уже используется" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Длина названия \"%s\" меньше чем минимальная %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Имя \"%s\" короче максимального значения %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Версия должна содержать максимум %i символов" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Создать дубль ключа \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Группа с таким названием уже существует" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Тег \"%s\" короче минимального значения %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Тег \"%s\" короче максимального значения %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Тег \"%s\" должен содержать числа, буквы или такие символы: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Тег \"%s\" должен содержать только строчные буквы" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Это имя пользователя уже используется" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Пожалуйста укажите оба пароля." -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Ваш пароль должен быть длиной не менее 4 символов" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Пароли не совпадают" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Редактирование запрещено, т.к. текст выглядит, как спам. Избегайте гиперссылок в описании, пжл." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Имя должно состоять как минимум из %s букв." -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Это название словаря уже используется." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Невозможно изменить значение ключа %s на %s. Ключ доступен только для чтения" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Тег словаря не был найден" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Тег %s не относится к словарю %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Нет имени тега" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Tag %s уже добавлен в словарь %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Укажите действительный URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "Роль не существует." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Массивы без организации не могут быть частными." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Не список" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Не строка" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Создать объект %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Связать пакеты: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Создать объект-звено %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Попытка создать организацию как группу" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Введите идентификатор пакета или имя (параметр \"пакет\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Задайте рейтинг (параметр \"рейтинг\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Значение рейтинга должно быть целым числом." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Значение рейтинга должно быть в пределах %i и %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Вы должны быть авторизованы, чтобы следить за пользователями " -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Вы не можете следить за пользователем" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Вы уже следуете за {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Вы должны быть авторизованы, чтобы следить за пакетом данных" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Пользователь {username} не существует." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Вы должны быть авторизованы, чтобы следить за группой " -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: удалить пакет: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: удалить %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Удалить Участника: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id нет в данных" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Нельзя найти словарь \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Нельзя найти тег \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Вы должны быть авторизованы, чтобы отписаться от чего-либо." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Вы не следите {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Источник не был найден." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Не определяйте, если используете \"query\" параметр" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Должно быть : пар(ы)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Поле \"{field}\" не отображается в поисковике ресурсов." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "неизвестный пользователь:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Элемент не найден." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Пакет не найден" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Обновить объект %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: обновить связь пакетов: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus не найден" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Организация не найдена." @@ -1669,7 +1588,7 @@ msgstr "Вы должны быть авторизованы для того, ч msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Для этого ресурса не найдено пакетов. Невозможно проверить подлинность." @@ -1679,94 +1598,98 @@ msgstr "Для этого ресурса не найдено пакетов. Н msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Пользователь %s не имеет достаточно прав для редактирования этих пакетов данных" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Пользователь %s не имеет достаточно прав для создания группы" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Пользователь %s не имеет прав для создания организаций" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Группа не найдена" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Необходим действующий ключ API для создания пакета данных" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Для создания группы необходим действующий ключ API" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Пользователь %s не имеет прав для добавления участников " -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Пользователь %s не имеет прав для редактирования группы %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Пользователь %s не имеет прав для удаления ресурса %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Только владелец может удалить этот элемент" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Пользователь %s не имеет прав для удаления связи %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Пользователь %s не имеет прав для удаления групп" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Пользователь %s не имеет прав для удаления группы %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Пользователь %s не имеет прав для удаления организаций" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Пользователь %s не имеет прав для удаления организации %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Пользователь %s не имеет прав для удаления task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Не авторизован" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1787,7 +1710,7 @@ msgstr "Пользователь %s не имеет прав для чтения msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Вы должны авторизоваться для доступа к панели управления" @@ -1865,63 +1788,63 @@ msgstr "Для редактирования пакета необходим де msgid "Valid API key needed to edit a group" msgstr "Для редактирования группы необходим действующий API-ключ" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Другие (Open)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Другие (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Другие (Attribution)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Другие (Non-Commercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Другие (Not Open)" @@ -2028,8 +1951,6 @@ msgstr "Потверждение" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Отменить" @@ -2054,12 +1975,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Удалить" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Картинка" @@ -2091,7 +2013,7 @@ msgstr "" #: ckan/public/base/javascript/modules/resource-reorder.js:10 #: ckan/public/base/javascript/modules/resource-view-reorder.js:10 msgid "Saving..." -msgstr "" +msgstr "Сохранение..." #: ckan/public/base/javascript/modules/resource-upload-field.js:25 msgid "Upload a file" @@ -2132,7 +2054,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2146,7 +2067,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Редактировать" @@ -2185,35 +2105,44 @@ msgstr "Создано Site Title: This is the title of this CKAN instance It " @@ -2364,7 +2290,6 @@ msgid "" msgstr "Data API может использоваться через следующие действия в API действий CKAN." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Создать" @@ -2516,7 +2441,7 @@ msgstr "Select" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2549,8 +2474,6 @@ msgstr "Форма Группы" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Подтвердите Удаление" @@ -2568,7 +2491,7 @@ msgstr "Вы уверены, что хотите удалить участник #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2667,7 +2590,7 @@ msgstr "Добавить Участника" #: ckan/templates/group/member_new.html:18 #: ckan/templates/organization/member_new.html:20 msgid "Existing User" -msgstr "" +msgstr "Существующий Пользователь" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:23 @@ -2682,12 +2605,12 @@ msgstr "" #: ckan/templates/group/member_new.html:42 #: ckan/templates/organization/member_new.html:44 msgid "New User" -msgstr "" +msgstr "Новый Пользователь" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:47 msgid "If you wish to invite a new user, enter their email address." -msgstr "" +msgstr "Если Вы хотите пригласить нового пользователя, введите его адрес электронной почты." #: ckan/templates/group/member_new.html:55 #: ckan/templates/group/members.html:18 @@ -2713,14 +2636,12 @@ msgstr "Вы уверены, что хотите удалить этого уч #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Удалить" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Сохранить" @@ -2808,7 +2729,6 @@ msgstr "моя-группа" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Описание" @@ -2833,6 +2753,7 @@ msgid_plural "{num} Datasets" msgstr[0] "{num} Пакет данных" msgstr[1] "{num} Пакеты данных" msgstr[2] "{num} Пакеты данных" +msgstr[3] "{num} Пакеты данных" #: ckan/templates/group/snippets/group_item.html:34 #: ckan/templates/organization/snippets/organization_item.html:33 @@ -2848,7 +2769,7 @@ msgstr "Показать {name}" #: ckan/templates/group/snippets/group_item.html:43 msgid "Remove dataset from this group" -msgstr "" +msgstr "Удалить набор данных из этой группы" #: ckan/templates/group/snippets/helper.html:4 msgid "What are Groups?" @@ -2870,7 +2791,7 @@ msgstr "Сравнить" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2970,37 +2891,29 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "пакет данных " -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "наборы данных" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" -msgstr "" +msgstr "организация" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" -msgstr "" +msgstr "организации" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" -msgstr "" +msgstr "группа" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" +msgstr "группы" #: ckan/templates/macros/form.html:126 #, python-format @@ -3019,7 +2932,6 @@ msgid "Custom" msgstr "По умолчанию" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Форма содержит неверные значения" @@ -3032,7 +2944,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL картинки" @@ -3077,7 +2988,7 @@ msgstr "Черновик" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3111,6 +3022,20 @@ msgstr "Поиск организаций..." msgid "There are currently no organizations for this site" msgstr "В настоящее время нет организаций для этого сайта" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Имя пользователя" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3228,7 +3153,7 @@ msgstr "Показать пакеты данных" #: ckan/templates/package/edit_base.html:20 msgid "Edit metadata" -msgstr "" +msgstr "Редактировать метаданные" #: ckan/templates/package/edit_view.html:3 #: ckan/templates/package/edit_view.html:4 @@ -3245,7 +3170,6 @@ msgid "Preview" msgstr "Предпросмотр" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Обновить" @@ -3304,7 +3228,7 @@ msgstr "" msgid "Add" msgstr "Добавить" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3336,28 +3260,32 @@ msgstr "" msgid "Error:" msgstr "Ошибка:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Последнее обновление" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3461,7 +3389,7 @@ msgid "unknown" msgstr "неизвестно" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Создано" @@ -3497,6 +3425,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Документация API" @@ -3553,7 +3485,7 @@ msgid "Version" msgstr "Версия" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Страна" @@ -3568,7 +3500,6 @@ msgstr "Данные API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Заголовок" @@ -3588,30 +3519,30 @@ msgstr "например - Некоторые полезные заметки п msgid "eg. economy, mental health, government" msgstr "например - экономика, психическое здоровье, правительство" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Описание лицензии и дополнительную информацию можно найти на opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Организация" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Видимость" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Общественный" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3638,7 +3569,7 @@ msgstr "" #: ckan/templates/package/snippets/package_metadata_fields.html:10 msgid "1.0" -msgstr "" +msgstr "1.0" #: ckan/templates/package/snippets/package_metadata_fields.html:14 #: ckan/templates/package/snippets/package_metadata_fields.html:20 @@ -3666,7 +3597,7 @@ msgstr "обновить Ресурс" #: ckan/templates/package/snippets/resource_form.html:24 msgid "File" -msgstr "" +msgstr "Файл" #: ckan/templates/package/snippets/resource_form.html:28 msgid "eg. January 2011 Gold Prices" @@ -3738,7 +3669,7 @@ msgstr "Исследуй" msgid "More information" msgstr "Больше информации" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Внедрить" @@ -3758,11 +3689,11 @@ msgstr "" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Ширина" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Высота" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" @@ -3806,15 +3737,15 @@ msgstr "" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "" +msgstr "Добавить фильтр" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "Удалить фильтр" #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" -msgstr "" +msgstr "Фильтры" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" @@ -3824,139 +3755,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Соответствующая форма" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Какие связанные объекты?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Медиа это любые приложения, статьи, визуализации или идеи, связанные с этим набором данных.

К примеру, это может быть визуализация, пиктограмма или гистограмма, приложение, которое используя все или часть данных или даже новость, которая ссылается на этот пакет данных.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr " Вы уверены, что хотите удалить связанный объект - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Приложения и Идеи" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Показать объекты %(first)s - %(last)s из %(item_count)s связанные объекты найдены

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s связанные объекты найдены

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Приложения еще не представлены." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Какие приложение?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Эти приложения, построенные с пакетами данных, наряду с идеями для вещей, которые можно было бы сделать с ними." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Фильтровать Результаты" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Фильтровать по типу" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Все" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Упорядочить по " - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "По умолчанию" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Показывать только связанные объекты " - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Применить" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Редактировать связанный пункт" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Редактировать связанное" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Редактировать Связанный Пункт " - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Создать связанный пункт" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Создать Связанное" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Создать Связанный Пункт" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Мой Связанный Пункт" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Немного информации о пункте..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Тип" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Вы уверены, что хотите удалить этот связанный пункт?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Перейти к {related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "Отличия" @@ -4044,7 +3842,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Нет {facet_type} соответствующего этому поиску" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Главная страница" @@ -4053,7 +3850,7 @@ msgid "Language" msgstr "Язык" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4085,21 +3882,25 @@ msgstr "Ни приложения, ни идеи, ни новости или к msgid "Add Item" msgstr "Добавить предмет" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Отправить" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Сортировать по" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Фильтровать Результаты" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Попробуйте поискать еще.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4111,6 +3912,7 @@ msgid_plural "{number} datasets found for \"{query}\"" msgstr[0] "{number} пакет данных найден для \"{query}\"" msgstr[1] "{number} пакеты данных найдены для \"{query}\"" msgstr[2] "{number} пакеты данных найдены для \"{query}\"" +msgstr[3] "{number} пакеты данных найдены для \"{query}\"" #: ckan/templates/snippets/search_result_text.html:16 msgid "No datasets found for \"{query}\"" @@ -4122,6 +3924,7 @@ msgid_plural "{number} datasets found" msgstr[0] "{number} массив найден" msgstr[1] "{number} массива найдено" msgstr[2] "{number} найдено массивов данных" +msgstr[3] "{number} найдено массивов данных" #: ckan/templates/snippets/search_result_text.html:18 msgid "No datasets found" @@ -4133,6 +3936,7 @@ msgid_plural "{number} groups found for \"{query}\"" msgstr[0] "{number} группа найдена для \"{query}\"" msgstr[1] "{number} группы найдены для \"{query}\"" msgstr[2] "{number} группы найдены для \"{query}\"" +msgstr[3] "{number} группы найдены для \"{query}\"" #: ckan/templates/snippets/search_result_text.html:22 msgid "No groups found for \"{query}\"" @@ -4144,6 +3948,7 @@ msgid_plural "{number} groups found" msgstr[0] "{number} группа найдена" msgstr[1] "{number} группы найдены" msgstr[2] "{number} группы найдены" +msgstr[3] "{number} группы найдены" #: ckan/templates/snippets/search_result_text.html:24 msgid "No groups found" @@ -4155,6 +3960,7 @@ msgid_plural "{number} organizations found for \"{query}\"" msgstr[0] "{number} организация найдена для \"{query}\"" msgstr[1] "{number} организации найдены для \"{query}\"" msgstr[2] "{number} организации найдены для \"{query}\"" +msgstr[3] "{number} организации найдены для \"{query}\"" #: ckan/templates/snippets/search_result_text.html:28 msgid "No organizations found for \"{query}\"" @@ -4166,6 +3972,7 @@ msgid_plural "{number} organizations found" msgstr[0] "{number} организация найдена" msgstr[1] "{number} организации найдены" msgstr[2] "{number} организации найдены" +msgstr[3] "{number} организации найдены" #: ckan/templates/snippets/search_result_text.html:30 msgid "No organizations found" @@ -4180,7 +3987,7 @@ msgid "Subscribe" msgstr "Подписаться" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4199,10 +4006,6 @@ msgstr "Редактировать" msgid "Search Tags" msgstr "Поиск тэгов" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Панель Управления" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Новостная лента" @@ -4266,38 +4069,29 @@ msgstr "Ваш профиль позволяет другим CKAN-пользо msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Имя пользователя" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Полное имя" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "eg. Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "eg. joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Кратко о себе" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Подпишитесь на рассылку уведомлений" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" -msgstr "" +msgstr "Сменить пароль" #: ckan/templates/user/edit_user_form.html:29 #: ckan/templates/user/logout_first.html:12 @@ -4352,7 +4146,7 @@ msgstr "Создать Аккаунт" #: ckan/templates/user/login.html:42 msgid "Forgotten your password?" -msgstr "" +msgstr "Забыли пароль?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." @@ -4413,7 +4207,7 @@ msgstr "Создание пакетов данных, групп и других #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "имя пользователя" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" @@ -4528,15 +4322,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "Ресурс DataStore не найден" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Источник \"{0}\" не был найден." @@ -4544,6 +4338,14 @@ msgstr "Источник \"{0}\" не был найден." msgid "User {0} not authorized to update resource {1}" msgstr "Пользователь {0} не имеет прав для обновления ресурса {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4570,6 +4372,10 @@ msgstr "Код страны" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4587,65 +4393,25 @@ msgstr "URL изображение" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "таблица" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "ка́рта" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (C) 2010 Michael Leibman, http://github.com/mleibman/slickgrid ⏎\n⏎\nНастоящим Разрешением предоставляется бесплатно, любому лицу, приобретающему ⏎\nкопию данного программного обеспечения и сопутствующую документацию (⏎\n«Программное обеспечение»), используйте программное обеспечение без ограничений, в том числе ⏎\nбез ограничения прав на использование, копирование, изменение, объединение, публикацию, ⏎\nраспространять, лицензировать, и / или продавать копии Программного Обеспечения, а также ⏎\nлицам, которым предоставляется Программное обеспечение, чтобы сделать это, при условии ⏎\nследующие условия: ⏎\n⏎\nВыше уведомления об авторских правах и данное разрешение должно быть ⏎\nвключено во все копии или существенные части программного обеспечения. ⏎\n⏎\nПРОГРАММНОЕ ОБЕСПЕЧЕНИЕ ПРЕДОСТАВЛЯЕТСЯ «КАК ЕСТЬ», БЕЗ ГАРАНТИЙ ЛЮБОГО ВИДА, ⏎\nЯВНЫХ ИЛИ ПОДРАЗУМЕВАЕМЫХ, ВКЛЮЧАЯ, НО НЕ ОГРАНИЧИВАЯСЬ, ГАРАНТИИ ⏎\nПРИГОДНОСТИ ДЛЯ КОНКРЕТНЫХ ЦЕЛЕЙ И ⏎\nНЕНАРУШЕНИЯ. НИ В КОЕМ СЛУЧАЕ АВТОРЫ ИЛИ ВЛАДЕЛЬЦЫ АВТОРСКИХ ПРАВ НЕ ⏎\nНЕСУТ ОТВЕТСТВЕННОСТЬ ЗА ЛЮБЫЕ ПРЕТЕНЗИИ, ПОВРЕЖДЕНИЯ ИЛИ ИНОЙ ОТВЕТСТВЕННОСТИ, НЕЗАВИСИМО ОТ ДЕЙСТВИЙ ⏎\nКОНТРАКТА, ПРАВОНАРУШЕНИЯ ИЛИ ИНЫХ, СВЯЗАННЫХ, В РЕЗУЛЬТАТЕ ИЛИ В СВЯЗИ ⏎\nС ИСПОЛЬЗОВАНИЕМ ИЛИ ИНЫМИ ДЕЙСТВИЯМИ С ПРОГРАММНЫМ ОБЕСПЕЧЕНИЕМ." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Это скомпилированная версия SlickGrid была получена с Google Closure ⏎\nCompiler, с помощью следующей команды: ⏎\n⏎\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js ⏎\n⏎\nЕсть два других файла, необходимых для работы SlickGrid : ⏎\n⏎\n* jquery-ui-1.8.16.custom.min.js ⏎\n* jquery.event.drag-2.0.min.js⏎\n⏎\nОни включены в Recline источник, но не были включены в ⏎\nрабочий файл, чтобы избежать проблемам с совместимостью. ⏎\n⏎\nПожалуйста, проверьте SlickGrid лицензию в прилагаемом MIT-LICENSE.txt файле. ⏎\n⏎\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4660,7 +4426,7 @@ msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Количество строк" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 @@ -4704,7 +4470,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Всего пакетов данных" @@ -4732,33 +4497,27 @@ msgstr "Новые пакеты данных" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Самые популярные пакеты данных" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Средняя оценка" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Количество оценок" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Нет оценок" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Самые часто редактируемые пакеты данных" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Количество редакций" @@ -4768,12 +4527,10 @@ msgstr "Нет редактируемых пакетов данных" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Самые большие группы" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Количество пакетов" @@ -4783,7 +4540,6 @@ msgstr "Нет групп" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Самые популярные метки" @@ -4798,8 +4554,8 @@ msgstr "Количество пакетов" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Пользователи, зарегистрировавшие наибольшее количество пакетов данных" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4809,48 +4565,22 @@ msgstr "Меню статистики" msgid "Total Number of Datasets" msgstr "Всего пакетов данных" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Статистика" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Число редакций пакетов за неделю" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Пользователи, зарегистрировавшие наибольшее количество пакетов данных" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Последнее изменение страницы " +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Текст" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Статистика Доски почета" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Доска лидеров по датасетам" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Выберите свойство пакета данных и узнайте, какие связанные категории содержат наибольшее количество пакетов. Например, метки, группы, лицензия, страна." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Выберите область" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "сайт" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "URL страницы" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" diff --git a/ckan/i18n/sk/LC_MESSAGES/ckan.mo b/ckan/i18n/sk/LC_MESSAGES/ckan.mo index bf60fa39669..cf5f9433823 100644 Binary files a/ckan/i18n/sk/LC_MESSAGES/ckan.mo and b/ckan/i18n/sk/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/sk/LC_MESSAGES/ckan.po b/ckan/i18n/sk/LC_MESSAGES/ckan.po index 614e8a054b5..632c8bb605f 100644 --- a/ckan/i18n/sk/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sk/LC_MESSAGES/ckan.po @@ -7,257 +7,258 @@ # KUSROS , 2012 # mmahut , 2012 # Sean Hammond , 2012 +# Sveto Krchnavy, 2015 # zufanka , 2012 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:23+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Slovak (http://www.transifex.com/projects/p/ckan/language/sk/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:24+0000\n" +"Last-Translator: dread \n" +"Language-Team: Slovak (http://www.transifex.com/okfn/ckan/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Autorizačná funkcia nenájdená: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Administrátor" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Editor" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Člen" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Na spravovanie musíte byť systémový administrátor" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Nadpis stránky" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Štýl" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Popis portálu" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Malé logo portálu" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "O projekte" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Text stránky o projekte" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Úvodný Text" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Text na hlavnej stránke" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Vlastné CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Prispôsobiteľný css súbor bol vložený do hlavičky stránky" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Hlavná stránka" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Nie je možné vymazať balík %s, keďže prepojená revízia %s obsahuje nezmazané balíky %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problém pri čistení revízie %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Mazanie ukončené" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Akcia nieje implementovaná." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Nemáte oprávnenie na zobrazenie tejto stránky" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Prístup bol odmietnutý" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Nenájdené" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Chybná požiadavka" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Názov akcie nie je známy: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Chyba JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Chybná požiadavka dát: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Nie je možné vypísať prvky tohto typu: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Nie je možné čítať prvky tohto typu: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Nie je možné vytvoriť nový prvok tohto typu: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Do vyhľadávacieho indexu nie je možné pridať balík" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Nie je možné aktualizovať prvok tohto typu: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Vyhľadávací index nie je možné aktualizovať" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Nie je možné zmazať prvok tohto typu: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Nebola vybraná žiadna revízia" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Neexistuje verzia s id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Chýbajúci hľadaný výraz ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Nie je možné načítať parametre: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Chybný parameter vyhľadávania: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Neznámy register: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Poškodená qjson hodnota: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Parametre požiadavky musia mať formu kódovaného slovníka JSON." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Skupina nenájdená" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Organizácia nebola nájdená." -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Nesprávny typ skupiny" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Nemáte oprávnenie čítať skupinu %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -268,23 +269,23 @@ msgstr "Nemáte oprávnenie čítať skupinu %s" msgid "Organizations" msgstr "Organizácie" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Skupiny" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -292,394 +293,303 @@ msgstr "Skupiny" msgid "Tags" msgstr "Tagy" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Formáty" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licencie" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Nemáte opravnenie na vykonanie hromadnej aktualizácie" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Nemáte oprávnenie vytvoriť skupinu" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Užívateľ %r nemá oprávnenie meniť %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Chyba v integrite" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Užívateľ %r nemá oprávnenie meniť oprávnenie pre %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Nemáte oprávnenie na vymazanie skupiny %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organizácia bola vymazaná" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Skupina bola vymazaná" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s bolo vymazaných." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Nemáte oprávnenie na pridanie člena do skupiny %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Nemáte oprávnenie na mazanie členov skupiny %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Člen skupiny bol vymazaný" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Pred porovnávaním vyberte dve verzie" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Užívateľ %r nemá oprávnenie meniť %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "História revízií skupin CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Nedávne zmeny skupiny CKAN:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Správa logu: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Nemáte oprávnenie na čítanie skupiny {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Teraz sledujete {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Už nesledujete {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Nemate povolenie na sledovanie odberateľov %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Táto stránka je momentálne off-line. Databáza sa nenačítala." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Prosím obnovte svoj profil a pridajte svoju adresu a celé meno. {site} požíva vašu e-mailovú adresu ak je potrebné znovu nastaviť vaše heslo." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Prosím aktualizujte svoj profil a pridajte svoju emailovú adresu." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s použije vašu emailovú adresu, ak potrebujete zmeniť svoje prístupové heslo." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Prosím aktualizujte svoj profil a pridajte svoje celé meno." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Parameter \"{parameter_name}\" nie je celé číslo" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Dataset sa nepodarilo nájsť" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Nemáte oprávnenie čítať balík %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Neplatný formát revízie: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Prezeranie {package_type} datasetu v {format} formáte is nie je podporované \"\n\"(súbor šablóny {file} nebol nájdený)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Historia revízií CKAN datasetu" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Nedávne zmeny Datasetu CKAN: " -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Nemáte oprávnenie vytvoriť balík." -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Nemáte oprávnenie na upravovanie tohto zdroja" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Nenájdený zdroj" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Nemáte oprávnenie na aktualizáciu datasetu" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Dataset {id} nebol nájdený." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Musíte pridať aspon jeden zdroj" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Chyba" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Nemáte oprávnenie na vytvorenie zdroja" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "Nemáte oprávnenie vytvoriť dátový zdroj pre tento dataset" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Do vyhladávacieho indexu nie je možné pridať balík." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Vyhľadávací index nemožno aktualizovať" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Dataset bol vymazaný" + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Nemáte oprávnenie na zmazanie balíka %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Dataset bol vymazaný" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Zdroj bol vymazaný" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Nemáte oprávnenie na zmazanie zdroja %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Nemáte oprávnenie na čítanie datasetu %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "Nenájdený náhľad dátového zdroja" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Nemáte oprávnenie na čítanie zdroja %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Zdroj nebol nájdený" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Žiadne stiahnutie nie je dostupné" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Nemáte oprávnenie na upravovanie tohto zdroja" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "Nenájdený náhľad" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "Nemáte oprávnenie na zobrazenie náhľadu %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "Nenájdený typ náhľadu" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Nesprávny náhľad dátového zdroja" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Nemáte oprávnenie na zobrazenie náhľadu %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "Náhľad nebol nájdený" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Žiadny náhľad ešte nebol definovaný" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Najviac prezerané" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Najviac prezerané" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Najmenej prezerané" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Najnovšie" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Najstaršie" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Požadovaná súvisiaca položka nebola nájdená." - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Súvisiaca položka nebola nájdená" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Neoprávnený" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Balíček nenájdený" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Súvisiaca položka bola úspešne vytvorená" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Súvisiaca položka bola úspešne aktualizovaná" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Súvisiaca položka bola úspešne vytvorená" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Nie ste oprávnený na vymazanie súvisiacej položky %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Aplikácia" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Nápad" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Novinový článok" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Odborný článok" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Príspevok" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Vizualizácia" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Historia zmien CKAN úložiska" @@ -705,10 +615,10 @@ msgstr "Iné" msgid "Tag not found" msgstr "Tag nebol nájdený" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Používateľ nebol nájdený" @@ -728,13 +638,13 @@ msgstr "Nemáte oprávnenie vymazať používateľa s id \"{user_id}\"." msgid "No user specified" msgstr "Nebol vybraný žiadny používateľ" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Nemáte oprávnenie upravovať používateľa %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil upravený" @@ -758,75 +668,87 @@ msgstr "Používateľ \"%s\" je registrovaný, stále ste však prihlásený ako msgid "Unauthorized to edit a user." msgstr "Nemáte oprávnenie upravovať používateľa." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Používateľ %s nemá oprávnenie upravovať %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Bolo yadané nesprávne heslo" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Pôvodné heslo" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "nesprávne heslo" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Prihlásenie sa nepodarilo. Zlé prihlasovacie meno alebo heslo." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Nemáte oprávnenie požiadať o reset hesla." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" vyhovuje viacerým používateľom" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Neexistuje používateľ: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Skontrolujte, či máte v doručenej pošte obnovovací kód." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Nepodarilo sa odoslať odkaz pre obnovenie: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Neoprávnený na obnovenie hesla." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Neplatný obnovovací kľúč. Skúste znova." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Vaše heslo bolo obnovené." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Vaše heslo musí mať najmenej 4 znaky." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Zadané heslá nie sú totožné." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Musíte zadať heslo" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Sledovaná položka nebola nájdená" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "Nepodarilo sa nájsť {0}" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Nemáte oprávnenie čítať {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Všetko" @@ -836,7 +758,7 @@ msgstr "Chýbajúca hodnota" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Presmerovanie na externú stránku nie je povolené." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" @@ -948,7 +870,7 @@ msgstr "{actor} pridal {related_type} {related_item} do datasetu {dataset}" msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} pridal {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -956,11 +878,11 @@ msgid "View" msgstr "Zobrazenie" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "žiadne nové aktivity z {site_title}" -msgstr[1] "{n} nová aktivita z {site_title}" -msgstr[2] "{n} nových aktivít z {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1010,141 +932,141 @@ msgstr "November" msgid "December" msgstr "December" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Práve teraz" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "pred {mins} minutami" msgstr[1] "pred {mins} minútou" msgstr[2] "pred {mins} minutami" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "pred {hours} hodinami" msgstr[1] "pred {hours} hodinou" msgstr[2] "pred {hours} hodinami" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "pred {days} dňami" msgstr[1] "pred {days} dňom" msgstr[2] "pred {days} dňami" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "pred {months} mesiacmi" msgstr[1] "pred {months} mesiacom" msgstr[2] "pred {months} mesiacmi" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "pred viac než {years} rokmi" msgstr[1] "pred viac než {years} rokom" msgstr[2] "pred viac než {years} rokmi" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{day} {month}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day} {month}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bajtov" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Updadujte svojho avatara na stránke gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Neznáme" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Nepomenovaný zdroj" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Nový dataset vytvorený." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Upravené zdroje." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Upravené nastavenia." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} videní" msgstr[1] "{number} videnie" msgstr[2] "{number} videní" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} nedávnych videní" @@ -1172,16 +1094,16 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Požiadali ste o obnovenie svojho prihlasovacieho hesla na %{site_title}s. \n\nKliknite prosím na nasledujúci odkaz a potvrďte túto požiadavku: \n\n%{reset_link}s\n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Boli ste pozvaný na stránku {site_title}. Bol vám vytvorený profil s menom {user_name}. Môžete ho zmeniť neskôr.\n\nPre akceptovanie tejto pozvánky zmeňte prosím svoje heslo na tomto odkaze:\n\n{reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1201,7 +1123,7 @@ msgstr "Pozvánka na {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Chýbajúca hodnota" @@ -1214,7 +1136,7 @@ msgstr "Neočakávaný názov vstupného poľa %(name)s." msgid "Please enter an integer value" msgstr "Prosím zadajte hodnotu celého čísla" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1224,11 +1146,11 @@ msgstr "Prosím zadajte hodnotu celého čísla" msgid "Resources" msgstr "Zdroje" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Neplatný zdroj(e) balíka" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Doplnky" @@ -1238,25 +1160,22 @@ msgstr "Doplnky" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Tag \"%s\" neexistuje" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Používateľ" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Dataset" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Skupina" @@ -1268,378 +1187,369 @@ msgstr "Nepodarilo sa parsovať validný JSON" msgid "A organization must be supplied" msgstr "Organizácia musí byť zadaná" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Nemôžete odstrániť dataset z existujúcej organizácie" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organizácia neexistuje" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Nieje požné pridať dataset do tejto organizácie" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Neplatné číslo" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Musí byť ṕrirodzené číslo" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Musí byť kladné číslo" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Nesprávny formát dát" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "V log_message nie sú povolené odkazy." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "Dataset s týmto identifikátorom už existuje" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Zdroj" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Súvisiace" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Názov skupiny alebo ID neexistuje." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Typ aktivity" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Mená musia byť reťazce znakov" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Tento názov nemôže byť použitý" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Musí obsahovať minimálne %s znakov" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Meno musí mať najviac %i znakov" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "Musí obsahovať iba malé písmená bez diaktritiky, číslice a znaky: - a _" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Táto URL už bola použitá." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Názov \"%s\" je kratší, než minimálny počet znakov %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Názov \"%s\" je dlhší, než maximálny počet znakov %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Verzia môže mať maximálne %i znakov." -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Duplicitný kľúč \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Názov skupiny už existuje" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Tag \"%s\" je kratší ako minimálny počet %s znakov" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Dĺžka tagu \"%s\" presahuje povolené maximum %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Tag \"%s\" môže obsahovať iba malé písmená bez diakritiky, číslice a znaky - a _." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Tag \"%s\" nesmie obsahovať veľké písmená" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Užívateľské mená musia byť textove reťazce" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Toto prihlasovacie meno nie je k dispozícii." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Prosím zadajte obe heslá" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Heslá musia byť textove reťazce" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Heslo musí mať najmenej 4 znaky" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Zadané heslá sa nezhodujú" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Úprava nebola povolená, pretože vyzerá ako spam. Prosím nedávajte do opisu odkazy." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Názov musí mať aspoň %s znakov" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Toto meno slovníka je už použité." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Nemožno zmeniť hodnotu kľúča z %s na %s. Tento kľúč možno len čítať." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Slovník tagov nebol nájdený." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Tag %s nepatrí do slovníku %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Žiaden názov tagu" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Tag %s už patrí do slovníku %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Prosím, úveďte platnú URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "rola neexistuje" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Dataset, ktorý nepatrí organizácii nemôže byť súkromný" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Toto nieje zoznam" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Toto nieje textový reťazec" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Tento predok by vytvoril zacyklenie v hierarchii" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "\"filter_fields\" a \"filter_values\" musia mať rovnakú dĺžku" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +msgstr "\"filter_fields\" je povinné v prípade, že \"filter_values\" je vyplnené" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "\"filter_values\" je povinné v prípade, že \"filter_fields\" je vyplnené" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "Už existuje schéma s rovnakým menom." -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Vytvor objekt %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Vytvor vzťah balíkov: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Vytvoriť objekt %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Skúšam vytvoriť organizáciu ako skupinu" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Musíte zadať id alebo meno balíka (parameter \"balík\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Musíte vyplniť hodnotenie (parameter \"hodnotenie\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Hodnotenie musí byť celé číslo." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Hodnotenie musí byť medzi %i a %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Musíte byť prihlásený, ak chcete sledovať užívateľov" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Nemôžete odoberať sám seba" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Už sledujete {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Musíte byť prihlásený ak chcete sledovať dataset" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Uživateľ {username} neexistuje" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Musíte byť prihlásený, ak chcete sledovať skupinu." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Zmazať balík: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Zmazať %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Zmazať člena: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id nie je v dátach" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Nemožno nájsť slovník \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Nie je možné nájsť tag \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Musíte byť pripojený pre odber." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Neodoberáte {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Zdroj nebol nájdený." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Nešpecifikuje \"otázka\" parameter" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Musí byť : pár(y)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Pole \"{field}\"nebolo rozpoznané v zdrojovom_vyhľadávaní" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "neznámy používateľ:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Položka nebola nájdená." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Balík nebol nájdený." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Aktualizovať objekt %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Aktualizovať vzťah balíkov: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus nebol nájdený." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organizácia nebola nájdená." @@ -1668,9 +1578,9 @@ msgstr "Ak chcete pridať súvisiacu položku, musíte byť prihlásený" #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "Neznáme ID datasetu, nie je možné skontrolovať oprávnenia." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Nenašiel sa žiadny balík pre tento zdroj, nie je možné skontrolovať oprávnenie." @@ -1678,96 +1588,100 @@ msgstr "Nenašiel sa žiadny balík pre tento zdroj, nie je možné skontrolova #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "Používateľ %s nemá oprávnenie vytvárať dátové zdroje pre dataset %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Používateľ %s nemá oprávnenie upravovať tieto balíky" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Používateľ %s nemá oprávnenie vytvárať skupiny" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Používateľ %s nemá oprávnenie na vytváranie organizácií" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "Používateľ {user} nemá oprávnenie na vytvorenie používteľom prostredníctvom API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Nemáte oprávnenie na vytvorenie používateľov" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Skupina nebola nájdená." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Na vytvorenie balíka je potrebný platný API kľúč" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Na vytvorenie skupiny je potrebný API kľúč" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Používateľ %s nemá oprávnenie na pridanie členov" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Používateľ %s nemá oprávnenie upravovať skupinu %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Používateľ %s nemá oprávnenie na odstránenie zdroja %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "Náhľad dátového zdroja nebol nájdený, nie je možné skontrolovať oprávnenia." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Súvisiacu položku môže zmazať len vlastník" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Používateľ %s nemá oprávnenie zmazať vzťah %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Používateľ %s nemá oprávnenie na odstránenie skupín" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Používateľ %s nemá oprávnenie zmazať skupinu %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Používateľ %s nemá oprávnenie na odstránenie organizácií" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Používateľ %s nemá oprávnenie na odstránenie organizácie %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Používateľ %s nemá oprávnenie na odstránenie task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Neoprávnený" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1786,9 +1700,9 @@ msgstr "Používateľ %s nemá oprávnenie čítať zdroj %s" #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "Používateľ %s nemá oprávnenie čítať skupinu %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Musíte byť prihlásený na prístup k nástenke." @@ -1841,7 +1755,7 @@ msgstr "Používateľ %s nemá oprávnenie upravovať používateľa %s" #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "Používateľ {0} nemá oprávnenie na úpravu profilu používateľa {1}" #: ckan/logic/auth/update.py:236 #, python-format @@ -1866,63 +1780,63 @@ msgstr "Na úpravu balíka je potrebný platný API kľúč" msgid "Valid API key needed to edit a group" msgstr "Na úpravu skupiny je potrebný platný API kľúč" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "Nie je uvedená licencia" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Ostatné (otvorená licencia)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Ostatné (verejná doména)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Ostatné (licencia s priznaním autorstva)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Ostatné (licencia pre nekomerčné využitie)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Ostatné (zatvorená licencia)" @@ -2029,8 +1943,6 @@ msgstr "Potvrdiť" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Zrušiť" @@ -2055,12 +1967,13 @@ msgstr "Odkaz" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Zmazať" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Obrázok" @@ -2126,14 +2039,13 @@ msgstr "Nahrávate súbor. Chcete odísť preč a prerušiť nahrávanie?" #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Preusporiadať náhľad dátového zdroja" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2147,7 +2059,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Upraviť" @@ -2186,11 +2097,11 @@ msgstr "Beží na Site Title: This is the title of this CKAN instance It " @@ -2321,7 +2237,7 @@ msgstr "Potvrďte reset" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Spravovať CKAN" #: ckan/templates/admin/index.html:20 #, python-format @@ -2329,15 +2245,15 @@ msgid "" "

As a sysadmin user you have full control over this CKAN instance. " "Proceed with care!

For guidance on using sysadmin features, see the " "CKAN sysadmin guide

" -msgstr "" +msgstr "

Ako používateľ sysadmin máte plnú kontrolu nad touto inštanciou CKAN. Pokračujte opatrne!\n

Pre informácie o používaní sysadmin funkcií, pozrite odkaz sysadmin sprievodca

" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Vyčistiť" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "

Odstrániť vymazané datasety navždy a nevratne.

" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" @@ -2352,7 +2268,7 @@ msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +msgstr "Viac informácií na hlavná dokumentácia CKAN Data API a CKAN DataStore.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" @@ -2365,7 +2281,6 @@ msgid "" msgstr "Prístup k dátovému API prostredníctvom nasledujúcich CKAN akcií API" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Vytvoriť" @@ -2391,7 +2306,7 @@ msgstr "Príklad dopytu (prvých 5 výsledkov)" #: ckan/templates/ajax_snippets/api_info.html:75 msgid "Query example (results containing 'jones')" -msgstr "" +msgstr "Príklad dotazu (výsledky obsahujúce 'jones')" #: ckan/templates/ajax_snippets/api_info.html:81 msgid "Query example (via SQL statement)" @@ -2517,7 +2432,7 @@ msgstr "Zvoliť" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2550,8 +2465,6 @@ msgstr "Formulár skupiny" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Potvrdiť zmazanie" @@ -2569,7 +2482,7 @@ msgstr "Naozaj chcete odstrániť člena - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2714,14 +2627,12 @@ msgstr "Skutočne chcete odstrániť tohto člena?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Zmazať" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Uložiť" @@ -2809,7 +2720,6 @@ msgstr "moja-skupina" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Popis" @@ -2840,7 +2750,7 @@ msgstr[2] "" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 msgid "0 Datasets" -msgstr "" +msgstr "0 Datasetov" #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 @@ -2853,7 +2763,7 @@ msgstr "Vymaž dataset, z tejto skupiny" #: ckan/templates/group/snippets/helper.html:4 msgid "What are Groups?" -msgstr "" +msgstr "Čo sú skupiny?" #: ckan/templates/group/snippets/helper.html:8 msgid "" @@ -2871,7 +2781,7 @@ msgstr "Porovnaj" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2939,7 +2849,7 @@ msgid "" "href=\"http://ckan.org/tour/\">http://ckan.org/tour/
Features " "overview: http://ckan.org/features/

" -msgstr "" +msgstr "

CKAN je celosvetovo vedúca open-source dátová platforma.

CKAN je kompletné out-of-box softvérové ​​riešenie, ktoré robí dáta prístupné a použiteľné - poskytuje nástroje pre zefektívnenie ich publikovania a katalogizáciu, zdieľanie, vyhľadávanie a používanie dát (ako úložisko dát s robustným dátovým rozhraním API). CKAN je určený pre všetkých poskytovateľov dát (národné a regionálne vlády, spoločnosti a organizácie), ktorí chcú, aby ich dáta boli otvorené a dostupné.

CKAN je používaný vládami a skupinami používateľov po celom svete na prevádzku rôznych oficiálnych a komunitných dátových portálov, vrátane portálov pre miestne, národné a medzinárodné vlády, ako napríklad vo Veľkej Británii data.gov.uk a Európskej únii publicdata.eu , Brazílii dados.gov.br , Holandsku, ale aj stránky miest a obcií v USA, Veľkej Británii, Argentíne, Fínsku a inde

CKAN: http://ckan.org/
CKAN prehliadka: http://ckan.org/tour/
Prehľad funkcii: http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" @@ -2957,59 +2867,51 @@ msgstr "Toto je vybraná sekcia" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "Napr. prostredie" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "Hľadať dáta" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Populárne tagy" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" msgstr "{0} štatistika" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "dataset" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "datasety" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organizácia" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organizácie" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "skupina" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "skupiny" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "súvisiaca položka" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "súvisiace položky" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" "You can use Markdown formatting here" -msgstr "" +msgstr "Tu môžete použiť Markdown formátovanie" #: ckan/templates/macros/form.html:265 msgid "This field is required" @@ -3020,7 +2922,6 @@ msgid "Custom" msgstr "Upravené" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Formulár obsahuje neplatné položky: " @@ -3033,7 +2934,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "Obrázok URL" @@ -3078,7 +2978,7 @@ msgstr "Predbežný návrh" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3112,6 +3012,20 @@ msgstr "Vyhladať organizácie" msgid "There are currently no organizations for this site" msgstr "Na tomto portály aktuálne niesú žiadne organizácie" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Používateľské meno" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Upraviť údaje o užívateľovi" @@ -3148,7 +3062,7 @@ msgstr "Pridať dataset" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "Datasety v organizácii: {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 @@ -3178,7 +3092,7 @@ msgstr "Moja Organizácia" #: ckan/templates/organization/snippets/organization_form.html:18 msgid "my-organization" -msgstr "" +msgstr "moja-organizácia" #: ckan/templates/organization/snippets/organization_form.html:20 msgid "A little information about my organization..." @@ -3188,7 +3102,7 @@ msgstr "Zopár informácií o mojej organizácií" msgid "" "Are you sure you want to delete this Organization? This will delete all the " "public and private datasets belonging to this organization." -msgstr "" +msgstr "Ste si istý, že chcete zmazať Organizáciu? Súčasne zmažete aj všetky verejné a súkromné datasety, ktoré boli vytvorené za túto organizáciu." #: ckan/templates/organization/snippets/organization_form.html:64 msgid "Save Organization" @@ -3213,7 +3127,7 @@ msgid "" " A CKAN Dataset is a collection of data resources (such as files), together " "with a description and other information, at a fixed URL. Datasets are what " "users see when searching for data. " -msgstr "" +msgstr "CKAN dataset je súbor dátových zdrojov (ako napríklad súbory), spolu s popisom a ďalšími informáciami na pevnej URL. Datasety sú to, čo používatelia vidia pri vyhľadávaní dát." #: ckan/templates/package/confirm_delete.html:11 msgid "Are you sure you want to delete dataset - {name}?" @@ -3236,7 +3150,7 @@ msgstr "Upraviť metadáta" #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Editovať náhľad" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3246,9 +3160,8 @@ msgid "Preview" msgstr "Náhľad" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" -msgstr "" +msgstr "Aktualizovať" #: ckan/templates/package/group_list.html:14 msgid "Associate this group with this dataset" @@ -3289,7 +3202,7 @@ msgstr "Nový zdroj" #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Pridať náhľad" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3298,67 +3211,71 @@ msgid "" "href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-" "structured-data-the-data-explorer' target='_blank'>Data Explorer " "documentation. " -msgstr "" +msgstr "Náhľady Data Explorer môžu byť pomalé a nespoľahlivé, ak nie je povolené DataStore rozšírenie. Ďalšie informácie nájdete v Data Explorer dokumentácii." #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" msgstr "Pridať" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " "differ significantly from the current revision." -msgstr "" +msgstr "Toto je staré spracovanie tohto datasetu upravované v %(timestamp)s. Môže sa výrazne líšiť od aktuálnej verzie." #: ckan/templates/package/related_list.html:7 msgid "Related Media for {dataset}" -msgstr "" +msgstr "Súvisiace médiá pre {dataset}" #: ckan/templates/package/related_list.html:12 msgid "No related items" -msgstr "" +msgstr "Neexistujú súvisiace položky" #: ckan/templates/package/related_list.html:17 msgid "Add Related Item" -msgstr "" +msgstr "Pridať súvisiacu položku" #: ckan/templates/package/resource_data.html:12 msgid "Upload to DataStore" -msgstr "" +msgstr "Nahrať do DataStore" #: ckan/templates/package/resource_data.html:19 msgid "Upload error:" -msgstr "" +msgstr "Chyba pri nahrávaní:" #: ckan/templates/package/resource_data.html:25 #: ckan/templates/package/resource_data.html:27 msgid "Error:" msgstr "Chyba: " -#: ckan/templates/package/resource_data.html:45 -msgid "Status" +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:48 +msgid "Status" +msgstr "Stav" + +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Naposledy zmenené" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Nikdy" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Nahrať záznam" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Detaily" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Koniec záznamu" @@ -3377,11 +3294,11 @@ msgstr "Upraviť zdroj" #: ckan/templates/package/resource_edit_base.html:26 msgid "DataStore" -msgstr "" +msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Náhľady" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" @@ -3404,7 +3321,7 @@ msgstr "URL:" #: ckan/templates/package/resource_read.html:69 msgid "From the dataset abstract" -msgstr "" +msgstr "Z výňatku datasetu (abstrakt)" #: ckan/templates/package/resource_read.html:71 #, python-format @@ -3413,30 +3330,30 @@ msgstr "Zdroj: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "Pre daný dátový zdroj zatiaľ neexistujú žiadne náhľady." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "Nevidíte náhľady, ktoré ste očakávali?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +msgstr "Tu sú možné príčiny, pre ktoré nevidíte očakávaný náhľad:" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "" +msgstr "Pre daný dátový zdroj nebol vytvorený žiadny vhodný náhľad" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +msgstr "Je možné, že správca stránky nepovolil príslušný plugin pre náhľady" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "" +msgstr "Ak náhľad vyžaduje DataStore, DataStore plugin nemusí byť povolený, alebo dáta neboli odoslané do DataStore, alebo DataStore doposiaľ neukončil spracovanie dát" #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" @@ -3459,10 +3376,10 @@ msgstr "Hodnota" #: ckan/templates/package/resource_read.html:162 #: ckan/templates/package/resource_read.html:166 msgid "unknown" -msgstr "" +msgstr "neznámy" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Vytvorené" @@ -3480,11 +3397,11 @@ msgstr "Licencia" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "Nový náhľad" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "Náhľad pre tento dátový zdroj nie je k dispozícii" #: ckan/templates/package/resources.html:8 msgid "Add new resource" @@ -3496,7 +3413,11 @@ msgstr "Pridať nový zdroj" msgid "" "

This dataset has no data, why not " "add some?

" -msgstr "" +msgstr "

Dataset neobsahuje dáta, prečo nejaké nepridať?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" #: ckan/templates/package/search.html:53 msgid "API Docs" @@ -3504,33 +3425,33 @@ msgstr "Dokumenty API" #: ckan/templates/package/search.html:55 msgid "full {format} dump" -msgstr "" +msgstr "úplný {format} dump" #: ckan/templates/package/search.html:56 #, python-format msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" +msgstr "K tomuto registru môžete pristúpiť tiež cez %(api_link)s (pozri %(api_doc_link)s) alebo stiahnuť %(dump_link)s." #: ckan/templates/package/search.html:60 #, python-format msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " -msgstr "" +msgstr "Prístup do tohto zoznamu je možný aj cez API rozhranie %(api_link)s (viď. dokumentácia API %(api_doc_link)s)." #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "Všetky náhľady" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "Zobraziť náhľad" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "Zobraziť náhľad" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 @@ -3554,14 +3475,14 @@ msgid "Version" msgstr "Verzia" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Stav" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "Posledná aktualizácia" #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" @@ -3569,50 +3490,49 @@ msgstr "Data API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Nadpis" #: ckan/templates/package/snippets/package_basic_fields.html:4 msgid "eg. A descriptive title" -msgstr "" +msgstr "napr. popisný názov" #: ckan/templates/package/snippets/package_basic_fields.html:13 msgid "eg. my-dataset" -msgstr "" +msgstr "napr. môj-dataset" #: ckan/templates/package/snippets/package_basic_fields.html:19 msgid "eg. Some useful notes about the data" -msgstr "" +msgstr "napr. Niekoľko užitočných poznámok o dátach" #: ckan/templates/package/snippets/package_basic_fields.html:24 msgid "eg. economy, mental health, government" -msgstr "" +msgstr "napr. ekonomika, zdravie, vláda" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " -msgstr "" +msgstr "Informácie o licenciách nájdete na opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organizácia" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Žiadna organizácia" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Viditeľnosť" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Verejný" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Aktívny" @@ -3623,147 +3543,147 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "" +msgstr "Licencia zvolená vyššie sa vzťahuje len na obsah zdrojových súborov, ktoré pridáte do tohto datasetu. Odoslaním tohto formulára súhlasíte s publikovaním metadát, ktoré zadáte do formulára pod Otvorená databázová licencia." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" -msgstr "" +msgstr "Ste si istý, že chcete zmazať tento dataset?" #: ckan/templates/package/snippets/package_form.html:44 msgid "Next: Add Data" -msgstr "" +msgstr "Ďalej: Pridať dáta" #: ckan/templates/package/snippets/package_metadata_fields.html:6 msgid "http://example.com/dataset.json" -msgstr "" +msgstr "http://example.com/dataset.json" #: ckan/templates/package/snippets/package_metadata_fields.html:10 msgid "1.0" -msgstr "" +msgstr "1.0" #: ckan/templates/package/snippets/package_metadata_fields.html:14 #: ckan/templates/package/snippets/package_metadata_fields.html:20 #: ckan/templates/user/new_user_form.html:6 msgid "Joe Bloggs" -msgstr "" +msgstr "Joe Bloggs" #: ckan/templates/package/snippets/package_metadata_fields.html:16 msgid "Author Email" -msgstr "" +msgstr "Email autora" #: ckan/templates/package/snippets/package_metadata_fields.html:16 #: ckan/templates/package/snippets/package_metadata_fields.html:22 #: ckan/templates/user/new_user_form.html:7 msgid "joe@example.com" -msgstr "" +msgstr "joe@example.com" #: ckan/templates/package/snippets/package_metadata_fields.html:22 msgid "Maintainer Email" -msgstr "" +msgstr "Email správcu" #: ckan/templates/package/snippets/resource_edit_form.html:12 msgid "Update Resource" -msgstr "" +msgstr "Aktualizovať dátový zdroj" #: ckan/templates/package/snippets/resource_form.html:24 msgid "File" -msgstr "" +msgstr "Súbor" #: ckan/templates/package/snippets/resource_form.html:28 msgid "eg. January 2011 Gold Prices" -msgstr "" +msgstr "napr. cena zlata v januári 2011" #: ckan/templates/package/snippets/resource_form.html:32 msgid "Some useful notes about the data" -msgstr "" +msgstr "Niekoľko užitočných poznámok o dátach" #: ckan/templates/package/snippets/resource_form.html:37 msgid "eg. CSV, XML or JSON" -msgstr "" +msgstr "napr. CSV, XML alebo JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" +msgstr "Bude doplnené automaticky. Môže ostať nevyplnené. " #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" -msgstr "" +msgstr "napr. 2012-06-05" #: ckan/templates/package/snippets/resource_form.html:53 msgid "File Size" -msgstr "" +msgstr "Veľkosť súboru" #: ckan/templates/package/snippets/resource_form.html:53 msgid "eg. 1024" -msgstr "" +msgstr "napr. 1024" #: ckan/templates/package/snippets/resource_form.html:55 #: ckan/templates/package/snippets/resource_form.html:57 msgid "MIME Type" -msgstr "" +msgstr "MIME typ" #: ckan/templates/package/snippets/resource_form.html:55 #: ckan/templates/package/snippets/resource_form.html:57 msgid "eg. application/json" -msgstr "" +msgstr "napr. aplikácia/json" #: ckan/templates/package/snippets/resource_form.html:65 msgid "Are you sure you want to delete this resource?" -msgstr "" +msgstr "Ste si istí, že chcete zmazať tento dátový zdroj?" #: ckan/templates/package/snippets/resource_form.html:72 msgid "Previous" -msgstr "" +msgstr "Predchádzajúce" #: ckan/templates/package/snippets/resource_form.html:75 msgid "Save & add another" -msgstr "" +msgstr "Uložiť a pridať ďalší" #: ckan/templates/package/snippets/resource_form.html:78 msgid "Finish" -msgstr "" +msgstr "Dokončiť" #: ckan/templates/package/snippets/resource_help.html:2 msgid "What's a resource?" -msgstr "" +msgstr "Čo je dátový zdroj?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." -msgstr "" +msgstr "Dátový zdroj môže byť ľubovoľný súbor alebo odkaz na súbor obsahujúci užitočné dáta." #: ckan/templates/package/snippets/resource_item.html:24 msgid "Explore" -msgstr "" +msgstr "Preskúmať" #: ckan/templates/package/snippets/resource_item.html:36 msgid "More information" -msgstr "" +msgstr "Doplňujúce informácie" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Zakomponovať" #: ckan/templates/package/snippets/resource_view.html:24 msgid "This resource view is not available at the moment." -msgstr "" +msgstr "Náhľad dátového zdroja nie je momentálne k dispozícii." #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "" +msgstr "Vložiť náhľad dátového zdroja" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "" +msgstr "Môžete skopírovať a vložiť pridaný kód do CMS alebo do blog softvéru, ktorý podporuje raw HTML" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Šírka" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Výška" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" @@ -3771,15 +3691,15 @@ msgstr "Kód" #: ckan/templates/package/snippets/resource_views_list.html:8 msgid "Resource Preview" -msgstr "" +msgstr "Zobrazenie dátového zdroja" #: ckan/templates/package/snippets/resources_list.html:13 msgid "Data and Resources" -msgstr "" +msgstr "Dáta a Dátové zdroje" #: ckan/templates/package/snippets/resources_list.html:29 msgid "This dataset has no data" -msgstr "" +msgstr "Tento dataset neobsahuje dáta" #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format @@ -3789,183 +3709,50 @@ msgstr "Načítať datasety z %s" #: ckan/templates/package/snippets/stages.html:23 #: ckan/templates/package/snippets/stages.html:25 msgid "Create dataset" -msgstr "" +msgstr "Vytvoriť dataset" #: ckan/templates/package/snippets/stages.html:30 #: ckan/templates/package/snippets/stages.html:34 #: ckan/templates/package/snippets/stages.html:36 msgid "Add data" -msgstr "" +msgstr "Pridať dáta" #: ckan/templates/package/snippets/view_form.html:8 msgid "eg. My View" -msgstr "" +msgstr "napr. Môj náhľad" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "" +msgstr "napr. Informácie o mojom náhľade" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "" +msgstr "Pridať filter" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "Odstrániť filter" #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" -msgstr "" +msgstr "Filtre" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "" +msgstr "Čo je náhľad?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Aplikácie a Nápady" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtrovať podľa druhu" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Všetky" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Triediť podľa" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Štandardné" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Požiť" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" +msgstr "Náhľad je reprezentácia dát dátového zdroja" #: ckan/templates/revision/diff.html:6 msgid "Differences" -msgstr "" +msgstr "Rozdiely" #: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 #: ckan/templates/revision/diff.html:23 msgid "Revision Differences" -msgstr "" +msgstr "Rozdiely revízií" #: ckan/templates/revision/diff.html:44 msgid "Difference" @@ -3973,7 +3760,7 @@ msgstr "Rozdiel" #: ckan/templates/revision/diff.html:54 msgid "No Differences" -msgstr "" +msgstr "Žiadne rozdiely" #: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 #: ckan/templates/revision/list.html:10 @@ -4045,7 +3832,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Neexistujú žiadne {facet_type} ktoré zodpovedajú hľadanému výrazu" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Domov" @@ -4054,7 +3840,7 @@ msgid "Language" msgstr "Jazyk" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4086,21 +3872,25 @@ msgstr "Zatiaľ neboli pridané žiadne aplikácie, novinky, príbehy alebo obr msgid "Add Item" msgstr "Pridať položku" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Vložiť" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Zoradiť podľa" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Výsledky filtrovania" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Prosím vyskúšajte iný vyhľadávací výraz.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4181,7 +3971,7 @@ msgid "Subscribe" msgstr "Prihlásiť k odberu" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4200,10 +3990,6 @@ msgstr "Úpravy" msgid "Search Tags" msgstr "Hľadať tagy" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Nastenka" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Novinky" @@ -4267,36 +4053,27 @@ msgstr "Pomocou vášho CKAN profilu môžete povedať ostatným používateľom msgid "Change details" msgstr "Zmena údajov" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Používateľské meno" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Celé meno" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "napr. Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "napr. joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Základné informácie o vás" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Prihlásiť sa k emailovým upozorneniam" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Zmena hesla" @@ -4318,11 +4095,11 @@ msgstr "Určite chcete vymazať tohto používateľa?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "Ste si istí, že chcete nanovo vygenerovať API kľúč?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Nanovo vygenerovať API kľúč" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" @@ -4414,7 +4191,7 @@ msgstr "Aby ste mohli vytvárať datasety, skupiny a veľa ďalších zaujímav #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "Používateľské meno" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" @@ -4476,11 +4253,11 @@ msgstr "Kľúč API" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Obnoviť heslo" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Požiadať o obnovenie" #: ckan/templates/user/request_reset.html:34 msgid "" @@ -4529,15 +4306,15 @@ msgstr "Doposiaľ nenahrané" msgid "DataStore resource not found" msgstr "Požadovaný zdroj z DataStore nebol nájdený" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "Dáta boli neplatné (napríklad: číselná hodnota je mimo rozsah alebo bola vložená do textového poľa)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Zdroj \"{0}\" nebol nájdený" @@ -4545,13 +4322,21 @@ msgstr "Zdroj \"{0}\" nebol nájdený" msgid "User {0} not authorized to update resource {1}" msgstr "Používateľ {0} nemá oprávnenie na úpravu zdroja {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datasetov na stránku" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "Vlastné pole vzostupne" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "Vlastné pole zostupne" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 @@ -4569,6 +4354,10 @@ msgstr "Kód krajiny" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" +msgstr "vlastný zdroj textu" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" msgstr "" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 @@ -4578,134 +4367,93 @@ msgstr "Táto skupina nemá popis" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "Nástroj CKAN-u na zobrazenie dát má mnoho užitočných funkcií" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "URL obrázku" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +msgstr "napr. http://example.com/image.jpg (ak je prázdne, použije sa url dátového zdroja)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" -msgstr "" +msgstr "Data Explorer" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "Tabuľka" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Graf" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" +msgstr "Mapa" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Táto zkompilovaná verzia SlickGrid bola získana pomocou Google Closure\n Compiler s využitím nasledujúceho príkazu:\n\n java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nĎaľšie dva súbory sú potrebné k tomu, aby SlickGrid náhľad fungoval správne:\n* jquery-ui-1.8.16.custom.min.js\n* jquery.event.drag-2.0.min.js\n\nTieto súbory sú súčasťou zdrojového kódu Recline, ale neboli zaradené do buildu s účelom zjednodušenia riešenia problému s kompatibilitou.\n\nProsím, oboznámte sa s licenciou SlickGrid, ktorá je súčasťou súboru MIT-LICENSE.txt file.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "Row offset" -msgstr "" +msgstr "offset riadka" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "napr: 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Počet riadkov" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "napr: 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Typ grafu" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Skupina (os 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Rad (os 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "Typ poľa" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" -msgstr "" +msgstr "pole zemepisná šírka" #: ckanext/reclineview/theme/templates/recline_map_form.html:8 msgid "Longitude field" -msgstr "" +msgstr "pole zemepisná dĺžka" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "GeoJSON pole" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" -msgstr "" +msgstr "Auto zoom funkcií" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "Značky klastra" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Celkový počet datasetov" @@ -4733,33 +4481,27 @@ msgstr "Nové datasety" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Najlepšie hodnotené datasety" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Priemerné hodnotenie" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Počet hodnotení" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Bez hodnotení" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Najviac upravované datasety" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Počet úprav" @@ -4769,12 +4511,10 @@ msgstr "Žiadne datasety neboli upravené" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Najväčšie skupiny" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Počet datasetov" @@ -4784,7 +4524,6 @@ msgstr "Žiadne skupiny" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Najčastejšie tagy" @@ -4799,8 +4538,8 @@ msgstr "Počet datasetov" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Používatelia vlastniaci najviac datasetov" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4810,49 +4549,23 @@ msgstr "Štatistické menu" msgid "Total Number of Datasets" msgstr "Ceľkový počet datasetov" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Štatistika" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Týždenné revízie datasetov" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Užívatelia s najväčším počtom datasetov" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Posledná úprava stránky" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Rebríček - štatistika" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Rebríček datasetov" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Vyberte atribút datasetu a zistite, ktoré kategórie v danej oblasti majú najviac datasetov. Napr. tagy, skupiny, licencie, formát, krajina." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Vyberte oblasť" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Webová stránka" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "URL webovej stránky" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "napr. http://example.com (ak je prázdna, použije sa url dátového zdroja)" diff --git a/ckan/i18n/sl/LC_MESSAGES/ckan.mo b/ckan/i18n/sl/LC_MESSAGES/ckan.mo index 42512db7227..01897d927f5 100644 Binary files a/ckan/i18n/sl/LC_MESSAGES/ckan.mo and b/ckan/i18n/sl/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/sl/LC_MESSAGES/ckan.po b/ckan/i18n/sl/LC_MESSAGES/ckan.po index 3e906d4e3bf..89339537383 100644 --- a/ckan/i18n/sl/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sl/LC_MESSAGES/ckan.po @@ -3,258 +3,260 @@ # This file is distributed under the same license as the ckan project. # # Translators: +# Adrià Mercader , 2015 +# Atharex , 2015 # , 2011 # Sean Hammond , 2012 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:23+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Slovenian (http://www.transifex.com/projects/p/ckan/language/sl/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:24+0000\n" +"Last-Translator: dread \n" +"Language-Team: Slovenian (http://www.transifex.com/okfn/ckan/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" -msgstr "" +msgstr "Manjkajoča avtorizacijska funkcija: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" -msgstr "" +msgstr "Administrator" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" -msgstr "" +msgstr "Urejevalec" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" -msgstr "" +msgstr "Član" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" -msgstr "" +msgstr "Za administracijo so potrebne sistemske pravice" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" -msgstr "" +msgstr "Naslov strani" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" -msgstr "" +msgstr "Stil" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" -msgstr "" +msgstr "Napis strani" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" -msgstr "" +msgstr "Logo strani" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" -msgstr "O tem" +msgstr "O strani" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" -msgstr "" +msgstr "Besedilo o strani" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" -msgstr "" +msgstr "Uvodno besedilo" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" -msgstr "" +msgstr "Besedilo na domači strani" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" -msgstr "" +msgstr "CSS po meri" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" -msgstr "" +msgstr "CSS po meri vstavljen v glavo strani" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" -msgstr "" +msgstr "Domača stran" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" -msgstr "" +msgstr "Ni možno izbrisati paketa %s, ker povezana revizija %s vsebuje ne-izbrisane pakete %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" -msgstr "" +msgstr "Problem pri odstranitvi revizije %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" -msgstr "" +msgstr "Odstranitev dokončana" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." -msgstr "" +msgstr "Ukaz ni implementiran" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" -msgstr "" +msgstr "Nimate dovoljenja za ogled te strani" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Dostop zavrnjen" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" -msgstr "" +msgstr "Ni na voljo" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" -msgstr "" +msgstr "Neveljavna zahteva" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" -msgstr "" +msgstr "Ime ukaza je neznan: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON napaka: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" -msgstr "" +msgstr "Neuspešna zahteva podatkov: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" -msgstr "" +msgstr "Ni možno predstaviti entite tega tipa: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" -msgstr "" +msgstr "Ni možno prebrati entitete tega tipa: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" -msgstr "Nove entitete izbranega tipa ni bilo moč ustvariti: %s %s" +msgstr "Nove entitete izbranega tipa ni bilo mogoče ustvariti: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" -msgstr "" +msgstr "Ni možno dodati paketa k iskalnemu indeksu" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" -msgstr "Entitete tega tipa ni bilo moč posodobiti: %s" +msgstr "Entitete tega tipa ni bilo mogoče posodobiti: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" -msgstr "" +msgstr "Ni možno posodobiti iskalni indeks" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Entitete tega tipa ni mogoče izbrisati: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" -msgstr "" +msgstr "Revizija ni izbrana" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Različica za id %s ne obstaja." -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" +msgstr "Manjka iskalni niz ('od id=UUID' ali 'od time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" -msgstr "" +msgstr "Ni bilo možno prebrati parametra: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Neveljaven iskalni parameter: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" -msgstr "Unknown register: %s" +msgstr "Neznan register: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" -msgstr "" +msgstr "Nepravilna qjson vrednost: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Parametri zahtevka morajo biti zapisani v obliki json slovarja." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" -msgstr "Skupine ni bilo moč najti" +msgstr "Skupine ni bilo mogoče najti" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Organizacije ni bilo mogoče najti" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" -msgstr "" +msgstr "Nepravilen tip skupine" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" -msgstr "" +msgstr "Nimate dovoljenja za branje skupine: %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -263,25 +265,25 @@ msgstr "" #: ckan/templates/organization/read_base.html:6 #: ckan/templates/package/base.html:14 msgid "Organizations" -msgstr "" +msgstr "Organizacije" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Skupine" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -289,393 +291,302 @@ msgstr "Skupine" msgid "Tags" msgstr "Oznake" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" -msgstr "" +msgstr "Formati" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" -msgstr "" +msgstr "Licence" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" -msgstr "" +msgstr "Nimate dovoljenja za masovne posodobitve" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" -msgstr "" +msgstr "Nimate dovoljenja za ustvarjanje skupin" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Uporabnik %r nima dovoljenja za urejanje %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" -msgstr "" +msgstr "Napaka v integriteti" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Uporabnik %r nima dovoljenja za urejanje %s dovoljenj" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" -msgstr "" +msgstr "Nimate dovoljenja za brisanje skupine %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." -msgstr "" +msgstr "Organizacija je bila izbrisana" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." -msgstr "" +msgstr "Skupina je bila izbrisana" + +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s je bil izbrisan." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" -msgstr "" +msgstr "Nimate dovoljenja za dodajanje članov v skupino: %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" -msgstr "" +msgstr "Nimate dovoljenja za brisanje članov skupine :%s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." -msgstr "" +msgstr "Član skupine je bil izbrisan." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Pred primerjanjem morate izbrati dve verziji." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Uporabnik %r ni pooblaščen za urejanje %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" -msgstr "" +msgstr "Zgodovina revizij CKAN skupine" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " -msgstr "" +msgstr "Nedavne spremembe CKAN skupin: " -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Dnevniški zapis: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" -msgstr "" +msgstr "Nimate dovoljenja za branje skupine {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" -msgstr "" +msgstr "Sedaj sledite {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" -msgstr "" +msgstr "Prenehali ste slediti {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" -msgstr "" +msgstr "Nimate dovoljenja za prikaz sledilcev :%s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." -msgstr "" +msgstr "Stran trenutno ni na voljo. Podatkovna baza ni inicializirana." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " -msgstr "" +msgstr "Prosim posodobite svoj profil in dodajte vaš email naslov. " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "" - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" +msgstr "%s uporablja vaš email naslov, če želite ponastaviti vaše geslo." -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +msgstr "Parameter \"{parameter_name}\" ni cela številka" + +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" -msgstr "" +msgstr "Podatki niso na voljo" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Nimate pravic za branje paketa %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" -msgstr "" +msgstr "Nepravilen foramt revizije: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." -msgstr "" +msgstr "Predogled {package_type} naborov podatkov v {format} formatu ni podprto (datoteka z osnutkom {file} ni na voljo)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" -msgstr "" +msgstr "Zgodovina revizij CKAN podatkov" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " -msgstr "" +msgstr "Nedavne spremembe CKAN podatkov:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" -msgstr "" +msgstr "Nimate dovoljenja za ustvarjenje paketa" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" -msgstr "" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +msgstr "Nimate dovoljenja za urejanje tega vira" + +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" -msgstr "" +msgstr "Vir ni na voljo" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" -msgstr "" +msgstr "Nimate dovoljanje za posodobitev nabora podatkov" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." -msgstr "" +msgstr "Nabor podatkov {id} ni an voljo" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" -msgstr "" +msgstr "Dodati morate vsaj en podatkovni vir" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" -msgstr "" +msgstr "Napaka" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" -msgstr "" +msgstr "Nimate dovoljenja za ustvarjenje vira" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "Nimate dovoljenja za ustvarjanje vira za ta paket" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." -msgstr "" +msgstr "Ni mogoče dodate paketa v iskalni indeks" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." -msgstr "" +msgstr "Ni mogoče posodobiti iskalni indeks" + +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Nabor podatkov je bil izbrisan" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" -msgstr "" +msgstr "Nimate dovoljenja za izbris paketa %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." -msgstr "" +msgstr "Vir je bil izbrisan" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" -msgstr "" +msgstr "Nimate dovoljenja za izbris vira %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" -msgstr "" +msgstr "Nimate dovoljenja za branje nabora podatkov %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "Ogled vira ni na voljo" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" -msgstr "" +msgstr "Nimate dovoljenja za branje vira %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" -msgstr "" +msgstr "Podatki o viru niso na voljo" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" -msgstr "" +msgstr "Prenos podatkov ni na voljo" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Nimate dovoljenja za urejanje vira" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "Pogled ni na voljo" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "Nimate dovoljenja za ogled pogleda %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "Tip pogleda ni na voljo" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Nepravilen zahtevek za pogled vira podatkov" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Nimate dovoljanje za branje vira pogleda %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "Vir pogleda ni podan" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." -msgstr "" - -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" +msgstr "Predogled ni definiran" #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" @@ -688,11 +599,11 @@ msgstr "Nedavne spremembe skladišča CKAN." #: ckan/controllers/revision.py:108 #, python-format msgid "Datasets affected: %s.\n" -msgstr "" +msgstr "Nabori podatki, ki so bili vplivani: %s.\n" #: ckan/controllers/revision.py:188 msgid "Revision updated" -msgstr "" +msgstr "Revizija posodobljena" #: ckan/controllers/tag.py:56 msgid "Other" @@ -700,252 +611,264 @@ msgstr "Drugo" #: ckan/controllers/tag.py:70 msgid "Tag not found" -msgstr "" +msgstr "Oznaka ne obstaja" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" -msgstr "" +msgstr "Uporabnik ne obstaja" #: ckan/controllers/user.py:149 msgid "Unauthorized to register as a user." -msgstr "" +msgstr "Nimate dovoljenja za registracijo kot uporabnik." #: ckan/controllers/user.py:166 msgid "Unauthorized to create a user" -msgstr "" +msgstr "Nimate dovoljenja za ustvarjanje novega uporabnika" #: ckan/controllers/user.py:197 msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" +msgstr "Nimate dovoljenja za brisanje uporabnika z id \"{user_id}\"." #: ckan/controllers/user.py:211 ckan/controllers/user.py:270 msgid "No user specified" -msgstr "" +msgstr "Uporabnik ni izbran" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" -msgstr "" +msgstr "Nimate dovoljenja za urejanje uporabnika %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" -msgstr "" +msgstr "Profil posodobljen" #: ckan/controllers/user.py:232 #, python-format msgid "Unauthorized to create user %s" -msgstr "" +msgstr "Nimate dovoljenja za ustvarjenje uporabnika %s" #: ckan/controllers/user.py:238 msgid "Bad Captcha. Please try again." -msgstr "" +msgstr "Napačen Captcha. Prosim poskusite ponovno." #: ckan/controllers/user.py:255 #, python-format msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" -msgstr "" +msgstr "Uporabnik \"%s\" je sedaj registriran, vendar vi ste še vedno prijavljeni kot \"%s\" od prej" #: ckan/controllers/user.py:276 msgid "Unauthorized to edit a user." -msgstr "" +msgstr "Nimate dovoljenja za urejanje uporabnika" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za urejanje %s" + +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Vnešeno geslo je napačno" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Staro geslo" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "Nepravilno geslo" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." -msgstr "" +msgstr "Prijava neuspešna. Napačno uporabniško ime ali geslo." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." -msgstr "" +msgstr "Nimate dovoljenja za zahtevo ponastavitve gesla-" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" -msgstr "" +msgstr "\"%s\" ustreza večim uporabnikom" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" -msgstr "" +msgstr "Uporabnik: %s ne obstaja" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." -msgstr "" +msgstr "Prosimo preverite inbox za kodo za ponastavitev." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" -msgstr "" +msgstr "Ni možno poslati povezave za ponastavitev: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." -msgstr "" +msgstr "Nimate dovoljenja za ponastavitev gesla." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." -msgstr "" +msgstr "Nepravilen ključ za ponastavitev. Prosim poskusite ponovno." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." -msgstr "" +msgstr "Vaše geslo je bilo ponastavljeno." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." -msgstr "" +msgstr "Vaše geslo mora vsebovat vsaj 4 znake-" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." -msgstr "" +msgstr "Vnešeni gesli se ne ujemata." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" -msgstr "" +msgstr "Morate vnesti geslo" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" -msgstr "" +msgstr "Predmet za sledenje ni na voljo" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" -msgstr "" +msgstr "{0} ni na voljo" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" -msgstr "" +msgstr "nimate dovoljenja za branje {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" -msgstr "" +msgstr "Vse" #: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 msgid "Missing Value" -msgstr "" +msgstr "Manjkajoča vrednost" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Preusmeritev na zunanjo stran ni dovoljena." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" +msgstr "{actor} je dodal oznako {tag} k naboru podatkov {dataset}" #: ckan/lib/activity_streams.py:67 msgid "{actor} updated the group {group}" -msgstr "" +msgstr "{actor} je posodobil skupino {group}" #: ckan/lib/activity_streams.py:70 msgid "{actor} updated the organization {organization}" -msgstr "" +msgstr "{actor} je posodobil organizacijo {organization}" #: ckan/lib/activity_streams.py:73 msgid "{actor} updated the dataset {dataset}" -msgstr "" +msgstr "{actor} je posodobil nabor podatkov {dataset}" #: ckan/lib/activity_streams.py:76 msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" +msgstr "{actor} je spremenil ekstra {extra} nabora podatkov {dataset}" #: ckan/lib/activity_streams.py:79 msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" +msgstr "{actor} je posodobil vir {resource} nabora podatkov {dataset}" #: ckan/lib/activity_streams.py:82 msgid "{actor} updated their profile" -msgstr "" +msgstr "{actor} je posodobil svoj profil" #: ckan/lib/activity_streams.py:86 msgid "" "{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" +msgstr "{actor} je posodobil {related_type} {related_item} nabora podatkov {dataset}" #: ckan/lib/activity_streams.py:89 msgid "{actor} updated the {related_type} {related_item}" -msgstr "" +msgstr "{actor} je posodobil {related_type} {related_item}" #: ckan/lib/activity_streams.py:92 msgid "{actor} deleted the group {group}" -msgstr "" +msgstr "{actor} je izbrisal skupino {group}" #: ckan/lib/activity_streams.py:95 msgid "{actor} deleted the organization {organization}" -msgstr "" +msgstr "{actor} je izbrisal organizacijo {organization}" #: ckan/lib/activity_streams.py:98 msgid "{actor} deleted the dataset {dataset}" -msgstr "" +msgstr "{actor} je izbrisal nabor podatkov {dataset}" #: ckan/lib/activity_streams.py:101 msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" +msgstr "{actor} je zbrisal ekstra {extra} nabora podatkov {dataset}" #: ckan/lib/activity_streams.py:104 msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" +msgstr "{actor} je izbrisal vir {resource} nabora podatkov {dataset}" #: ckan/lib/activity_streams.py:108 msgid "{actor} created the group {group}" -msgstr "" +msgstr "{actor} je ustvaril skupino {group}" #: ckan/lib/activity_streams.py:111 msgid "{actor} created the organization {organization}" -msgstr "" +msgstr "{actor} je ustvaril organizacijo {organization}" #: ckan/lib/activity_streams.py:114 msgid "{actor} created the dataset {dataset}" -msgstr "" +msgstr "{actor} je ustvaril nabor podatkov {dataset}" #: ckan/lib/activity_streams.py:117 msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" +msgstr "{actor} je dodal ekstra {extra} naboru podatkov {dataset}" #: ckan/lib/activity_streams.py:120 msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" +msgstr "{actor} je dodal vir {resource} naboru podatkov {dataset}" #: ckan/lib/activity_streams.py:123 msgid "{actor} signed up" -msgstr "" +msgstr "{actor} se je prijavil" #: ckan/lib/activity_streams.py:126 msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" +msgstr "{actor} je odstranil oznako {tag} naboru podatkov {dataset}" #: ckan/lib/activity_streams.py:129 msgid "{actor} deleted the related item {related_item}" -msgstr "" +msgstr "{actor} je izbrisal sorodni predmet {related_item}" #: ckan/lib/activity_streams.py:132 msgid "{actor} started following {dataset}" -msgstr "" +msgstr "{actor} je začel slediti {dataset}" #: ckan/lib/activity_streams.py:135 msgid "{actor} started following {user}" -msgstr "" +msgstr "{actor} je začel slediti {user}" #: ckan/lib/activity_streams.py:138 msgid "{actor} started following {group}" -msgstr "" +msgstr "{actor} je začel slediti {group}" #: ckan/lib/activity_streams.py:142 msgid "" "{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" +msgstr "{actor} je dodal {related_type} {related_item} naboru podatkov {dataset}" #: ckan/lib/activity_streams.py:145 msgid "{actor} added the {related_type} {related_item}" -msgstr "" +msgstr "{actor} je dodal {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -953,7 +876,7 @@ msgid "View" msgstr "Preglej" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" msgstr[1] "" @@ -962,213 +885,213 @@ msgstr[3] "" #: ckan/lib/formatters.py:17 msgid "January" -msgstr "" +msgstr "Januar" #: ckan/lib/formatters.py:21 msgid "February" -msgstr "" +msgstr "Februar" #: ckan/lib/formatters.py:25 msgid "March" -msgstr "" +msgstr "Marec" #: ckan/lib/formatters.py:29 msgid "April" -msgstr "" +msgstr "April" #: ckan/lib/formatters.py:33 msgid "May" -msgstr "" +msgstr "Maj" #: ckan/lib/formatters.py:37 msgid "June" -msgstr "" +msgstr "Junij" #: ckan/lib/formatters.py:41 msgid "July" -msgstr "" +msgstr "Julij" #: ckan/lib/formatters.py:45 msgid "August" -msgstr "" +msgstr "Avgust" #: ckan/lib/formatters.py:49 msgid "September" -msgstr "" +msgstr "September" #: ckan/lib/formatters.py:53 msgid "October" -msgstr "" +msgstr "Oktober" #: ckan/lib/formatters.py:57 msgid "November" -msgstr "" +msgstr "November" #: ckan/lib/formatters.py:61 msgid "December" -msgstr "" +msgstr "December" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" -msgstr "" +msgstr "V tem trenutku" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Pred 0 minutami" +msgstr[1] "Pred 1 minuto" +msgstr[2] "Pred 2 minutama" +msgstr[3] "Pred {mins} minutami" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Pred 0 urami" +msgstr[1] "Pred 1 uro" +msgstr[2] "Pred 2 urama" +msgstr[3] "Pred {hours} urami" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Danes" +msgstr[1] "Včeraj" +msgstr[2] "Predvčerajšnjim" +msgstr[3] "Pred {days} dnevi" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Ta mesec" +msgstr[1] "Prejšnji mesec" +msgstr[2] "2 meseca nazaj" +msgstr[3] "{months} mesecev nazaj" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Letos" +msgstr[1] "Lani" +msgstr[2] "Predlani" +msgstr[3] "{years} let nazaj" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" -msgstr "" +msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" -msgstr "" +msgstr "{bytes} bajtov" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" -msgstr "" +msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" -msgstr "" +msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" -msgstr "" +msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" -msgstr "" +msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" -msgstr "" +msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" -msgstr "" +msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" -msgstr "" +msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" -msgstr "" +msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" -msgstr "" +msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" -msgstr "" +msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" -msgstr "" +msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" -msgstr "" +msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" -msgstr "" +msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" -msgstr "" +msgstr "Posodobite svojega avatarja na gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" -msgstr "" +msgstr "Neznano" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" -msgstr "" +msgstr "Neimenovan vir" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." -msgstr "" +msgstr "Nov nabor podatkov ustvarjen" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." -msgstr "" +msgstr "Viri urejeni." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." -msgstr "" +msgstr "Nastavitve urejene." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Ni ogledov" +msgstr[1] "En ogled" +msgstr[2] "Dva ogleda" +msgstr[3] "{number} ogledov" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Ni nedavnih ogledov" +msgstr[1] "1 nedaven ogled" +msgstr[2] "2 nedavna ogleda" +msgstr[3] "{number} nedavnih ogledov" #: ckan/lib/mailer.py:25 #, python-format msgid "Dear %s," -msgstr "" +msgstr "Zdravo %s," #: ckan/lib/mailer.py:38 #, python-format msgid "%s <%s>" -msgstr "" +msgstr "%s <%s>" #: ckan/lib/mailer.py:99 msgid "No recipient email address available!" -msgstr "" +msgstr "Email naslov prejemnika ni na voljo" #: ckan/lib/mailer.py:104 msgid "" @@ -1177,25 +1100,25 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Na strani {site_title} ste podali zahtevek za ponastavitev gesla.\n\nProsim kliknite spodnjo povezavo, da potrdite to zahtevo:\n\n {reset_link}\n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Povabljeni ste na {site_title}. Uporabnik z vašim uporabniškim imenom {user_name} je že bil ustvarjen. Lahko ga spremenite kasneje.\n\nZa sprejem vabila, prosimo ponastavite svoje geslo na:\n\n{reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 msgid "Reset your password" -msgstr "" +msgstr "Ponastavite geslo" #: ckan/lib/mailer.py:151 msgid "Invite for {site_title}" -msgstr "" +msgstr "Povabi za {site_title}" #: ckan/lib/navl/dictization_functions.py:11 #: ckan/lib/navl/dictization_functions.py:13 @@ -1206,20 +1129,20 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" -msgstr "" +msgstr "Manjkajoča vrednost" #: ckan/lib/navl/validators.py:64 #, python-format msgid "The input field %(name)s was not expected." -msgstr "" +msgstr "Vnosno polje %(name)s ni bilo pričakovano" #: ckan/lib/navl/validators.py:116 msgid "Please enter an integer value" -msgstr "" +msgstr "Prosimo vnesite celo številsko vrednost" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1229,11 +1152,11 @@ msgstr "" msgid "Resources" msgstr "Viri" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" -msgstr "" +msgstr "Paketni vir(i) neustrezni" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Dodatno" @@ -1241,695 +1164,687 @@ msgstr "Dodatno" #: ckan/logic/converters.py:72 ckan/logic/converters.py:87 #, python-format msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" +msgstr "Slovar oznak \"%s\" ne obstaja" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" -msgstr "" +msgstr "Uporabnik" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" -msgstr "" +msgstr "Nabor podatkov" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Skupina" #: ckan/logic/converters.py:178 msgid "Could not parse as valid JSON" -msgstr "" +msgstr "Ni bilo mogoče prebrati kot ustrezen JSON" #: ckan/logic/validators.py:30 ckan/logic/validators.py:39 msgid "A organization must be supplied" -msgstr "" - -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" +msgstr "Organizacija mora biti izbrana" -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" -msgstr "" +msgstr "Organizacija ne obstaja" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" -msgstr "" +msgstr "Ne morete dodati nabora podatkov k tej organizaciji" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" -msgstr "" +msgstr "Neustrezna celoštevilska vrednost" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" -msgstr "" +msgstr "Mora biti naravno število" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" -msgstr "" +msgstr "Mora biti pozitivna celoštevilska vrednost" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" -msgstr "" +msgstr "Neustrezen format datuma" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Dnevniški zapis ne sme vsebovati povezav." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "Nabor podatkov s tem id-jem že obstaja" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" -msgstr "" +msgstr "Vir" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" -msgstr "" +msgstr "Soroden" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." -msgstr "" +msgstr "To ime skupine ali ID ne obstaja." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" -msgstr "" +msgstr "Tip aktivnosti" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" -msgstr "" +msgstr "Imena morajo biti nizi" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" -msgstr "" +msgstr "To ime se ne more uporabiti" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Mora biti dolgo vsaj %s znakov" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" -msgstr "" +msgstr "Ime more biti največ %i znakov dolgo" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "Mora biti samo z malimi črkami alfanumeričnih (ascii) znakov in simbolov: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." -msgstr "" +msgstr "Ta URL je že v uporabi" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" -msgstr "" +msgstr "Dolžina imena \"%s\" je manjša od minimuma %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" -msgstr "" +msgstr "Dolžina imena \"%s\" je večja od maksimuma %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" -msgstr "" +msgstr "verzija mora biti največ %i znakov dolga" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" -msgstr "Podvojena ključna vrednost \"%s\"" +msgstr "Podvojen ključ \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" -msgstr "Skupina s tem imenom že obstaja v bazi" +msgstr "Skupina s tem imenom že obstaja v podatkovni bazi" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" -msgstr "Oznaka \"%s\" je krajša kot je minimum %s" +msgstr "Dolžina oznake \"%s\" je manjša od minimuma %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" +msgstr "Dolžina oznake \"%s\" je večja od maksimuma %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Oznaka \"%s\" mora biti iz alfanumeričnih znakov ali simbolov: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Oznaka \"%s\" ne sme imeti velikih črk" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" -msgstr "" +msgstr "Uporabniška imena morajo biti nizi" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." -msgstr "" +msgstr "To uporabniško ime ni na voljo" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" -msgstr "" +msgstr "Prosimo vnesite obe gesli" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" -msgstr "" +msgstr "Gesli morata biti niza" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" -msgstr "" +msgstr "Vaše geslo mora biti dolgo vsaj 4 znake" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" -msgstr "" +msgstr "Vnešeni gesli se ne ujemata" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." -msgstr "" +msgstr "Urejanje ni dovoljeno, ker izgleda kot spam. Prosim izogibajte se povezav v vašem opisu." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Ime mora biti dolgo vsaj %s znakov" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." -msgstr "" +msgstr "To ime je že uporabljeno v slovarju" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" +msgstr "Ni mogoče spremeniti vrednosti ključa iz %s v %s. Ta ključ je namenjen samo branju" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." -msgstr "" +msgstr "Slovar oznak ni na voljo." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" -msgstr "" +msgstr "Oznaka %s ne pripada slovarju %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" -msgstr "" +msgstr "Ni imena oznake" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" -msgstr "" +msgstr "Oznaka %s že pripada slovarju %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" -msgstr "" +msgstr "Prosim podajte ustrezen URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." -msgstr "" +msgstr "vloga ne obstaja." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." -msgstr "" +msgstr "Nabori podatkov brez organizacij ne morejo biti zasebni." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" -msgstr "" +msgstr "Ni seznam" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" -msgstr "" +msgstr "Ni niz" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" -msgstr "" +msgstr "Ta starš bi naredil krog v hierarhiji" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "\"filter_fields\" in \"filter_values\" morata imeti podobni dolžini" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +msgstr "\"filter_fields\" je nujen ko je \"filter_values\" izpolnjen" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "\"filter_values\" je nujen ko je \"filter_fields\" izpolnjen" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "Polje sheme z istim imenom že obstaja" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Ustvari objekt %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Ustvarite relacijo paketa: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" -msgstr "" +msgstr "REST API: Ustvarite članski objekt %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" -msgstr "" +msgstr "Poskušanje ustvarjanja organizacije kot skupine" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Navesti morate identifikator ali ime paketa (parameter \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Navesti morate oceno (parameter \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Ocena mora biti celoštevilska vrednost." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Ocena mora biti med %i in %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" -msgstr "" +msgstr "Za sledenje uporabnikom morate biti prijavljeni" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" -msgstr "" +msgstr "Ne morete slediti samemu sebi" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" -msgstr "" +msgstr "Vi že sledite {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." -msgstr "" +msgstr "Če želite slediti naboru podatkov morate biti prijavljeni." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." -msgstr "" +msgstr "Uporabnik {username} ne obstaja." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." -msgstr "" +msgstr "Za sledenje skupini morate biti prijavljeni." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" -msgstr "" +msgstr "REST API: Izbris paketa: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Izbris %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" -msgstr "" +msgstr "REST API: Izbris člana: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" -msgstr "" +msgstr "id ni v podatkih" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" -msgstr "" +msgstr "Ni možno najti slovarja \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" -msgstr "" +msgstr "Ni bilo možno najti oznake \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." -msgstr "" +msgstr "Za prekinitev sledenja se je potrebno prijaviti." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." -msgstr "" +msgstr "Ne sledite {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." -msgstr "" +msgstr "Vir ni na voljo." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" -msgstr "" +msgstr "Ne navedite, če uporabljate \"query\" parameter" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" -msgstr "" +msgstr "Morajo biti : pari" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" - -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" +msgstr "Polje \"{field}\" ni prepoznano v resource_search." -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." -msgstr "" +msgstr "Predmet ni na voljo." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." -msgstr "" +msgstr "Paket ni na voljo." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" -msgstr "" +msgstr "REST API: Posodobitev objekta %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Posodobitev relacije paketa: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." -msgstr "" +msgstr "TaskStatus ni na voljo." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." -msgstr "" +msgstr "Organizacija ni na voljo." #: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 #, python-format msgid "User %s not authorized to create packages" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za ustvarjanje paketov" #: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 #, python-format msgid "User %s not authorized to edit these groups" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za urejanje teh skupin" #: ckan/logic/auth/create.py:36 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za dodajanje naborov podatkov k tej organizaciji" #: ckan/logic/auth/create.py:58 msgid "You must be a sysadmin to create a featured related item" -msgstr "" +msgstr "Morate biti skrbnik sistema da lahko ustvarite poseben soroden predmet" #: ckan/logic/auth/create.py:62 msgid "You must be logged in to add a related item" -msgstr "" +msgstr "Za dodajanje sorodnih predmetov morate biti prijavljeni" #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "Id nabora podatkov niste podali, ni možno preveriti avtentikacije." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." -msgstr "" +msgstr "Paketa za ta vir ni na voljo, ni možno preveriti avtentikacije." #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za ustvarjenje vira na naboru podatkov %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za urejanje teh paketov" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za ustvarjanje skupin" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za ustvarjanje organizacij" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" -msgstr "" +msgstr "Uporabnik {user} nima dovoljenja za ustvarjanje uporabnikov preko API-ja" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" -msgstr "" +msgstr "Ni dovoljenja za ustvarjanje uporabnikov" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." -msgstr "" +msgstr "Skupina ne obstaja." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" -msgstr "" +msgstr "Za ustvarjanje paketa potrebujete veljaven API ključ" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" -msgstr "" +msgstr "Za ustvarjanje skupine potrebujete veljaven API ključ" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za dodajanje članov" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za urejanje skupine %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za brisanje vira %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "Pogled vira ni an voljo, ni možno preveriti avtentikacije." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" -msgstr "" +msgstr "Samo lastnik lahko izbriše soroden predmet" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za brisanje relacije %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za brisanje skupin" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za brisanje skupine %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za brisanje organizacij" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za brisanje organizacije %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za brisanje task_status" + +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Nimate dovoljenja" #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za branje teh paketov" #: ckan/logic/auth/get.py:119 #, python-format msgid "User %s not authorized to read package %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za branje paketa %s" #: ckan/logic/auth/get.py:141 #, python-format msgid "User %s not authorized to read resource %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za branje vira %s" #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za branje skupine %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." -msgstr "" +msgstr "Za dostop do digitalne delovne mize morate biti prijavljeni." #: ckan/logic/auth/update.py:37 #, python-format msgid "User %s not authorized to edit package %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za urejanje paketa %s" #: ckan/logic/auth/update.py:69 #, python-format msgid "User %s not authorized to edit resource %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za urejanje vira %s" #: ckan/logic/auth/update.py:98 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za spremembo stanja paketa %s" #: ckan/logic/auth/update.py:126 #, python-format msgid "User %s not authorized to edit organization %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za urjanje organizacije %s" #: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 msgid "Only the owner can update a related item" -msgstr "" +msgstr "Samo lastnik lahko posodobi soroden predmet" #: ckan/logic/auth/update.py:148 msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" +msgstr "Morate biti skrbnik sistema, da lahko spremenite posebno polje sorodenga predmeta." #: ckan/logic/auth/update.py:165 #, python-format msgid "User %s not authorized to change state of group %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za spremembo stanja skupine %s" #: ckan/logic/auth/update.py:182 #, python-format msgid "User %s not authorized to edit permissions of group %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za urejanje dovoljenj skupine %s" #: ckan/logic/auth/update.py:209 msgid "Have to be logged in to edit user" -msgstr "" +msgstr "Za urejanje uporabnika morate biti prijavljeni" #: ckan/logic/auth/update.py:217 #, python-format msgid "User %s not authorized to edit user %s" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za urejanje uporabnika %s" #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "Uporabnik {0} nima dovoljenja za posodobitev uporabnika {1}" #: ckan/logic/auth/update.py:236 #, python-format msgid "User %s not authorized to change state of revision" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za spremembo stanje revizija" #: ckan/logic/auth/update.py:245 #, python-format msgid "User %s not authorized to update task_status table" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za posodobitev task_status tabele" #: ckan/logic/auth/update.py:259 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "" +msgstr "Uporabnik %s nima dovoljenja za posodobitev term_translation tabele" #: ckan/logic/auth/update.py:281 msgid "Valid API key needed to edit a package" -msgstr "" +msgstr "Za urejanje paketa potrebujete veljaven API ključ" #: ckan/logic/auth/update.py:291 msgid "Valid API key needed to edit a group" -msgstr "" +msgstr "Za urejanje skupine potrebujete veljaven API ključ" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "Licenca ni določena" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" -msgstr "" +msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" -msgstr "" +msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" -msgstr "" +msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" -msgstr "" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" -msgstr "" +msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" -msgstr "" +msgstr "Drugo (odprto)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" -msgstr "" +msgstr "Drugo (javna domena)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" -msgstr "" +msgstr "Drugo (pripis)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" -msgstr "" +msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" -msgstr "" +msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" -msgstr "" +msgstr "Drugo (ne-komercialno)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" -msgstr "" +msgstr "Drugo (ni odprto)" #: ckan/model/package_relationship.py:52 #, python-format @@ -1954,12 +1869,12 @@ msgstr "ima predelavo %s" #: ckan/model/package_relationship.py:54 #, python-format msgid "links to %s" -msgstr "" +msgstr "vodi k %s" #: ckan/model/package_relationship.py:54 #, python-format msgid "is linked from %s" -msgstr "" +msgstr "vodi od %s" #: ckan/model/package_relationship.py:55 #, python-format @@ -1984,45 +1899,45 @@ msgstr "je soroden %s" #: ckanext/reclineview/theme/templates/recline_view.html:12 #: ckanext/textview/theme/templates/text_view.html:9 msgid "Loading..." -msgstr "" +msgstr "Nalaganje..." #: ckan/public/base/javascript/modules/api-info.js:20 msgid "There is no API data to load for this resource" -msgstr "" +msgstr "Ni na voljo API podatkov za ta vir" #: ckan/public/base/javascript/modules/api-info.js:21 msgid "Failed to load data API information" -msgstr "" +msgstr "Nalaganje podatkov o API informacijah ni uspelo" #: ckan/public/base/javascript/modules/autocomplete.js:31 msgid "No matches found" -msgstr "" +msgstr "Ni zadetkov" #: ckan/public/base/javascript/modules/autocomplete.js:32 msgid "Start typing…" -msgstr "" +msgstr "Začnite tipkati…" #: ckan/public/base/javascript/modules/autocomplete.js:34 msgid "Input is too short, must be at least one character" -msgstr "" +msgstr "Vnos je prekratek, mora biti dolg vsaj 1 znak" #: ckan/public/base/javascript/modules/basic-form.js:4 msgid "There are unsaved modifications to this form" -msgstr "" +msgstr "Na tem obrazcu so neshranjene spremembe" #: ckan/public/base/javascript/modules/confirm-action.js:7 msgid "Please Confirm Action" -msgstr "" +msgstr "Prosim potrdite dejanje" #: ckan/public/base/javascript/modules/confirm-action.js:8 msgid "Are you sure you want to perform this action?" -msgstr "" +msgstr "Ste prepričani da želite izvesti to dejanje?" #: ckan/public/base/javascript/modules/confirm-action.js:9 #: ckan/templates/user/new_user_form.html:9 #: ckan/templates/user/perform_reset.html:21 msgid "Confirm" -msgstr "" +msgstr "Potrdi" #: ckan/public/base/javascript/modules/confirm-action.js:10 #: ckan/public/base/javascript/modules/resource-reorder.js:11 @@ -2034,111 +1949,109 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" -msgstr "" +msgstr "Prekliči" #: ckan/public/base/javascript/modules/follow.js:23 #: ckan/templates/snippets/follow_button.html:14 msgid "Follow" -msgstr "" +msgstr "Sledi" #: ckan/public/base/javascript/modules/follow.js:24 #: ckan/templates/snippets/follow_button.html:9 msgid "Unfollow" -msgstr "" +msgstr "Prenehaj slediti" #: ckan/public/base/javascript/modules/image-upload.js:15 msgid "Upload" -msgstr "" +msgstr "Naloži" #: ckan/public/base/javascript/modules/image-upload.js:16 msgid "Link" -msgstr "" +msgstr "Poveži" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" -msgstr "" +msgstr "Odstrani" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" -msgstr "" +msgstr "Slika" #: ckan/public/base/javascript/modules/image-upload.js:19 msgid "Upload a file on your computer" -msgstr "" +msgstr "Naložite datoteko z vašega računalnika" #: ckan/public/base/javascript/modules/image-upload.js:20 msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" +msgstr "Povezava na URL na internetu (lahko tudi povezava na API)" #: ckan/public/base/javascript/modules/related-item.js:25 msgid "show more" -msgstr "" +msgstr "pokaži več" #: ckan/public/base/javascript/modules/related-item.js:26 msgid "show less" -msgstr "" +msgstr "pokaži manj" #: ckan/public/base/javascript/modules/resource-reorder.js:8 msgid "Reorder resources" -msgstr "" +msgstr "Preuredi vire" #: ckan/public/base/javascript/modules/resource-reorder.js:9 #: ckan/public/base/javascript/modules/resource-view-reorder.js:9 msgid "Save order" -msgstr "" +msgstr "Shrani naročilo" #: ckan/public/base/javascript/modules/resource-reorder.js:10 #: ckan/public/base/javascript/modules/resource-view-reorder.js:10 msgid "Saving..." -msgstr "" +msgstr "Shranjujem..." #: ckan/public/base/javascript/modules/resource-upload-field.js:25 msgid "Upload a file" -msgstr "" +msgstr "Naloži datoteko" #: ckan/public/base/javascript/modules/resource-upload-field.js:26 msgid "An Error Occurred" -msgstr "" +msgstr "Prišlo je do napake" #: ckan/public/base/javascript/modules/resource-upload-field.js:27 msgid "Resource uploaded" -msgstr "" +msgstr "Vir naložen" #: ckan/public/base/javascript/modules/resource-upload-field.js:28 msgid "Unable to upload file" -msgstr "" +msgstr "Ni možno naložiti datoteke" #: ckan/public/base/javascript/modules/resource-upload-field.js:29 msgid "Unable to authenticate upload" -msgstr "" +msgstr "Prenosa ni mogoče avtenticirati" #: ckan/public/base/javascript/modules/resource-upload-field.js:30 msgid "Unable to get data for uploaded file" -msgstr "" +msgstr "Podatkov za preneseno datoteko ni mogoč pridobiti" #: ckan/public/base/javascript/modules/resource-upload-field.js:31 msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" -msgstr "" +msgstr "Trenutno prenašate datoteko. Ste prepričani da se želite preusmeriti drugam in prekiniti ta prenos?" #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Preuredi pogled vira" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2152,75 +2065,82 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Uredi" #: ckan/public/base/javascript/modules/table-toggle-more.js:9 msgid "Show more" -msgstr "" +msgstr "Pokaži več" #: ckan/public/base/javascript/modules/table-toggle-more.js:10 msgid "Hide" -msgstr "" +msgstr "Skrij" #: ckan/templates/error_document_template.html:3 #, python-format msgid "Error %(error_code)s" -msgstr "" +msgstr "Napaka %(error_code)s" #: ckan/templates/footer.html:9 msgid "About {0}" -msgstr "" +msgstr "O {0}" #: ckan/templates/footer.html:15 msgid "CKAN API" -msgstr "" +msgstr "CKAN API" #: ckan/templates/footer.html:16 msgid "Open Knowledge Foundation" -msgstr "" +msgstr "Open Knowledge Foundation" #: ckan/templates/footer.html:24 msgid "" "Powered by CKAN" -msgstr "" +msgstr "Portal omogoča CKAN" #: ckan/templates/header.html:12 msgid "Sysadmin settings" -msgstr "" +msgstr "Nastavitve skrbnika sistema" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" -msgstr "" +msgstr "Poglej profil" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Delovna deska ima (%(num)d novih predmetov)" +msgstr[1] "Delovna deska ima (%(num)d novi predmet)" +msgstr[2] "Delovna deska ima (%(num)d nova predmeta)" +msgstr[3] "Delovna deska ima (%(num)d novih predmetov" + +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Digitalna delovna deska" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" -msgstr "" +msgstr "Uredi nastavitve" + +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Nastavitve" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "Odjava" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" -msgstr "" +msgstr "Prijava" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" -msgstr "" +msgstr "Registracija" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2229,7 +2149,6 @@ msgstr "" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2237,70 +2156,68 @@ msgstr "" #: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 #: ckan/templates/user/read_base.html:53 msgid "Datasets" -msgstr "" +msgstr "Nabori podatkov" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" -msgstr "" +msgstr "Preišči nabore podatkov" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" -msgstr "" +msgstr "Išči" #: ckan/templates/page.html:6 msgid "Skip to content" -msgstr "" +msgstr "Preskoči na vsebino" #: ckan/templates/activity_streams/activity_stream_items.html:9 msgid "Load less" -msgstr "" +msgstr "Naloži manj" #: ckan/templates/activity_streams/activity_stream_items.html:17 msgid "Load more" -msgstr "" +msgstr "Naloži več" #: ckan/templates/activity_streams/activity_stream_items.html:23 msgid "No activities are within this activity stream" -msgstr "" +msgstr "Ni aktivnosti v tem toku aktivnosti" #: ckan/templates/admin/base.html:3 msgid "Administration" -msgstr "" +msgstr "Administracija" #: ckan/templates/admin/base.html:8 msgid "Sysadmins" -msgstr "" +msgstr "Skrbniki sistema" #: ckan/templates/admin/base.html:9 msgid "Config" -msgstr "" +msgstr "Nastavitve" #: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 msgid "Trash" -msgstr "" +msgstr "Smeti" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" -msgstr "" +msgstr "Ste prepričani da želite ponastaviti nastavitve?" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" -msgstr "" +msgstr "Ponastavi" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" -msgstr "" +msgstr "Posodobi nastavitve" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" -msgstr "" +msgstr "CKAN nastavitve" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2318,16 +2235,16 @@ msgid "" "target=\"_blank\">reading the documentation.

" "

Homepage: This is for choosing a predefined layout for " "the modules that appear on your homepage.

" -msgstr "" +msgstr "

Naslov strani: To je naslov te CKAN instance Pojavi se na različnih mestih po CKANu.

Stil: Izberite s seznama preprostih variacij glavne barvne sheme za hitro menjavo teme.

Logo strani: Ta logo se pojavi v glavi vseh osnutkov the CKAN instance.

O strani: Ta tekst se pojavi na O strani te CKAN instance

Intro Tekst: Ta tekst se pojavi na domači strani te CKAN instance kot pozdrav obiskovalcem.

Lasten CSS: Ta blok CSS-a se pojave v <glavi> vsake strani. Če želite bolj spremeniti podobo te strani , potem priporoačmo da preberete dokumentacijo.

Domača stran: To je za izbiranje vnaprej določenih osnutkov za module, ki se pojavijo na domači strani.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 msgid "Confirm Reset" -msgstr "" +msgstr "Potrdi ponastavitev" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Administriraj CKAN" #: ckan/templates/admin/index.html:20 #, python-format @@ -2335,163 +2252,162 @@ msgid "" "

As a sysadmin user you have full control over this CKAN instance. " "Proceed with care!

For guidance on using sysadmin features, see the " "CKAN sysadmin guide

" -msgstr "" +msgstr "

Kot skrbnik sistema imaš poln nadzor nad to CKAN instanco. Nadaljuj skrbno!

Za nasvete o uporabi skrbniških natavitev, si poglej CKAN skrbniška navodila

" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Očisti" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "

Očisti izbrisani nabor podatkov za vedno in irreverzibilno.

" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" -msgstr "" +msgstr "CKAN podatkovni API" #: ckan/templates/ajax_snippets/api_info.html:23 msgid "Access resource data via a web API with powerful query support" -msgstr "" +msgstr "Dostopaj do podatkov virov preko spletnega API-ja z močno query podporo" #: ckan/templates/ajax_snippets/api_info.html:24 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +msgstr " Več informacij o glavnem CKAN podatkovnem API-ju in DataStore dokumentacija.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" -msgstr "" +msgstr "Končne točke" #: ckan/templates/ajax_snippets/api_info.html:37 msgid "" "The Data API can be accessed via the following actions of the CKAN action " "API." -msgstr "" +msgstr "Do podatkovnega API-ja se lahko dostopa preko naslednjih ukazov iz CKAN API-ja." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" -msgstr "" +msgstr "Ustvari" #: ckan/templates/ajax_snippets/api_info.html:46 msgid "Update / Insert" -msgstr "" +msgstr "Posodobi / Vnesi" #: ckan/templates/ajax_snippets/api_info.html:50 msgid "Query" -msgstr "" +msgstr "Pozvedba" #: ckan/templates/ajax_snippets/api_info.html:54 msgid "Query (via SQL)" -msgstr "" +msgstr "Poizvedba (preko SQL)" #: ckan/templates/ajax_snippets/api_info.html:66 msgid "Querying" -msgstr "" +msgstr "Poizvedovanje" #: ckan/templates/ajax_snippets/api_info.html:70 msgid "Query example (first 5 results)" -msgstr "" +msgstr "Primer pozvedbe (prvih 5 rezultatov)" #: ckan/templates/ajax_snippets/api_info.html:75 msgid "Query example (results containing 'jones')" -msgstr "" +msgstr "Primer poizvedbe (rezultati ki vsebujejo 'jones')" #: ckan/templates/ajax_snippets/api_info.html:81 msgid "Query example (via SQL statement)" -msgstr "" +msgstr "Primer poizvedbe (preko SQL stavkov)" #: ckan/templates/ajax_snippets/api_info.html:93 msgid "Example: Javascript" -msgstr "" +msgstr "Primer: Javascript" #: ckan/templates/ajax_snippets/api_info.html:97 msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" +msgstr "Preprosta ajax (JSONP) poizvedba na podatkovni API z uporabo jQuery." #: ckan/templates/ajax_snippets/api_info.html:118 msgid "Example: Python" -msgstr "" +msgstr "Primer: Python" #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." -msgstr "" +msgstr "Trenutno ni možen predogled vira." #: ckan/templates/dataviewer/snippets/data_preview.html:11 #: ckan/templates/package/resource_read.html:118 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." -msgstr "" +msgstr "Klikni za več informacij." #: ckan/templates/dataviewer/snippets/data_preview.html:18 #: ckan/templates/package/snippets/resource_view.html:33 msgid "Download resource" -msgstr "" +msgstr "Prenesi vir" #: ckan/templates/dataviewer/snippets/data_preview.html:23 #: ckan/templates/package/snippets/resource_view.html:56 #: ckanext/webpageview/theme/templates/webpage_view.html:2 msgid "Your browser does not support iframes." -msgstr "" +msgstr "Vaš brskalnik ne podpira iframe-ov." #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." -msgstr "" +msgstr "Predolged ni na voljo." #: ckan/templates/dataviewer/snippets/no_preview.html:5 msgid "More details..." -msgstr "" +msgstr "Več podrobnosti..." #: ckan/templates/dataviewer/snippets/no_preview.html:12 #, python-format msgid "No handler defined for data type: %(type)s." -msgstr "" +msgstr "Upravljalec za podatkovni tip %(type)s ni definiran." #: ckan/templates/development/snippets/form.html:5 msgid "Standard" -msgstr "" +msgstr "Standard" #: ckan/templates/development/snippets/form.html:5 msgid "Standard Input" -msgstr "" +msgstr "Standardni vhod" #: ckan/templates/development/snippets/form.html:6 msgid "Medium" -msgstr "" +msgstr "Srednji" #: ckan/templates/development/snippets/form.html:6 msgid "Medium Width Input" -msgstr "" +msgstr "Srednje obsežni vhod" #: ckan/templates/development/snippets/form.html:7 msgid "Full" -msgstr "" +msgstr "Polno" #: ckan/templates/development/snippets/form.html:7 msgid "Full Width Input" -msgstr "" +msgstr "Polno obsežni vhod" #: ckan/templates/development/snippets/form.html:8 msgid "Large" -msgstr "" +msgstr "Velik" #: ckan/templates/development/snippets/form.html:8 msgid "Large Input" -msgstr "" +msgstr "Velik vhod" #: ckan/templates/development/snippets/form.html:9 msgid "Prepend" -msgstr "" +msgstr "Predpni" #: ckan/templates/development/snippets/form.html:9 msgid "Prepend Input" -msgstr "" +msgstr "Predpni vhod" #: ckan/templates/development/snippets/form.html:13 msgid "Custom Field (empty)" -msgstr "" +msgstr "Polje po meri (prazno)" #: ckan/templates/development/snippets/form.html:19 #: ckan/templates/group/snippets/group_form.html:35 @@ -2501,19 +2417,19 @@ msgstr "" #: ckan/templates/snippets/custom_form_fields.html:20 #: ckan/templates/snippets/custom_form_fields.html:37 msgid "Custom Field" -msgstr "" +msgstr "Polje po meri" #: ckan/templates/development/snippets/form.html:22 msgid "Markdown" -msgstr "" +msgstr "Označevanje" #: ckan/templates/development/snippets/form.html:23 msgid "Textarea" -msgstr "" +msgstr "Tekstovno polje" #: ckan/templates/development/snippets/form.html:24 msgid "Select" -msgstr "" +msgstr "Izberi" #: ckan/templates/group/activity_stream.html:3 #: ckan/templates/group/activity_stream.html:6 @@ -2523,26 +2439,26 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 msgid "Activity Stream" -msgstr "" +msgstr "Tok aktivnosti" #: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 #: ckan/templates/organization/admins.html:3 #: ckan/templates/organization/admins.html:6 msgid "Administrators" -msgstr "" +msgstr "Administratorji" #: ckan/templates/group/base_form_page.html:7 msgid "Add a Group" -msgstr "" +msgstr "Dodaj skupino" #: ckan/templates/group/base_form_page.html:11 msgid "Group Form" -msgstr "" +msgstr "Obrazec za skupino" #: ckan/templates/group/confirm_delete.html:3 #: ckan/templates/group/confirm_delete.html:15 @@ -2556,41 +2472,39 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" -msgstr "" +msgstr "Potrdi izbris" #: ckan/templates/group/confirm_delete.html:11 msgid "Are you sure you want to delete group - {name}?" -msgstr "" +msgstr "Ali ste prepričani, da želite izbrisat skupino - {name}?" #: ckan/templates/group/confirm_delete_member.html:11 #: ckan/templates/organization/confirm_delete_member.html:11 msgid "Are you sure you want to delete member - {name}?" -msgstr "" +msgstr "Ali ste prepričani, da želite izbrisati člana - {name}?" #: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:11 #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 msgid "Manage" -msgstr "" +msgstr "Oskrbi" #: ckan/templates/group/edit.html:12 msgid "Edit Group" -msgstr "" +msgstr "Uredi skupino" #: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 #: ckan/templates/organization/edit_base.html:24 #: ckan/templates/organization/members.html:3 msgid "Members" -msgstr "" +msgstr "Člani" #: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 #: ckan/templates/group/snippets/info.html:32 @@ -2604,7 +2518,7 @@ msgstr "" #: ckan/templates/user/read_base.html:49 #: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 msgid "Followers" -msgstr "" +msgstr "Sledilci" #: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 #: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 @@ -2614,11 +2528,11 @@ msgstr "Zgodovina" #: ckan/templates/group/index.html:13 #: ckan/templates/user/dashboard_groups.html:7 msgid "Add Group" -msgstr "" +msgstr "Dodaj skupno" #: ckan/templates/group/index.html:20 msgid "Search groups..." -msgstr "" +msgstr "Išči po skupinah..." #: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 #: ckan/templates/organization/bulk_process.html:97 @@ -2629,7 +2543,7 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:15 #: ckanext/example_idatasetform/templates/package/search.html:13 msgid "Name Ascending" -msgstr "" +msgstr "Naraščajoče po imenih" #: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 #: ckan/templates/organization/bulk_process.html:98 @@ -2640,27 +2554,27 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:16 #: ckanext/example_idatasetform/templates/package/search.html:14 msgid "Name Descending" -msgstr "" +msgstr "Padajoče po imenih" #: ckan/templates/group/index.html:29 msgid "There are currently no groups for this site" -msgstr "" +msgstr "Trenutno ni skupin za to stran" #: ckan/templates/group/index.html:31 #: ckan/templates/organization/index.html:31 msgid "How about creating one?" -msgstr "" +msgstr "Ali bi naredili novo?" #: ckan/templates/group/member_new.html:8 #: ckan/templates/organization/member_new.html:10 msgid "Back to all members" -msgstr "" +msgstr "Nazaj na vse člane" #: ckan/templates/group/member_new.html:10 #: ckan/templates/organization/member_new.html:7 #: ckan/templates/organization/member_new.html:12 msgid "Edit Member" -msgstr "" +msgstr "Uredi člana" #: ckan/templates/group/member_new.html:10 #: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 @@ -2669,46 +2583,46 @@ msgstr "" #: ckan/templates/organization/member_new.html:66 #: ckan/templates/organization/members.html:6 msgid "Add Member" -msgstr "" +msgstr "Dodaj člana" #: ckan/templates/group/member_new.html:18 #: ckan/templates/organization/member_new.html:20 msgid "Existing User" -msgstr "" +msgstr "Obstoječi član" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:23 msgid "If you wish to add an existing user, search for their username below." -msgstr "" +msgstr "Če želite dodati obstoječega člana, poiščite njihovo uporabniško ime spodaj." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:40 msgid "or" -msgstr "" +msgstr "ali" #: ckan/templates/group/member_new.html:42 #: ckan/templates/organization/member_new.html:44 msgid "New User" -msgstr "" +msgstr "Nov uporabnik" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:47 msgid "If you wish to invite a new user, enter their email address." -msgstr "" +msgstr "Če želite povabiti novega člana, vnesite njihov email naslov." #: ckan/templates/group/member_new.html:55 #: ckan/templates/group/members.html:18 #: ckan/templates/organization/member_new.html:56 #: ckan/templates/organization/members.html:18 msgid "Role" -msgstr "" +msgstr "Vloga" #: ckan/templates/group/member_new.html:58 #: ckan/templates/group/members.html:30 #: ckan/templates/organization/member_new.html:59 #: ckan/templates/organization/members.html:30 msgid "Are you sure you want to delete this member?" -msgstr "" +msgstr "Ste preprićani da želite izbrisati tega člana?" #: ckan/templates/group/member_new.html:59 #: ckan/templates/group/members.html:35 @@ -2720,48 +2634,46 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Izbriši" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Shrani" #: ckan/templates/group/member_new.html:78 #: ckan/templates/organization/member_new.html:79 msgid "What are roles?" -msgstr "" +msgstr "Kaj so vloge?" #: ckan/templates/group/member_new.html:81 msgid "" "

Admin: Can edit group information, as well as manage " "organization members.

Member: Can add/remove " "datasets from groups

" -msgstr "" +msgstr "

Skrbnik: Lahko ureja informacijo o skupini, kot tudi upravlja s člani organizacije.

Član: Lahko doda/odstrani nabore podatkov iz skupin

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 msgid "Create a Group" -msgstr "" +msgstr "Ustvari skupino" #: ckan/templates/group/new_group_form.html:17 msgid "Update Group" -msgstr "" +msgstr "Posodobi skupino" #: ckan/templates/group/new_group_form.html:19 msgid "Create Group" -msgstr "" +msgstr "Ustvari skupino" #: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 #: ckan/templates/package/search.html:29 #: ckan/templates/snippets/sort_by.html:14 #: ckanext/example_idatasetform/templates/package/search.html:12 msgid "Relevance" -msgstr "" +msgstr "Ustreznost" #: ckan/templates/group/read.html:18 #: ckan/templates/organization/bulk_process.html:99 @@ -2771,7 +2683,7 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:17 #: ckanext/example_idatasetform/templates/package/search.html:15 msgid "Last Modified" -msgstr "" +msgstr "Nazadnje spremenjeno" #: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 #: ckan/templates/package/search.html:33 @@ -2780,21 +2692,21 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:19 #: ckanext/example_idatasetform/templates/package/search.html:18 msgid "Popular" -msgstr "" +msgstr "Popularno" #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." -msgstr "" +msgstr "Preišči nabore podatkov..." #: ckan/templates/group/snippets/feeds.html:3 msgid "Datasets in group: {group}" -msgstr "" +msgstr "Nabori podatkov v skupini: {group}" #: ckan/templates/group/snippets/feeds.html:4 #: ckan/templates/organization/snippets/feeds.html:4 msgid "Recent Revision History" -msgstr "" +msgstr "Nedavna zgodovina revizij" #: ckan/templates/group/snippets/group_form.html:10 #: ckan/templates/organization/snippets/organization_form.html:10 @@ -2804,32 +2716,31 @@ msgstr "Ime" #: ckan/templates/group/snippets/group_form.html:10 msgid "My Group" -msgstr "" +msgstr "Moja skupina" #: ckan/templates/group/snippets/group_form.html:18 msgid "my-group" -msgstr "" +msgstr "moja-skupina" #: ckan/templates/group/snippets/group_form.html:20 #: ckan/templates/organization/snippets/organization_form.html:20 #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Opis" #: ckan/templates/group/snippets/group_form.html:20 msgid "A little information about my group..." -msgstr "" +msgstr "Nekaj informacij o moji skupini..." #: ckan/templates/group/snippets/group_form.html:60 msgid "Are you sure you want to delete this Group?" -msgstr "" +msgstr "Ste prepričani, da želite izbrisati to skupino?" #: ckan/templates/group/snippets/group_form.html:64 msgid "Save Group" -msgstr "" +msgstr "Shrani skupino" #: ckan/templates/group/snippets/group_item.html:32 #: ckan/templates/organization/snippets/organization_item.html:31 @@ -2837,30 +2748,30 @@ msgstr "" #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 msgid "{num} Dataset" msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "{num} naborov podatkov" +msgstr[1] "1 nabor podatkov" +msgstr[2] "2 nabora podatkov" +msgstr[3] "{num} naborov podatkov" #: ckan/templates/group/snippets/group_item.html:34 #: ckan/templates/organization/snippets/organization_item.html:33 #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 msgid "0 Datasets" -msgstr "" +msgstr "0 naborov podatkov" #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 msgid "View {name}" -msgstr "" +msgstr "Pogled {name}" #: ckan/templates/group/snippets/group_item.html:43 msgid "Remove dataset from this group" -msgstr "" +msgstr "Izbriši nabor podatkov iz te skupine" #: ckan/templates/group/snippets/helper.html:4 msgid "What are Groups?" -msgstr "" +msgstr "Kaj so skupine?" #: ckan/templates/group/snippets/helper.html:8 msgid "" @@ -2868,27 +2779,27 @@ msgid "" "could be to catalogue datasets for a particular project or team, or on a " "particular theme, or as a very simple way to help people find and search " "your own published datasets. " -msgstr "" +msgstr " CKAN skupine lahko uporabite za ustvarjanje in upravljanje zbirk naborov podatkov. To so lahko katalogi naborov podatkov za določen projekt ali ekipo, ali za določeno tematiko, ali kot preprost način da drugi ljudje najdejo in uporabijo vaše objavljene nabore podatkov. " #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 msgid "Compare" -msgstr "" +msgstr "Primerjaj" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" -msgstr "" +msgstr "Izbrisano" #: ckan/templates/group/snippets/info.html:24 #: ckan/templates/package/snippets/package_context.html:7 #: ckan/templates/snippets/organization.html:45 msgid "read more" -msgstr "" +msgstr "preberi več" #: ckan/templates/group/snippets/revisions_table.html:7 #: ckan/templates/package/snippets/revisions_table.html:7 @@ -2924,7 +2835,7 @@ msgstr "Dnevniško sporočilo" #: ckan/templates/home/index.html:4 msgid "Welcome" -msgstr "" +msgstr "Dobrodošli" #: ckan/templates/home/snippets/about_text.html:1 msgid "" @@ -2946,69 +2857,61 @@ msgid "" "href=\"http://ckan.org/tour/\">http://ckan.org/tour/
Features " "overview: http://ckan.org/features/

" -msgstr "" +msgstr "

CKAN je vodilna odprto-kodna platforma za podatkovne portale na svetu.

CKAN je popolnoma 'out-of-the-box' rešitev, ki naredi podatke dostopne in uporabne – tako da ponudi orodja za preprosto objavo, izmenjavo, iskanje in uporabo podatkov (vključno s shrambo podatkov in ponudbo robustnih podatkovnih API-jev). CKAN je namenjen objavljalcem podatkov (državne in regionalne uprave, podjetja in organizacije), ki želijo narediti svoje podatke odprte in dostopne.

CKAN uporabljajo državne vlade ter uporabniške skupine po celem svetu in tudi omogoča številne portale uradnim in skupnostnim skupinam, kot tudi portale za lokalne, državne, in mednarodne vlade, kot je npr. za Združeno kraljestvo data.gov.uk za Evropsko unijo publicdata.eu, za Brazilski dados.gov.br, Nizozemski vladni portal, kot tudi za mesta in občine v ZDA, združenem kraljestvu, Argentini, Finski in še drugod.

CKAN: http://ckan.org/
CKAN Ogled: http://ckan.org/tour/
Lastnosti overview: http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" -msgstr "" +msgstr "Dobrodošli na CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" "This is a nice introductory paragraph about CKAN or the site in general. We " "don't have any copy to go here yet but soon we will " -msgstr "" +msgstr "To je preprost vstopni paragraf o CKAN-u in o tej strani na splošno.Ustrezne kopije za tu še ni na voljo, vendar bo kmalu" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" -msgstr "" +msgstr "To je posebna sekcija" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "Npr. okolje" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "Preišči podatke" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Popularne oznake" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" -msgstr "" +msgstr "{0} statistike" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" -msgstr "" +msgstr "nabor podatkov" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" -msgstr "" +msgstr "nabori podatkov" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" -msgstr "" +msgstr "organizacija" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "group" -msgstr "" +msgstr "organizacije" -#: ckan/templates/home/snippets/stats.html:22 -msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" +#: ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "skupine" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "skupine" #: ckan/templates/macros/form.html:126 #, python-format @@ -3016,112 +2919,124 @@ msgid "" "You can use Markdown formatting here" -msgstr "" +msgstr "Uporabite lahko Markdown formatiranje teksta" #: ckan/templates/macros/form.html:265 msgid "This field is required" -msgstr "" +msgstr "To polje je nujno" #: ckan/templates/macros/form.html:265 msgid "Custom" -msgstr "" +msgstr "Po meri" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Ta obrazec vsebuje neveljavne vnose:" #: ckan/templates/macros/form.html:395 msgid "Required field" -msgstr "" +msgstr "Nujno polje" #: ckan/templates/macros/form.html:410 msgid "http://example.com/my-image.jpg" -msgstr "" +msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" -msgstr "" +msgstr "URL slike" #: ckan/templates/macros/form.html:424 msgid "Clear Upload" -msgstr "" +msgstr "Počisti prenos" #: ckan/templates/organization/base_form_page.html:5 msgid "Organization Form" -msgstr "" +msgstr "Obrazec za organizacije" #: ckan/templates/organization/bulk_process.html:3 #: ckan/templates/organization/bulk_process.html:11 msgid "Edit datasets" -msgstr "" +msgstr "Uredi nabore podatke" #: ckan/templates/organization/bulk_process.html:6 msgid "Add dataset" -msgstr "" +msgstr "Dodaj nabor podatkov" #: ckan/templates/organization/bulk_process.html:16 msgid " found for \"{query}\"" -msgstr "" +msgstr " najdeno za \"{query}\"" #: ckan/templates/organization/bulk_process.html:18 msgid "Sorry no datasets found for \"{query}\"" -msgstr "" +msgstr "Ni na voljo naborov podatkov za \"{query}\"" #: ckan/templates/organization/bulk_process.html:37 msgid "Make public" -msgstr "" +msgstr "Naredi javno" #: ckan/templates/organization/bulk_process.html:41 msgid "Make private" -msgstr "" +msgstr "Naredi zasebno" #: ckan/templates/organization/bulk_process.html:70 #: ckan/templates/package/read.html:18 #: ckan/templates/snippets/package_item.html:40 msgid "Draft" -msgstr "" +msgstr "Osnutek" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 msgid "Private" -msgstr "" +msgstr "Zasebno" #: ckan/templates/organization/bulk_process.html:88 msgid "This organization has no datasets associated to it" -msgstr "" +msgstr "Ta organizacija nima naborov podatkov" #: ckan/templates/organization/confirm_delete.html:11 msgid "Are you sure you want to delete organization - {name}?" -msgstr "" +msgstr "Ste prepričani da želite izbrisati organizacijo - {name}?" #: ckan/templates/organization/edit.html:6 #: ckan/templates/organization/snippets/info.html:13 #: ckan/templates/organization/snippets/info.html:16 msgid "Edit Organization" -msgstr "" +msgstr "Uredi organizacijo" #: ckan/templates/organization/index.html:13 #: ckan/templates/user/dashboard_organizations.html:7 msgid "Add Organization" -msgstr "" +msgstr "Dodaj organizacijo" #: ckan/templates/organization/index.html:20 msgid "Search organizations..." -msgstr "" +msgstr "Preišči organizacije..." #: ckan/templates/organization/index.html:29 msgid "There are currently no organizations for this site" -msgstr "" +msgstr "Trenutno ni na voljo organizacij na tej strani" + +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Uporabniško ime" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email naslov" #: ckan/templates/organization/member_new.html:62 msgid "Update Member" -msgstr "" +msgstr "Posodobi člana" #: ckan/templates/organization/member_new.html:82 msgid "" @@ -3130,37 +3045,37 @@ msgid "" "edit datasets, but not manage organization members.

" "

Member: Can view the organization's private datasets, " "but not add new datasets.

" -msgstr "" +msgstr "

Skrbnik: Lahko doda/uredi in izbriše nabore podatkov, kot tudi upravlja s člani organizacije.

Urejevalec: Lahko doda in uredi nabore poadtkov, tuda ne more upravljati s člani organizacije.

Član: Lahko vidi zasebne nabore podatkov organizacije, vendar ne more dodati novih naborov podatkov.

" #: ckan/templates/organization/new.html:3 #: ckan/templates/organization/new.html:5 #: ckan/templates/organization/new.html:7 #: ckan/templates/organization/new.html:12 msgid "Create an Organization" -msgstr "" +msgstr "Ustvarite organizacijo" #: ckan/templates/organization/new_organization_form.html:17 msgid "Update Organization" -msgstr "" +msgstr "Posodobite organizacijo" #: ckan/templates/organization/new_organization_form.html:19 msgid "Create Organization" -msgstr "" +msgstr "Ustvarite organizacijo" #: ckan/templates/organization/read.html:5 #: ckan/templates/package/search.html:16 #: ckan/templates/user/dashboard_datasets.html:7 msgid "Add Dataset" -msgstr "" +msgstr "Dodaj nabor podatkov" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "Nabori podatkov v organizaciji: {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 msgid "What are Organizations?" -msgstr "" +msgstr "Kaj so organizacije?" #: ckan/templates/organization/snippets/help.html:7 msgid "" @@ -3170,80 +3085,80 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "" +msgstr "

Organizations delujejo kot oddelki za izdajanje naborov podatkov (npr. oddelek za zdravstvo). To pomeni da se lahko nabori podatkov izdajo in pripadajo oddelku namesto posamezenm uporabniku.

Skrbniki lahko določijo vloge in omogočijo članom znotraj organizacije, da lahko objavijo nabore podatkov njihove organizacije (npr. Urad za državno statistiko).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" " CKAN Organizations are used to create, manage and publish collections of " "datasets. Users can have different roles within an Organization, depending " "on their level of authorisation to create, edit and publish. " -msgstr "" +msgstr " CKAN organizacije se uporabljajo da ustvarijo, upravljajo in izdajajo zbrike naborov podatkov. Uporabniki lahko imajo različne vloge znotraj organizacije, glede na njihovo raven avtorizacije za ustvarjanje, urejanje in izdajanje podatkov. " #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" -msgstr "" +msgstr "Moja organizacija" #: ckan/templates/organization/snippets/organization_form.html:18 msgid "my-organization" -msgstr "" +msgstr "moja-organizacija" #: ckan/templates/organization/snippets/organization_form.html:20 msgid "A little information about my organization..." -msgstr "" +msgstr "Nekaj informacij o moji organizaciji..." #: ckan/templates/organization/snippets/organization_form.html:60 msgid "" "Are you sure you want to delete this Organization? This will delete all the " "public and private datasets belonging to this organization." -msgstr "" +msgstr "Ste prepričani, da želite izbrisati to organizacijo? To bo izbrisalo vse javne in zasebne nabore podatkov, ki pripadajo tej organizaciji." #: ckan/templates/organization/snippets/organization_form.html:64 msgid "Save Organization" -msgstr "" +msgstr "Shrani organizacijo" #: ckan/templates/organization/snippets/organization_item.html:37 #: ckan/templates/organization/snippets/organization_item.html:38 msgid "View {organization_name}" -msgstr "" +msgstr "Poglej {organization_name}" #: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 #: ckan/templates/package/snippets/new_package_breadcrumb.html:2 msgid "Create Dataset" -msgstr "" +msgstr "Ustvari nabor podatkov" #: ckan/templates/package/base_form_page.html:22 msgid "What are datasets?" -msgstr "" +msgstr "Kaj so nabori podatkov?" #: ckan/templates/package/base_form_page.html:25 msgid "" " A CKAN Dataset is a collection of data resources (such as files), together " "with a description and other information, at a fixed URL. Datasets are what " "users see when searching for data. " -msgstr "" +msgstr " CKAN nabor podatkov je zbirka podatkovnih virov (npr. datotek), z opisom in drugimi informaciji, na stalnem URL naslovu. Nabore podatkov vidijo uporabniki ko iščejo podatke. " #: ckan/templates/package/confirm_delete.html:11 msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" +msgstr "Ste prepričani da želite izbrisati nabor podatkov - {name}?" #: ckan/templates/package/confirm_delete_resource.html:11 msgid "Are you sure you want to delete resource - {name}?" -msgstr "" +msgstr "Ste prepričani da želite izbrisati vir - {name}?" #: ckan/templates/package/edit_base.html:16 msgid "View dataset" -msgstr "" +msgstr "Poglej nabor podatkov" #: ckan/templates/package/edit_base.html:20 msgid "Edit metadata" -msgstr "" +msgstr "Uredi nabor podatkov" #: ckan/templates/package/edit_view.html:3 #: ckan/templates/package/edit_view.html:4 #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Uredi pogled" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3253,50 +3168,49 @@ msgid "Preview" msgstr "Predogled" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" -msgstr "" +msgstr "Posodobi" #: ckan/templates/package/group_list.html:14 msgid "Associate this group with this dataset" -msgstr "" +msgstr "Naveži to skupino s tem naborom podatkov" #: ckan/templates/package/group_list.html:14 msgid "Add to group" -msgstr "" +msgstr "Dodaj k skupini" #: ckan/templates/package/group_list.html:23 msgid "There are no groups associated with this dataset" -msgstr "" +msgstr "K temu naboru podatkov ni navezane skupine" #: ckan/templates/package/new_package_form.html:15 msgid "Update Dataset" -msgstr "" +msgstr "Posodobi nabor podatkov" #: ckan/templates/package/new_resource.html:5 msgid "Add data to the dataset" -msgstr "" +msgstr "Dodaj podatke k naboru podatkov" #: ckan/templates/package/new_resource.html:11 #: ckan/templates/package/new_resource_not_draft.html:8 msgid "Add New Resource" -msgstr "" +msgstr "Dodaj nov vir" #: ckan/templates/package/new_resource_not_draft.html:3 #: ckan/templates/package/new_resource_not_draft.html:4 msgid "Add resource" -msgstr "" +msgstr "Dodaj vir" #: ckan/templates/package/new_resource_not_draft.html:16 msgid "New resource" -msgstr "" +msgstr "Nov vir" #: ckan/templates/package/new_view.html:3 #: ckan/templates/package/new_view.html:4 #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Dodaj pogled" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3305,149 +3219,153 @@ msgid "" "href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-" "structured-data-the-data-explorer' target='_blank'>Data Explorer " "documentation. " -msgstr "" +msgstr " Data Explorer pogledi so lahko počasni in nezanesljivi, razen če je omogočena DataStore razširitev. Za več informacij, prosim poglejte Data Explorer dokumentacijo. " #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" -msgstr "" +msgstr "Dodaj" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " "differ significantly from the current revision." -msgstr "" +msgstr "To je starejša različica tega nabora podatkov, kot je bila urejena %(timestamp)s. Lahko se zelo razlikuje od trenutne revizije." #: ckan/templates/package/related_list.html:7 msgid "Related Media for {dataset}" -msgstr "" +msgstr "Povezani mediji za {dataset}" #: ckan/templates/package/related_list.html:12 msgid "No related items" -msgstr "" +msgstr "Ni sorodnih predmetov" #: ckan/templates/package/related_list.html:17 msgid "Add Related Item" -msgstr "" +msgstr "Dodaj sorodne predmete" #: ckan/templates/package/resource_data.html:12 msgid "Upload to DataStore" -msgstr "" +msgstr "Naloži na DataStore" #: ckan/templates/package/resource_data.html:19 msgid "Upload error:" -msgstr "" +msgstr "Napake prenosa:" #: ckan/templates/package/resource_data.html:25 #: ckan/templates/package/resource_data.html:27 msgid "Error:" msgstr "Napaka:" -#: ckan/templates/package/resource_data.html:45 -msgid "Status" +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" -msgstr "" +msgstr "Nazadnje posodobljeno" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" -msgstr "" +msgstr "Nikoli" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" -msgstr "" +msgstr "Dnevnik prenosov" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" -msgstr "" +msgstr "Podrobnosti" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" -msgstr "" +msgstr "Konec dnevnika" #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" -msgstr "" +msgstr "Vsi viri" #: ckan/templates/package/resource_edit_base.html:19 msgid "View resource" -msgstr "" +msgstr "Poglej vir" #: ckan/templates/package/resource_edit_base.html:24 #: ckan/templates/package/resource_edit_base.html:32 msgid "Edit resource" -msgstr "" +msgstr "Uredi vir" #: ckan/templates/package/resource_edit_base.html:26 msgid "DataStore" -msgstr "" +msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Pogledi" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" -msgstr "" +msgstr "API končna točka" #: ckan/templates/package/resource_read.html:41 #: ckan/templates/package/snippets/resource_item.html:48 msgid "Go to resource" -msgstr "" +msgstr "Pojdi na vir" #: ckan/templates/package/resource_read.html:43 #: ckan/templates/package/snippets/resource_item.html:45 msgid "Download" -msgstr "" +msgstr "Prenos" #: ckan/templates/package/resource_read.html:59 #: ckan/templates/package/resource_read.html:61 msgid "URL:" -msgstr "" +msgstr "URL:" #: ckan/templates/package/resource_read.html:69 msgid "From the dataset abstract" -msgstr "" +msgstr "Izvleček iz nabora podatkov" #: ckan/templates/package/resource_read.html:71 #, python-format msgid "Source: %(dataset)s" -msgstr "" +msgstr "Izvor: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "Ni še narejenih pogledov za ta vir." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "Nimate na voljo pogledov, ki ste jih pričakovali?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +msgstr "Tukajje nekaj razlogov zakaj se ti pogledi ne prikazujejo:" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "" +msgstr "Za ta vir še ni bil ustvarjen ustrezen pogled" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +msgstr "Skrbniki sistema mogoče niso omogočili vtičnikov za ustrezne poglede" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "" +msgstr "Če pogled potrebuje DataStore, lahko da njegov vtičnik ni vključen , ali podatki še niso na voljo v DataStore, ali pa DataStore še ni dokončal s procesiranjem podatkov" #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" -msgstr "" +msgstr "Dodatne informacije" #: ckan/templates/package/resource_read.html:151 #: ckan/templates/package/snippets/additional_info.html:6 @@ -3460,18 +3378,18 @@ msgstr "Polje" #: ckan/templates/package/snippets/additional_info.html:7 #: ckan/templates/snippets/additional_info.html:12 msgid "Value" -msgstr "" +msgstr "Vrednost" #: ckan/templates/package/resource_read.html:158 #: ckan/templates/package/resource_read.html:162 #: ckan/templates/package/resource_read.html:166 msgid "unknown" -msgstr "" +msgstr "neznano" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" -msgstr "" +msgstr "Ustvarjeno" #: ckan/templates/package/resource_read.html:165 #: ckan/templates/package/snippets/resource_form.html:37 @@ -3487,15 +3405,15 @@ msgstr "Licenca" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "Nov pogled" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "Ta vir nima pogledov" #: ckan/templates/package/resources.html:8 msgid "Add new resource" -msgstr "" +msgstr "Dodaj nov vir" #: ckan/templates/package/resources.html:19 #: ckan/templates/package/snippets/resources_list.html:25 @@ -3503,51 +3421,55 @@ msgstr "" msgid "" "

This dataset has no data, why not " "add some?

" -msgstr "" +msgstr "

Ta nabor podatkov nima podatkov, zakaj jih ne bi nekaj dodali?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" #: ckan/templates/package/search.html:53 msgid "API Docs" -msgstr "" +msgstr "API dokumentacija" #: ckan/templates/package/search.html:55 msgid "full {format} dump" -msgstr "" +msgstr "poln {format} izpis" #: ckan/templates/package/search.html:56 #, python-format msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" +msgstr " Do tega registra lahko dostopate tudi z %(api_link)s (poglejte %(api_doc_link)s) ali prenesite %(dump_link)s. " #: ckan/templates/package/search.html:60 #, python-format msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " -msgstr "" +msgstr " Do tega registra lahko dostopate tudi z %(api_link)s (poglejte %(api_doc_link)s). " #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "Vsi pogledi" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "Pogled pogled" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "Predogled pogleda" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 msgid "Additional Info" -msgstr "" +msgstr "Dodatne informacije" #: ckan/templates/package/snippets/additional_info.html:14 #: ckan/templates/package/snippets/package_metadata_fields.html:6 msgid "Source" -msgstr "" +msgstr "Izvor" #: ckan/templates/package/snippets/additional_info.html:37 #: ckan/templates/package/snippets/additional_info.html:42 @@ -3561,67 +3483,66 @@ msgid "Version" msgstr "Različica" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Stanje" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "Nazadnje posodobljeno" #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" -msgstr "" +msgstr "Podatkovni API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Naslov" #: ckan/templates/package/snippets/package_basic_fields.html:4 msgid "eg. A descriptive title" -msgstr "" +msgstr "npr. Opisni naslov" #: ckan/templates/package/snippets/package_basic_fields.html:13 msgid "eg. my-dataset" -msgstr "" +msgstr "npr. moj-nabor-podatkov" #: ckan/templates/package/snippets/package_basic_fields.html:19 msgid "eg. Some useful notes about the data" -msgstr "" +msgstr "npr. Nekaj uporabnih zapiskov o podatkih" #: ckan/templates/package/snippets/package_basic_fields.html:24 msgid "eg. economy, mental health, government" -msgstr "" +msgstr "npr. ekonomija, duševno zdravje, državna vlada" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " -msgstr "" +msgstr " Definicije licenc in dodatne informacije lahko najdete na opendefinition.org " -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" -msgstr "" +msgstr "Organizacija" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" -msgstr "" +msgstr "Ni organizacij" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" -msgstr "" +msgstr "Vidnost" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" -msgstr "" +msgstr "Javno" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" -msgstr "" +msgstr "Aktivno" #: ckan/templates/package/snippets/package_form.html:28 msgid "" @@ -3630,349 +3551,216 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "" +msgstr "Licenca ki ste jo izbrali zgoraj se nanaša samo na vsebino virov/datotek, ki ste jih dodali k temu naboru podatkov. Ob predložitvi tega obrazca, se strinjate z objavo meta podatkov, ki ste jih vnesli v obrazec pod Open Database License." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" -msgstr "" +msgstr "Ste prepričani da želite izbrisati ta nabor podatkov?" #: ckan/templates/package/snippets/package_form.html:44 msgid "Next: Add Data" -msgstr "" +msgstr "Naslednje: Dodaj podatke" #: ckan/templates/package/snippets/package_metadata_fields.html:6 msgid "http://example.com/dataset.json" -msgstr "" +msgstr "http://example.com/dataset.json" #: ckan/templates/package/snippets/package_metadata_fields.html:10 msgid "1.0" -msgstr "" +msgstr "1.0" #: ckan/templates/package/snippets/package_metadata_fields.html:14 #: ckan/templates/package/snippets/package_metadata_fields.html:20 #: ckan/templates/user/new_user_form.html:6 msgid "Joe Bloggs" -msgstr "" +msgstr "Janez Novak" #: ckan/templates/package/snippets/package_metadata_fields.html:16 msgid "Author Email" -msgstr "" +msgstr "Email avtorja" #: ckan/templates/package/snippets/package_metadata_fields.html:16 #: ckan/templates/package/snippets/package_metadata_fields.html:22 #: ckan/templates/user/new_user_form.html:7 msgid "joe@example.com" -msgstr "" +msgstr "janez@novak.sem" #: ckan/templates/package/snippets/package_metadata_fields.html:22 msgid "Maintainer Email" -msgstr "" +msgstr "Email skrbnika" #: ckan/templates/package/snippets/resource_edit_form.html:12 msgid "Update Resource" -msgstr "" +msgstr "Posodobi vir" #: ckan/templates/package/snippets/resource_form.html:24 msgid "File" -msgstr "" +msgstr "Datoteka" #: ckan/templates/package/snippets/resource_form.html:28 msgid "eg. January 2011 Gold Prices" -msgstr "" +msgstr "npr. Cene zlata Januar 2011" #: ckan/templates/package/snippets/resource_form.html:32 msgid "Some useful notes about the data" -msgstr "" +msgstr "Nekaj uporabnih zapiskov o podatkih" #: ckan/templates/package/snippets/resource_form.html:37 msgid "eg. CSV, XML or JSON" -msgstr "" +msgstr "npr. CSV, XML ali JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" +msgstr "Format bo samodejno zaznan. Lahko pustite prazno če želite." #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" -msgstr "" +msgstr "npr. 2012-06-05" #: ckan/templates/package/snippets/resource_form.html:53 msgid "File Size" -msgstr "" +msgstr "Velikost datoteke" #: ckan/templates/package/snippets/resource_form.html:53 msgid "eg. 1024" -msgstr "" +msgstr "npr. 1024" #: ckan/templates/package/snippets/resource_form.html:55 #: ckan/templates/package/snippets/resource_form.html:57 msgid "MIME Type" -msgstr "" +msgstr "MIME tip" #: ckan/templates/package/snippets/resource_form.html:55 #: ckan/templates/package/snippets/resource_form.html:57 msgid "eg. application/json" -msgstr "" +msgstr "npr. application/json" #: ckan/templates/package/snippets/resource_form.html:65 msgid "Are you sure you want to delete this resource?" -msgstr "" +msgstr "Ste prepričani da želite izbrisati ta vir?" #: ckan/templates/package/snippets/resource_form.html:72 msgid "Previous" -msgstr "" +msgstr "Prejšnji" #: ckan/templates/package/snippets/resource_form.html:75 msgid "Save & add another" -msgstr "" +msgstr "Shrani & dodaj novega" #: ckan/templates/package/snippets/resource_form.html:78 msgid "Finish" -msgstr "" +msgstr "Končaj" #: ckan/templates/package/snippets/resource_help.html:2 msgid "What's a resource?" -msgstr "" +msgstr "Kaj je vir?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." -msgstr "" +msgstr "Vir je lahko vsaka datoteka ali povezava na datoteko, ki vsebuje uporabne podatke." #: ckan/templates/package/snippets/resource_item.html:24 msgid "Explore" -msgstr "" +msgstr "Razišči" #: ckan/templates/package/snippets/resource_item.html:36 msgid "More information" -msgstr "" +msgstr "Več informacij" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" -msgstr "" +msgstr "Vključi" #: ckan/templates/package/snippets/resource_view.html:24 msgid "This resource view is not available at the moment." -msgstr "" +msgstr "Ta pogled vira trenutno ni na voljo." #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "" +msgstr "Vključi pogled vira" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "" +msgstr "Vključitveno kodo lahko kopirate in prilepite v CMS ali blog software, ki podpira surov HTML zapis" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Širina" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Višina" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" -msgstr "" +msgstr "Koda" #: ckan/templates/package/snippets/resource_views_list.html:8 msgid "Resource Preview" -msgstr "" +msgstr "Predogled vira" #: ckan/templates/package/snippets/resources_list.html:13 msgid "Data and Resources" -msgstr "" +msgstr "Podatki in viri" #: ckan/templates/package/snippets/resources_list.html:29 msgid "This dataset has no data" -msgstr "" +msgstr "Ta nabor podatkov nima podatkov" #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format msgid "Read dataset as of %s" -msgstr "" +msgstr "Prebran nabor podatkov %s" #: ckan/templates/package/snippets/stages.html:23 #: ckan/templates/package/snippets/stages.html:25 msgid "Create dataset" -msgstr "" +msgstr "Ustvari nabor podatkov" #: ckan/templates/package/snippets/stages.html:30 #: ckan/templates/package/snippets/stages.html:34 -#: ckan/templates/package/snippets/stages.html:36 -msgid "Add data" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "Dodaj podatke" -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "npr. Moj pogled" -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "npr. Informacije o mojem pogledu" -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Dodaj filter" -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Odstrani filter" -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" +#: ckan/templates/package/snippets/view_form_filters.html:46 +msgid "Filters" +msgstr "Filtri" -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Kaj je pogled?" -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "Pogled je reprezentacija podatkov z ozirom na vir" #: ckan/templates/revision/diff.html:6 msgid "Differences" -msgstr "" +msgstr "Razlike" #: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 #: ckan/templates/revision/diff.html:23 msgid "Revision Differences" -msgstr "" +msgstr "Razlike v revizijah" #: ckan/templates/revision/diff.html:44 msgid "Difference" @@ -3980,7 +3768,7 @@ msgstr "Razlika" #: ckan/templates/revision/diff.html:54 msgid "No Differences" -msgstr "" +msgstr "Ni razlik" #: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 #: ckan/templates/revision/list.html:10 @@ -3993,7 +3781,7 @@ msgstr "Različice" #: ckan/templates/revision/read.html:30 msgid "Undelete" -msgstr "" +msgstr "Povrni" #: ckan/templates/revision/read.html:64 msgid "Changes" @@ -4001,317 +3789,307 @@ msgstr "Spremembe" #: ckan/templates/revision/read.html:74 msgid "Datasets' Tags" -msgstr "" +msgstr "Oznake naborov podatkov" #: ckan/templates/revision/snippets/revisions_list.html:7 msgid "Entity" -msgstr "" +msgstr "Entiteta" #: ckan/templates/snippets/activity_item.html:3 msgid "New activity item" -msgstr "" +msgstr "Nova aktivnost" #: ckan/templates/snippets/datapreview_embed_dialog.html:4 msgid "Embed Data Viewer" -msgstr "" +msgstr "Vključi Data Viewer" #: ckan/templates/snippets/datapreview_embed_dialog.html:8 msgid "Embed this view by copying this into your webpage:" -msgstr "" +msgstr "Vključi ta pogled s kopiranjem sledečega na svojo spletno stran:" #: ckan/templates/snippets/datapreview_embed_dialog.html:10 msgid "Choose width and height in pixels:" -msgstr "" +msgstr "Izberi širino in višino v pikslih:" #: ckan/templates/snippets/datapreview_embed_dialog.html:11 msgid "Width:" -msgstr "" +msgstr "Širina:" #: ckan/templates/snippets/datapreview_embed_dialog.html:13 msgid "Height:" -msgstr "" +msgstr "Višina:" #: ckan/templates/snippets/datapusher_status.html:8 msgid "Datapusher status: {status}." -msgstr "" +msgstr "Datapusher stanje: {status}." #: ckan/templates/snippets/disqus_trackback.html:2 msgid "Trackback URL" -msgstr "" +msgstr "Trackback URL" #: ckan/templates/snippets/facet_list.html:80 msgid "Show More {facet_type}" -msgstr "" +msgstr "Prikaži več {facet_type}" #: ckan/templates/snippets/facet_list.html:83 msgid "Show Only Popular {facet_type}" -msgstr "" +msgstr "Prikaži samo popularne {facet_type}" #: ckan/templates/snippets/facet_list.html:87 msgid "There are no {facet_type} that match this search" -msgstr "" +msgstr "Ni {facet_type} ki ustrezajo tem iskalnim pogojem" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Domov" #: ckan/templates/snippets/language_selector.html:4 msgid "Language" -msgstr "" +msgstr "Jezik" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" -msgstr "" +msgstr "Pojdi" #: ckan/templates/snippets/license.html:14 msgid "No License Provided" -msgstr "" +msgstr "Licenca ni izbrana" #: ckan/templates/snippets/license.html:28 msgid "This dataset satisfies the Open Definition." -msgstr "" +msgstr "Ta nabor podatkov ustreza the Open Definition" #: ckan/templates/snippets/organization.html:48 msgid "There is no description for this organization" -msgstr "" +msgstr "Ni opisa za to organizacijo" #: ckan/templates/snippets/package_item.html:57 msgid "This dataset has no description" -msgstr "" +msgstr "Ta nabor podatkov nima opisa" #: ckan/templates/snippets/related.html:15 msgid "" "No apps, ideas, news stories or images have been related to this dataset " "yet." -msgstr "" +msgstr "Nobenih aplikacij, idej, člankov ali slik še ni bilo povezanih na ta nabor podatkov." #: ckan/templates/snippets/related.html:18 msgid "Add Item" -msgstr "" +msgstr "Dodaj predmet" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" -msgstr "" +msgstr "Pošlji" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" -msgstr "" +msgstr "Uredi po" + +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtriraj rezultate" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" -msgstr "" +msgstr "

Poskusite drugačno iskanje.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" -msgstr "" +msgstr "

Prišlo je do napake pri iskanju. Poskusite znova.

" #: ckan/templates/snippets/search_result_text.html:15 msgid "{number} dataset found for \"{query}\"" msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Ni najdenih naborov podatkov" +msgstr[1] "{number} nabor podatkov najden za \"{query}\"" +msgstr[2] "{number} nabora podatkov najdena za \"{query}\"" +msgstr[3] "{number} naborov podatkov najdenih za \"{query}\"" #: ckan/templates/snippets/search_result_text.html:16 msgid "No datasets found for \"{query}\"" -msgstr "" +msgstr "Za poizvedbo \"{query}\" ni bilo najdenih naborov podatkov" #: ckan/templates/snippets/search_result_text.html:17 msgid "{number} dataset found" msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Ni najdenih naborov podatkov." +msgstr[1] "{number} nabor podatkov najden" +msgstr[2] "{number} nabora podatkov najdena" +msgstr[3] "{number} naborov podatkov najdenih" #: ckan/templates/snippets/search_result_text.html:18 msgid "No datasets found" -msgstr "" +msgstr "Ni najdenih naborov podatkov" #: ckan/templates/snippets/search_result_text.html:21 msgid "{number} group found for \"{query}\"" msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "{number} skupin najdenih za \"{query}\"" +msgstr[1] "{number} skupina najdena za \"{query}\"" +msgstr[2] "{number} skupini najdeni za \"{query}\"" +msgstr[3] "{number} skupin najdenih za \"{query}\"" #: ckan/templates/snippets/search_result_text.html:22 msgid "No groups found for \"{query}\"" -msgstr "" +msgstr "Ni najdenih skupin za \"{query}\"" #: ckan/templates/snippets/search_result_text.html:23 msgid "{number} group found" msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Ni najdenih skupin" +msgstr[1] "{number} najdena skupina" +msgstr[2] "{number} najdeni skupini" +msgstr[3] "{number} najdenih skupin" #: ckan/templates/snippets/search_result_text.html:24 msgid "No groups found" -msgstr "" +msgstr "Ni najdenih skupin" #: ckan/templates/snippets/search_result_text.html:27 msgid "{number} organization found for \"{query}\"" msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "{number} organizacij najdenih za \"{query}\"" +msgstr[1] "{number} organizacija najdena za \"{query}\"" +msgstr[2] "{number} organizaciji najdeni za \"{query}\"" +msgstr[3] "{number} organizacij najdenih za \"{query}\"" #: ckan/templates/snippets/search_result_text.html:28 msgid "No organizations found for \"{query}\"" -msgstr "" +msgstr "Ni najdenih organizacij za \"{query}\"" #: ckan/templates/snippets/search_result_text.html:29 msgid "{number} organization found" msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "{number} najdenih organizacij" +msgstr[1] "{number} najdena organizacija" +msgstr[2] "{number} najdeni organizaciji" +msgstr[3] "{number} najdenih organizacij" #: ckan/templates/snippets/search_result_text.html:30 msgid "No organizations found" -msgstr "" +msgstr "Ni najdenih organizacij" #: ckan/templates/snippets/social.html:5 msgid "Social" -msgstr "" +msgstr "Socialno" #: ckan/templates/snippets/subscribe.html:2 msgid "Subscribe" -msgstr "" +msgstr "Naroči" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" -msgstr "" +msgstr "Email" #: ckan/templates/snippets/subscribe.html:5 msgid "RSS" -msgstr "" +msgstr "RSS" #: ckan/templates/snippets/context/user.html:23 #: ckan/templates/user/read_base.html:57 msgid "Edits" -msgstr "" +msgstr "Ureditve" #: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" +msgstr "Iskalne oznake" #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" -msgstr "" +msgstr "Vir novic" #: ckan/templates/user/dashboard.html:20 #: ckan/templates/user/dashboard_datasets.html:12 msgid "My Datasets" -msgstr "" +msgstr "Moji nabori podatkov" #: ckan/templates/user/dashboard.html:21 #: ckan/templates/user/dashboard_organizations.html:12 msgid "My Organizations" -msgstr "" +msgstr "Moje organizacije" #: ckan/templates/user/dashboard.html:22 #: ckan/templates/user/dashboard_groups.html:12 msgid "My Groups" -msgstr "" +msgstr "Moje skupine" #: ckan/templates/user/dashboard.html:39 msgid "Activity from items that I'm following" -msgstr "" +msgstr "Aktivnosti predmetov, ki jim sledim" #: ckan/templates/user/dashboard_datasets.html:17 #: ckan/templates/user/read.html:14 msgid "You haven't created any datasets." -msgstr "" +msgstr "Niste ustvarili še nobenih naborov podatkov." #: ckan/templates/user/dashboard_datasets.html:19 #: ckan/templates/user/dashboard_groups.html:22 #: ckan/templates/user/dashboard_organizations.html:22 #: ckan/templates/user/read.html:16 msgid "Create one now?" -msgstr "" +msgstr "Ustvarim enega zdaj?" #: ckan/templates/user/dashboard_groups.html:20 msgid "You are not a member of any groups." -msgstr "" +msgstr "Niste član nobenih skupin." #: ckan/templates/user/dashboard_organizations.html:20 msgid "You are not a member of any organizations." -msgstr "" +msgstr "Niste član nobenih organizacij." #: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 #: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 #: ckan/templates/user/snippets/user_search.html:2 msgid "Users" -msgstr "" +msgstr "Uporabniki" #: ckan/templates/user/edit.html:17 msgid "Account Info" -msgstr "" +msgstr "Informacije o računu" #: ckan/templates/user/edit.html:19 msgid "" " Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" +msgstr " Vaš profil omogoča durgim CKAN uporabnikom, da spoznajo kdo ste in s čim se ukvarjate. " #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" +msgstr "spremenite podrobnosti" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" -msgstr "" +msgstr "Polno ime" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" -msgstr "" +msgstr "npr. Janez Novak" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" -msgstr "" +msgstr "npr. janez@novak.sem" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" -msgstr "" +msgstr "Nekaj informacij o meni" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" -msgstr "" +msgstr "Prijavi se na notifikacijske emaile" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" -msgstr "" +msgstr "Spremeni geslo" #: ckan/templates/user/edit_user_form.html:29 #: ckan/templates/user/logout_first.html:12 @@ -4319,32 +4097,32 @@ msgstr "" #: ckan/templates/user/perform_reset.html:20 #: ckan/templates/user/snippets/login_form.html:22 msgid "Password" -msgstr "" +msgstr "Geslo" #: ckan/templates/user/edit_user_form.html:31 msgid "Confirm Password" -msgstr "" +msgstr "Potrdi geslo" #: ckan/templates/user/edit_user_form.html:37 msgid "Are you sure you want to delete this User?" -msgstr "" +msgstr "Ste prepričani da želite izbrisati uporabnika?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "Ste prepričani da želite obnoviti vaš API ključ?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Obnovi API ključ" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" -msgstr "" +msgstr "Posodobi profil" #: ckan/templates/user/list.html:3 #: ckan/templates/user/snippets/user_search.html:11 msgid "All Users" -msgstr "" +msgstr "Vsi uporabniki" #: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 #: ckan/templates/user/login.html:12 @@ -4354,39 +4132,39 @@ msgstr "Prijava" #: ckan/templates/user/login.html:25 msgid "Need an Account?" -msgstr "" +msgstr "Potrebujete račun?" #: ckan/templates/user/login.html:27 msgid "Then sign right up, it only takes a minute." -msgstr "" +msgstr "Potem se kar prijavite, to vam vzame le minuto." #: ckan/templates/user/login.html:30 msgid "Create an Account" -msgstr "" +msgstr "Ustvarite račun" #: ckan/templates/user/login.html:42 msgid "Forgotten your password?" -msgstr "" +msgstr "Ste pozabili svoje geslo?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." -msgstr "" +msgstr "Ni problema, uporabite naš obrazec za ponastavitev gesla" #: ckan/templates/user/login.html:47 msgid "Forgot your password?" -msgstr "" +msgstr "Ste pozabili svoje geslo?" #: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 msgid "Logged Out" -msgstr "" +msgstr "Odjavljen" #: ckan/templates/user/logout.html:11 msgid "You are now logged out." -msgstr "" +msgstr "Sedaj ste odjavljeni." #: ckan/templates/user/logout_first.html:9 msgid "You're already logged in as {user}." -msgstr "" +msgstr "Ste že prijavljeni kot {user}." #: ckan/templates/user/logout_first.html:9 msgid "Logout" @@ -4395,477 +4173,413 @@ msgstr "Odjava" #: ckan/templates/user/logout_first.html:13 #: ckan/templates/user/snippets/login_form.html:24 msgid "Remember me" -msgstr "" +msgstr "Zapomni se me" #: ckan/templates/user/logout_first.html:22 msgid "You're already logged in" -msgstr "" +msgstr "Ste že prijavljeni" #: ckan/templates/user/logout_first.html:24 msgid "You need to log out before you can log in with another account." -msgstr "" +msgstr "Morate se najprej odjaviti, da se lahko prijavite z drugim računom." #: ckan/templates/user/logout_first.html:25 msgid "Log out now" -msgstr "" +msgstr "Odjavi se zdaj" #: ckan/templates/user/new.html:6 msgid "Registration" -msgstr "" +msgstr "Registracija" #: ckan/templates/user/new.html:14 msgid "Register for an Account" -msgstr "" +msgstr "Registrirajte se za račun" #: ckan/templates/user/new.html:26 msgid "Why Sign Up?" -msgstr "" +msgstr "Zakaj se registrirati?" #: ckan/templates/user/new.html:28 msgid "Create datasets, groups and other exciting things" -msgstr "" +msgstr "Ustvarite nabore podatkov, skupine in druge zanimive stvari" #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "uporabniško ime" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" -msgstr "" +msgstr "Polno ime" #: ckan/templates/user/new_user_form.html:17 msgid "Create Account" -msgstr "" +msgstr "Ustvari račun" #: ckan/templates/user/perform_reset.html:4 #: ckan/templates/user/perform_reset.html:14 msgid "Reset Your Password" -msgstr "" +msgstr "Ponastavi geslo" #: ckan/templates/user/perform_reset.html:7 msgid "Password Reset" -msgstr "" +msgstr "Ponastavitev gesla" #: ckan/templates/user/perform_reset.html:24 msgid "Update Password" -msgstr "" +msgstr "Psodobi geslo" #: ckan/templates/user/perform_reset.html:38 #: ckan/templates/user/request_reset.html:32 msgid "How does this work?" -msgstr "" +msgstr "Kako to deluje?" #: ckan/templates/user/perform_reset.html:40 msgid "Simply enter a new password and we'll update your account" -msgstr "" +msgstr "Samo vnesite novo geslo in vam bomo posodobili račun" #: ckan/templates/user/read.html:21 msgid "User hasn't created any datasets." -msgstr "" +msgstr "Uporabnik še ni ustvaril nobenih naborov podatkov." #: ckan/templates/user/read_base.html:39 msgid "You have not provided a biography." -msgstr "" +msgstr "Niste še oddali biografije." #: ckan/templates/user/read_base.html:41 msgid "This user has no biography." -msgstr "" +msgstr "Ta uporabnik nima biografije." #: ckan/templates/user/read_base.html:73 msgid "Open ID" -msgstr "" +msgstr "Odprti ID" #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 msgid "This means only you can see this" -msgstr "" +msgstr "To pomeni, da to lahko vidite samo vi" #: ckan/templates/user/read_base.html:87 msgid "Member Since" -msgstr "" +msgstr "Član od" #: ckan/templates/user/read_base.html:96 msgid "API Key" -msgstr "" +msgstr "API ključ" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Ponastavitev gesla" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Zahtevajte ponastavitev" #: ckan/templates/user/request_reset.html:34 msgid "" "Enter your username into the box and we will send you an email with a link " "to enter a new password." -msgstr "" +msgstr "Vnesite uporabniško ime v polje in vam bomo poslali email s povezavo, kjer boste vnesli novo geslo." #: ckan/templates/user/snippets/followee_dropdown.html:14 #: ckan/templates/user/snippets/followee_dropdown.html:15 msgid "Activity from:" -msgstr "" +msgstr "Aktivnost od:" #: ckan/templates/user/snippets/followee_dropdown.html:23 msgid "Search list..." -msgstr "" +msgstr "Preiskovanje seznama..." #: ckan/templates/user/snippets/followee_dropdown.html:44 msgid "You are not following anything" -msgstr "" +msgstr "Ne sledite ničemur" #: ckan/templates/user/snippets/followers.html:9 msgid "No followers" -msgstr "" +msgstr "Ni sledilcev" #: ckan/templates/user/snippets/user_search.html:5 msgid "Search Users" -msgstr "" +msgstr "Preišči uporabnike" #: ckanext/datapusher/helpers.py:19 msgid "Complete" -msgstr "" +msgstr "Končano" #: ckanext/datapusher/helpers.py:20 msgid "Pending" -msgstr "" +msgstr "V teku" #: ckanext/datapusher/helpers.py:21 msgid "Submitting" -msgstr "" +msgstr "Pošiljam" #: ckanext/datapusher/helpers.py:27 msgid "Not Uploaded Yet" -msgstr "" +msgstr "Ni še naloženo" #: ckanext/datastore/controller.py:31 msgid "DataStore resource not found" -msgstr "" +msgstr "DataStore vir ni na voljo" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "Podatki so napačni (na primer: numerična vrednost je izven dovoljenega obsega ali pa je bila vnešena v tekstovno polje)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." -msgstr "" +msgstr "Vir \"{0}\" ni na voljo." #: ckanext/datastore/logic/auth.py:16 msgid "User {0} not authorized to update resource {1}" -msgstr "" +msgstr "Uporabnik {0} nima dovoljenja za posodobitev vira {1}" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Nabori podatkov na stran" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testna nastavitev" #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "Polje po meri naraščujoče" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "Polje po meri padajoče" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "Custom Text" -msgstr "" +msgstr "Tekst po meri" #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 msgid "custom text" -msgstr "" +msgstr "tekst po meri" #: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 msgid "Country Code" -msgstr "" +msgstr "Geslo države" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" +msgstr "tekst vira po meri" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" msgstr "" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" -msgstr "" +msgstr "ta skupina nima opisa" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "CKANovo orodje za predogled podatkov ima močne zmogljivosti" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "url slike" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +msgstr "npr. http://primer.net/slika.jpg (če prazno, uporabi url vira)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" -msgstr "" +msgstr "Data Explorer" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "Tabela" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Graf" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" +msgstr "Zemljevid" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "Row offset" -msgstr "" +msgstr "Odklon vrstic" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "npr: 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Število vrstic" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "npr: 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Tip grafa" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Skupina (os 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Serija (os 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "Tip polja" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" -msgstr "" +msgstr "Polje zemljepisne širine" #: ckanext/reclineview/theme/templates/recline_map_form.html:8 msgid "Longitude field" -msgstr "" +msgstr "Polje zemljepisne dolžine" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "GeoJSON polje" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" -msgstr "" +msgstr "Samodejni zoom na značilnosti" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "Markerji gruč" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" -msgstr "" +msgstr "Celotno število naborov podatkov" #: ckanext/stats/templates/ckanext/stats/index.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:40 msgid "Date" -msgstr "" +msgstr "Datum" #: ckanext/stats/templates/ckanext/stats/index.html:18 msgid "Total datasets" -msgstr "" +msgstr "Vsi nabori podatkov" #: ckanext/stats/templates/ckanext/stats/index.html:33 #: ckanext/stats/templates/ckanext/stats/index.html:179 msgid "Dataset Revisions per Week" -msgstr "" +msgstr "Revizije naborov podatkov po tednih" #: ckanext/stats/templates/ckanext/stats/index.html:41 msgid "All dataset revisions" -msgstr "" +msgstr "vse revizije podatkov" #: ckanext/stats/templates/ckanext/stats/index.html:42 msgid "New datasets" -msgstr "" +msgstr "Novi nabori podatkov" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" -msgstr "" +msgstr "Najvišje ocenjeni nabori podatkov" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" -msgstr "" +msgstr "Povprečna ocena" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" -msgstr "" +msgstr "Število ocen" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" -msgstr "" +msgstr "Ni ocen" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" -msgstr "" +msgstr "Najbolj urejevani nabori podatkov" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" -msgstr "" +msgstr "Število urejevanj" #: ckanext/stats/templates/ckanext/stats/index.html:103 msgid "No edited datasets" -msgstr "" +msgstr "Ni urejevanih naborov podatkov" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" -msgstr "" +msgstr "Največje skupine" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" -msgstr "" +msgstr "Število naborov podatkov" #: ckanext/stats/templates/ckanext/stats/index.html:127 msgid "No groups" -msgstr "" +msgstr "Ni skupin" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" -msgstr "" +msgstr "Najvišje oznake" #: ckanext/stats/templates/ckanext/stats/index.html:136 msgid "Tag Name" -msgstr "" +msgstr "Ime oznake" #: ckanext/stats/templates/ckanext/stats/index.html:137 #: ckanext/stats/templates/ckanext/stats/index.html:157 msgid "Number of Datasets" -msgstr "" +msgstr "Število naborov podatkov" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" -msgstr "" +msgstr "Menu statistik" #: ckanext/stats/templates/ckanext/stats/index.html:178 msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" +msgstr "Celotno število naborov podatkov" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Besedilo" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Spletna stran" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "URL spletne strani" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "npr. http://primer.net (če prazno uporabi url vira)" diff --git a/ckan/i18n/sq/LC_MESSAGES/ckan.mo b/ckan/i18n/sq/LC_MESSAGES/ckan.mo index 15ded6c10c0..294c534a969 100644 Binary files a/ckan/i18n/sq/LC_MESSAGES/ckan.mo and b/ckan/i18n/sq/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/sq/LC_MESSAGES/ckan.po b/ckan/i18n/sq/LC_MESSAGES/ckan.po index 86fadcf4b03..c996a15abee 100644 --- a/ckan/i18n/sq/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sq/LC_MESSAGES/ckan.po @@ -4,258 +4,260 @@ # # Translators: # abrahaj , 2011 +# Endrit Bytyqi , 2015 +# Festina , 2015 # , 2011 # Sean Hammond , 2012 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:22+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Albanian (http://www.transifex.com/projects/p/ckan/language/sq/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:24+0000\n" +"Last-Translator: dread \n" +"Language-Team: Albanian (http://www.transifex.com/okfn/ckan/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Funksioni i autorizimit nuk u gjet:%s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" -msgstr "" +msgstr "Administratori" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" -msgstr "" +msgstr "Redaktori" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" -msgstr "" +msgstr "Anëtar" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" -msgstr "" +msgstr "Duhesh me qenë administrator i sistemit për të administruar" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" -msgstr "" +msgstr "Titulli faqes" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" -msgstr "" +msgstr "Stilizimi" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" -msgstr "" +msgstr "Etiketat e faqës" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" -msgstr "" +msgstr "Etiketa e logos së faqës" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" -msgstr "Rreth" +msgstr "Rreth nesh" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" -msgstr "" +msgstr "Teksti i faqes Rreth nesh" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" -msgstr "" +msgstr "Teksti hyrës" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" -msgstr "" +msgstr "Teksti në ballinë" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" -msgstr "" +msgstr "Kostumizo CSS-in" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" -msgstr "" +msgstr "Ne kreun e faqes u shtua css is kostumizuar" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" -msgstr "" +msgstr "Ballina" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" -msgstr "" +msgstr "Nuk mund të largohet paketa %s si version i lidhur i %s, perfshirë %s paketat të cilat nuk janë fshirë." -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" -msgstr "" +msgstr "Problem në largimin e versionit %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" -msgstr "" +msgstr "Largimi u kompletua" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." -msgstr "" +msgstr "Veprimi nuk u përfundua." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Nuk jeni i autorizuar për të parë këtë faqe" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Ndalohet qasja" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Nuk u gjet" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Kërkesë e gabuar" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Emri i veprimit nuk është i njohur:%s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Gabim në JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" -msgstr "" +msgstr "Kërkesë e gabuar e të dhënave: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Nuk mund të listoj ente të këtij tipi: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Nuk mund të lexoj ente të këtij tipi: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Nuk mund të krijoj një ent të këtij grupi: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" -msgstr "" +msgstr "E pamundur të shtohet një paketë për të kërkuar ideksin" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Nuk mund ta updatoj këtë tip: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" -msgstr "" +msgstr "E pamundur të ndryshohet indeksi i kërkimit" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Nuk mund të fshij entin e këtij tipi: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Asnjë rishikim i specifikuar" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Nuk ka ndryshime me këtë id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" +msgstr "Mungon kushti i kerkimit ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Nuk munda të lexoja parametrat: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" -msgstr "Vecori të gabuara kërkimi: %s" +msgstr "Vecori e gabuar e kërkimit: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Regjistër i panjohur: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" -msgstr "" +msgstr "Vlerë e gabuar e QJSON-it: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Parametrat e kërkimit duhet të jenë në formë json ose në një fjalor të koduar json" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Grupi nuk u gjet" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Organizata nuk u gjet" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" -msgstr "" +msgstr "Tip i gabuar i grupimit" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Të paautorizuar për të lexuar grupin %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -264,419 +266,328 @@ msgstr "Të paautorizuar për të lexuar grupin %s" #: ckan/templates/organization/read_base.html:6 #: ckan/templates/package/base.html:14 msgid "Organizations" -msgstr "" +msgstr "Organizatat" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupe" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 #: ckan/templates/tag/index.html:12 msgid "Tags" -msgstr "Terma" +msgstr "Etiketat" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" -msgstr "" +msgstr "Formatet" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" -msgstr "" +msgstr "Licencat" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" -msgstr "" +msgstr "Nuk jeni i autorizuar të kryeni bulk ndryshime" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "I paautorizuar për të krijuar një grup" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Përdoruesi %r nuk është i autorizuar të modifikojë %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Gabim i brendshëm" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Përdoruesi %r nuk është i autorizuar të modifikojë autorizimet %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" -msgstr "" +msgstr "Nuk jeni i autorizuar për të fshirë grupin %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." -msgstr "" +msgstr "Organizata është fshirë." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." -msgstr "" +msgstr "Grupi është fshirë." + +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s është fshirë." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" -msgstr "" +msgstr "Nuk jeni i autorizuar për të shtuar anëtar në grupin %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" -msgstr "" +msgstr "Nuk jeni i autorizuar për të fshirë anëtar në grupin %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." -msgstr "" +msgstr "Anëtari i grupit është fshirë." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Zgjidhni dy versione para se të bëni krahasimin" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Përdoruesi %r nuk është i autorizuar për modifikim mbi %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN Historia e versioneve" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Ndryshimet e fundit te CKAN Grupi:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Mesazhet e log:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" -msgstr "" +msgstr "Të paautorizuar për të lexuar grupin {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" -msgstr "" +msgstr "Tani po ndiqni {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" -msgstr "" +msgstr "Më nuk ndiqni {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" -msgstr "" +msgstr "Të paautorizuar për të shikuar ndjekësit %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Kjo faqe është aktualisht off-line. Baza e të dhënave nuk është ndezur." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " -msgstr "" +msgstr "Ju lutem ndryshoni profilin tuaj, si dhe shtoni email adresën " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "" +msgstr "%s përdor email adresën tuaj nëse ju nevojitet ndryshimi i fjalëkalimit." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +msgstr "Parametri \"{parameter_name}\" nuk është një numër i plotë." + +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" -msgstr "" +msgstr "Seti i të dhënave nuk u gjet" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "I paautorizuar të lexoni paketën %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Format rishikimi i pavlefshëm :%r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." -msgstr "" +msgstr "Shikimi i seteve të të dhënave {package_type} në formatin {format} nuk përkrahet (skedari {file} nuk u gjet)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" -msgstr "" +msgstr "Historiku i ndryshimeve të setit të dhënave të CKAN-it" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " -msgstr "" +msgstr "Ndryshimet e fundit në setin e të dhënave të CKAN:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "I paautorizuar të krijoni një paketë" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" -msgstr "" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +msgstr "Të paautorizuar për t'a redaktuar këtë burim" + +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" -msgstr "" +msgstr "Burimi nuk u gjet" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" -msgstr "" +msgstr "Të paautorizuar të ndryshoni setin e të dhënave" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." -msgstr "" +msgstr "Seti i të dhënave {id} nuk u gjet" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" -msgstr "" +msgstr "Duhet të shtoni të paktën nj burim të të dhënave" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Gabim" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" -msgstr "" +msgstr "Të paautorizuar për të krijuar një burim" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "Të paautorizuar të krijoni një burim për këtë paketë" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." -msgstr "" +msgstr "E pamundur të shtoni paketën për të kërkuar indeksin" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." -msgstr "" +msgstr "E pamundur të ndryshoni indeksin e kërkimit." + +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Seti i të dhënave është fshirë." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" -msgstr "" - -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" +msgstr "I paautorizuar për të fshirë paketën %s" -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." -msgstr "" +msgstr "Burimi është fshirë." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" -msgstr "" +msgstr "Të paautorizuar për të fshirë burimin %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" -msgstr "" +msgstr "Të paautorizuar të lexoni setin e të dhënave %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "Faqja burimore nuk u gjet" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" -msgstr "" +msgstr "Të paautorizuar të lexoni burimin %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" -msgstr "" +msgstr "Të dhënat burimore nuk u gjetën" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" -msgstr "" +msgstr "Asnjë shkarkim nuk është në dispozicion" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Të paautorizuar të redaktoni burimin" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "Pamja nuk u gjet" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "Të paautorizuar të shikoni Faqën %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "Lloji i Pamjës nuk u gjet" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Burim i gabuar i shikimit të të dhënave" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Të paautorizuar të lexoni faqen %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "Faqja burimore nuk u dha" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." -msgstr "" - -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" +msgstr "Nuk u përcaktua asnjë parapamje" #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" @@ -689,7 +600,7 @@ msgstr "Ndryshime të fundit në katalogun CKAN" #: ckan/controllers/revision.py:108 #, python-format msgid "Datasets affected: %s.\n" -msgstr "" +msgstr "Setet e të dhënave janë prekur: %s.\n" #: ckan/controllers/revision.py:188 msgid "Revision updated" @@ -703,16 +614,16 @@ msgstr "Tjetër" msgid "Tag not found" msgstr "Tag nuk u gjet" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Përdoruesi nuk u gjet" #: ckan/controllers/user.py:149 msgid "Unauthorized to register as a user." -msgstr "" +msgstr "Jeni të paautorizuar të regjistroheni si përdorues" #: ckan/controllers/user.py:166 msgid "Unauthorized to create a user" @@ -720,21 +631,21 @@ msgstr "Jeni të paautorizuar për të krijuar një përdorues" #: ckan/controllers/user.py:197 msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" +msgstr "Të paautorizuar për të fshirë përdoruesin me id \"{user_id}\"." #: ckan/controllers/user.py:211 ckan/controllers/user.py:270 msgid "No user specified" msgstr "Asnjë përdorues i përcaktuar" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Të paautorizuar për të redaktuar %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" -msgstr "" +msgstr "Profili u përditsua" #: ckan/controllers/user.py:232 #, python-format @@ -750,203 +661,215 @@ msgstr "Captcha keqe. Ju lutem provoni përsëri." msgid "" "User \"%s\" is now registered but you are still logged in as \"%s\" from " "before" -msgstr "" +msgstr "Përdoruesi \"%s\" është i regjistruar tani, mirëpo ju jeni ende të kyçur si \"%s\", nga më parë" #: ckan/controllers/user.py:276 msgid "Unauthorized to edit a user." -msgstr "" +msgstr "Të paautorizuar për të redaktuar përdoruesin" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr " Përdoruesi %s nuk është i autorizuar për të redaktuar %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Fjalëkalimi i dhënë është gabim" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Fjalëkalimi i vjetër" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "Fjalëkalimi gabim" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." -msgstr "" +msgstr "Kycja dështoi. Emri përdoruesit ose fjalëkalimi gabim." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." -msgstr "" +msgstr "Nuk jeni i autorizuar për t'a kërkuar ndrrimin e fjalëkalimit. " -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" u gjet në disa përdorues" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Asnjë përdorues i tillë:%s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Ju lutem kontrolloni kutinë tuaj për një kod rigjenerimi" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Nuk mund të dërgoni kodin për rigjenerim fjalëkalimi :%s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." -msgstr "" +msgstr "Nuk jeni i autorizuar për t'a ndërruar fjalëkalimin. " -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Kod i gabuar rigjenerimi. Ju lutem provoni përsëri." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Fjalëkalimi juaj është rigjeneruar" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Fjalëkalimi juaj duhet të jetë 4 shkronja ose më i gjatë." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Fjalëkalimet nuk përputhen." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" -msgstr "" +msgstr "Duhet të jepni një fjalëkalim" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" -msgstr "" +msgstr "Artikulli Ndjek nuk u gjet" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" -msgstr "" +msgstr "{0} nuk u gjet" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" -msgstr "" +msgstr "Të paautorizuar të lexoni {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" -msgstr "" +msgstr "Gjithçka" #: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 msgid "Missing Value" -msgstr "" +msgstr "Vlera mungon" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Ridrejtimi në faqën e jashtme nuk lejohet." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" +msgstr "{actor} shtoi etiketën {tag} në setin e të dhënave {dataset}" #: ckan/lib/activity_streams.py:67 msgid "{actor} updated the group {group}" -msgstr "" +msgstr "{actor} ndryshoj grupin {group}" #: ckan/lib/activity_streams.py:70 msgid "{actor} updated the organization {organization}" -msgstr "" +msgstr "{actor} ndryshoj organizatën {organization}" #: ckan/lib/activity_streams.py:73 msgid "{actor} updated the dataset {dataset}" -msgstr "" +msgstr "{actor} ndryshoj setin e të dhënave {dataset}" #: ckan/lib/activity_streams.py:76 msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" +msgstr "{actor} ndryshoj extra vlerën {extra} në setin e të dhënave {dataset}" #: ckan/lib/activity_streams.py:79 msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" +msgstr "{actor} ndryshoj burimin {resource} në setin e të dhënave {dataset}" #: ckan/lib/activity_streams.py:82 msgid "{actor} updated their profile" -msgstr "" +msgstr "{actor} ndryshoj profilin e tyre" #: ckan/lib/activity_streams.py:86 msgid "" "{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" +msgstr "{actor} ndryshoj {related_type} {related_item} të setit të të dhënave {dataset}" #: ckan/lib/activity_streams.py:89 msgid "{actor} updated the {related_type} {related_item}" -msgstr "" +msgstr "{actor} ndryshoj {related_type} {related_item}" #: ckan/lib/activity_streams.py:92 msgid "{actor} deleted the group {group}" -msgstr "" +msgstr "{actor} fshiu grupin {group}" #: ckan/lib/activity_streams.py:95 msgid "{actor} deleted the organization {organization}" -msgstr "" +msgstr "{actor} fshiu organizatën {organization}" #: ckan/lib/activity_streams.py:98 msgid "{actor} deleted the dataset {dataset}" -msgstr "" +msgstr "{actor} fshiu setin e të dhënave {dataset}" #: ckan/lib/activity_streams.py:101 msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" +msgstr "{actor} fshiu ekstra {extra} nga seti i të dhënave {dataset}" #: ckan/lib/activity_streams.py:104 msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" +msgstr "{actor} fshiu burimin {resource} nga seti i të dhënave {dataset}" #: ckan/lib/activity_streams.py:108 msgid "{actor} created the group {group}" -msgstr "" +msgstr "{actor} krijoi grupin {group}" #: ckan/lib/activity_streams.py:111 msgid "{actor} created the organization {organization}" -msgstr "" +msgstr "{actor} krijoi organizatën {organization}" #: ckan/lib/activity_streams.py:114 msgid "{actor} created the dataset {dataset}" -msgstr "" +msgstr "{actor} krijoi setin e të dhënave {dataset}" #: ckan/lib/activity_streams.py:117 msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" +msgstr "{actor} shtoi ekstra {extra} në setin e të dhënave {dataset}" #: ckan/lib/activity_streams.py:120 msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" +msgstr "{actor} shtoi burimin {resource} në setin e të dhënave {dataset}" #: ckan/lib/activity_streams.py:123 msgid "{actor} signed up" -msgstr "" +msgstr "{actor} u regjistrua" #: ckan/lib/activity_streams.py:126 msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" +msgstr "{actor} fshiu etiketën {tag} nga seti i të dhënave {dataset}" #: ckan/lib/activity_streams.py:129 msgid "{actor} deleted the related item {related_item}" -msgstr "" +msgstr "{actor} fshiu artikullin e ngjashëm {related_item}" #: ckan/lib/activity_streams.py:132 msgid "{actor} started following {dataset}" -msgstr "" +msgstr "{actor} filloi të ndjek {dataset}" #: ckan/lib/activity_streams.py:135 msgid "{actor} started following {user}" -msgstr "" +msgstr "{actor} filloi të ndjek {user}" #: ckan/lib/activity_streams.py:138 msgid "{actor} started following {group}" -msgstr "" +msgstr "{actor} filloi të ndjek {group}" #: ckan/lib/activity_streams.py:142 msgid "" "{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" +msgstr "{actor} shtoi {related_type} {related_item} në setin e të dhënave {dataset}" #: ckan/lib/activity_streams.py:145 msgid "{actor} added the {related_type} {related_item}" -msgstr "" +msgstr "{actor} shtoi {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -954,188 +877,188 @@ msgid "View" msgstr "Shikoni" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" -msgstr "" +msgstr "Janar" #: ckan/lib/formatters.py:21 msgid "February" -msgstr "" +msgstr "Shkurt" #: ckan/lib/formatters.py:25 msgid "March" -msgstr "" +msgstr "Mars" #: ckan/lib/formatters.py:29 msgid "April" -msgstr "" +msgstr "Prill" #: ckan/lib/formatters.py:33 msgid "May" -msgstr "" +msgstr "Maj" #: ckan/lib/formatters.py:37 msgid "June" -msgstr "" +msgstr "Qershor " #: ckan/lib/formatters.py:41 msgid "July" -msgstr "" +msgstr "Korrik" #: ckan/lib/formatters.py:45 msgid "August" -msgstr "" +msgstr "Gusht" #: ckan/lib/formatters.py:49 msgid "September" -msgstr "" +msgstr "Shtator" #: ckan/lib/formatters.py:53 msgid "October" -msgstr "" +msgstr "Tetor" #: ckan/lib/formatters.py:57 msgid "November" -msgstr "" +msgstr "Nëntor" #: ckan/lib/formatters.py:61 msgid "December" -msgstr "" +msgstr "Dhjetor" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" -msgstr "" +msgstr "Tani" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" -msgstr "" +msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" -msgstr "" +msgstr "{bytes} bajta" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" -msgstr "" +msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" -msgstr "" +msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" -msgstr "" +msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" -msgstr "" +msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" -msgstr "" +msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" -msgstr "" +msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" -msgstr "" +msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" -msgstr "" +msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" -msgstr "" +msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" -msgstr "" +msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" -msgstr "" +msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" -msgstr "" +msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" -msgstr "" +msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" -msgstr "" +msgstr "Ndrysho avatarin tuaj në gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" -msgstr "" +msgstr "I panjohur" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" -msgstr "" +msgstr "Burim i pa emëruar" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." -msgstr "" +msgstr "U krijua seti i ri i të dhënave" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." -msgstr "" +msgstr "Redakto burimet." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." -msgstr "" +msgstr "Redakto cilësimet" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" msgstr[1] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1153,7 +1076,7 @@ msgstr "%s <%s>" #: ckan/lib/mailer.py:99 msgid "No recipient email address available!" -msgstr "No email marrësit adresa në dispozicion!" +msgstr "Asnjë adresë elektronike marrëse në dispozicion!" #: ckan/lib/mailer.py:104 msgid "" @@ -1162,16 +1085,16 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Keni kërkuar fjalëkalimin në {site_title} të ndryshohet. \n \nJu lutem klikoni në linkun vijues për të konfirmuar këtë kërkesë: \n \n{reset_link} \n\n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Jeni ftuar në {site_title}. Një përdorues tashmë është krijuar për ju me emër {user_name}. Mund t'a ndryshoni më vonë. \n \nPër të pranuar këtë ftesë, ju lutem ndryshoni fjalëkalimin në: \n \n{reset_link} \n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1180,7 +1103,7 @@ msgstr "Rivendosni fjalëkalimin tuaj" #: ckan/lib/mailer.py:151 msgid "Invite for {site_title}" -msgstr "" +msgstr "Fto për {site_title}" #: ckan/lib/navl/dictization_functions.py:11 #: ckan/lib/navl/dictization_functions.py:13 @@ -1191,20 +1114,20 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" -msgstr "" +msgstr "Vlera mungon" #: ckan/lib/navl/validators.py:64 #, python-format msgid "The input field %(name)s was not expected." -msgstr "" +msgstr "Fusha hyrëse %(name)s nuk pritej." #: ckan/lib/navl/validators.py:116 msgid "Please enter an integer value" -msgstr "" +msgstr "Ju lutem vendosni një vlerë të plotë" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1214,11 +1137,11 @@ msgstr "" msgid "Resources" msgstr "Burime" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" -msgstr "" +msgstr "Paketa e burimit(eve) e pavlefshme" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Ekstra" @@ -1226,695 +1149,687 @@ msgstr "Ekstra" #: ckan/logic/converters.py:72 ckan/logic/converters.py:87 #, python-format msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" +msgstr "Fjali i etiketës \"%s\" nuk ekziston" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" -msgstr "" +msgstr "Përdorues" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Të dhëna" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grup" #: ckan/logic/converters.py:178 msgid "Could not parse as valid JSON" -msgstr "" +msgstr "Nuk mund të konvertoj si JSON valid" #: ckan/logic/validators.py:30 ckan/logic/validators.py:39 msgid "A organization must be supplied" -msgstr "" - -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" +msgstr "Organizata duhet të jetë e furnizuar" -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" -msgstr "" +msgstr "Organizata nuk ekziston" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" -msgstr "" +msgstr "Nuk mund të shtoni set të të dhënave në këtë organizatë" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" -msgstr "" +msgstr "Numër i plotë i pavlefshëm" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" -msgstr "" +msgstr "Duhet të jetë një numër natyror" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" -msgstr "" +msgstr "Duhet të jetë një numër i plotë pozitiv" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" -msgstr "" +msgstr "Formati i datës është gabim" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Nuk lejohen linke në messazhet log" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "Seti i të dhënave tashmë ekziston" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" -msgstr "" +msgstr "Burimi" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" -msgstr "" +msgstr "I ndërlidhur" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." -msgstr "" +msgstr "Emri i tillë i grupit ose ID-s nuk ekziston." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" -msgstr "" +msgstr "Lloji aktivitetit" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" -msgstr "" +msgstr "Emrat duhet të jenë në fjalë" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" -msgstr "" +msgstr "Ky emër nuk mund të përdoret" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Duhet të jetë së paku %s karaktere i gjatë" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" -msgstr "" +msgstr "Emri duhet të jetë një maksimum prej %i karaktere i gjatë" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "Duhet të jenë karaktere aflanumerike të vogla (ascii) dhe këto simbole: -_" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." -msgstr "" +msgstr "Ky URL është tashmë në përdorim" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" -msgstr "" +msgstr "Gjatësia e emrit \"%s\" është më pak se minimumi %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" -msgstr "" +msgstr "Gjatësia e emrit \"%s\" është më shumë se maksimumi %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" -msgstr "" +msgstr "Versioni duhet të jetë një maksimum prej %i karaktere të gjatë" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Celës i dyfishuar \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Ky emër grupi gjendet në databazë" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Gjatësia e termit \"%s\" është më e shkurtër se minimumi %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" +msgstr "Gjatësia e etiketës \"%s\" është më shumë se maksimumi %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Termi \"%s\" duhet të jetë shkronjë ose një nga simbolet: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Termi \"%s\" nuk duhet të jetë me shkronja të mëdha" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" -msgstr "" +msgstr "Emri përoruesit duhet të jet me fjalë" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." -msgstr "" +msgstr "Emri i pëdoruesit nuk është në dispozicion." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" -msgstr "" +msgstr "Ju lutem jepni dy fjalëkalimet" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" -msgstr "" +msgstr "Fjalëkalimet duhet të jenë vargje" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" -msgstr "" +msgstr "Fjalëkalimi juaj duhet të jetë 4 karaktere ose më i gjatë" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" -msgstr "" +msgstr "Fjalëkalimi i dhënë nuk përputhet" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." -msgstr "" +msgstr "Redaktimi nuk lejohet sepse duket si spam. Ju lutem shmangni linqet në pëshkrimin tuaj." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Emri duhet të jetë të paktën %s karaktere" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." -msgstr "" +msgstr "Ai emër i fjalorit është tashmë në përdorim. " -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" +msgstr "Nuk mund të ndryshojë vlerën e çelësit nga nga %s në %s. Ky çelës është vetëm për lexim" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." -msgstr "" +msgstr "Etiketa e fjalorit nuk u gjet." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" -msgstr "" +msgstr "Etiketa %s nuk i takon fjalorit %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" -msgstr "" +msgstr "Nuk emër të etiketës" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" -msgstr "" +msgstr "Etiketa %s tashmë i takon fjalorit %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" -msgstr "" +msgstr "Ju lutem jepni një URL valid" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." -msgstr "" +msgstr "Roli nuk ekziston" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." -msgstr "" +msgstr "Setet e të dhënave pa organizim nuk mund të jenë private." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" -msgstr "" +msgstr "Nuk është listë" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" -msgstr "" +msgstr "Nuk është një varg" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" -msgstr "" +msgstr "Ky prind do të krijonte një unazë në hierarki" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "\"filter_fields\" dhe \"filter_values\" duhet të kenë të njëjtën gjatësi" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +msgstr "\"filter_fields\" është e nevojshme kur \"filter_values\" është e mbushur" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "\"filter_values\" është e nevojshme kur \"filter_fields\" është e mbushur" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "Është një fushë skemë me të njëjtin emër" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "API REST: Krijo objektin %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "API REST: Krijoni lidhjen e pakos: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" -msgstr "" +msgstr "REST API: Krijo objektin anëtar %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" -msgstr "" +msgstr "Duke u përpjekur për të krijuar një organizatë si një grup" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Duhet të jepni një nr pakete ose një emër (parametri \"paketa\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Duhet të jepni një vlerësim (parametri \"vlerësimi\")" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Vlera duhet të jetë numerike." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Vlera duhet të jetë midis %i dhe %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" -msgstr "" +msgstr "Ju duhet të jeni të kyçur për të ndjekur përdoruesit" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" -msgstr "" +msgstr "Nuk mund t'a ndiqni veten" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" -msgstr "" +msgstr "Tani po ndiqni {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." -msgstr "" +msgstr "Ju duhet të jeni të kyçur për të ndjekur një set të të dhënave." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." -msgstr "" +msgstr "Përdoruesi {username} nuk ekziston." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." -msgstr "" +msgstr "Ju duhet të jeni të kyçur për të ndjekur një grup." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "API REST: Fshij paketën: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "API REST: Fshij %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" -msgstr "" +msgstr "REST API: Fshij anëtarin: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" -msgstr "" +msgstr "Id nuk është në të dhënat" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" -msgstr "" +msgstr "Fjalori nuk u gjet \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" -msgstr "" +msgstr "Etiketa nuk u gjet \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." -msgstr "" +msgstr "Ju duhet të jeni të kyçur mos ndjekni diçka." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." -msgstr "" +msgstr "Ju nuk jeni duke ndjekur {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." -msgstr "" +msgstr "Burimi nuk u gjet." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" -msgstr "" +msgstr "Mos specifikoni nëse jeni duke përdorur \"query\" parametrin" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" -msgstr "" +msgstr "Duhet të jenë : palë(t)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" - -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" +msgstr "Fusha \"{field}\" nuk njihet në resource_search." -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." -msgstr "" +msgstr "Artikulli nuk u gjet." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Paketa nuk u gjet" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" -msgstr "" +msgstr "REST API: Ndrysho objektin %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "API REST: Update lidhjen e paketës: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." -msgstr "" +msgstr "TaskStatus nuk u gjet." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." -msgstr "" +msgstr "Organizata nuk u gjet" #: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 #, python-format msgid "User %s not authorized to create packages" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar për të krijuar paketa" #: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 #, python-format msgid "User %s not authorized to edit these groups" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar për të redaktuar këto grupe" #: ckan/logic/auth/create.py:36 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar për të shtuar setin e të dhënave në këtë organizatë" #: ckan/logic/auth/create.py:58 msgid "You must be a sysadmin to create a featured related item" -msgstr "" +msgstr "Ju duhet të jeni adiminstrator i sistemit për të krijuar artikullin me tipare të ngjashme" #: ckan/logic/auth/create.py:62 msgid "You must be logged in to add a related item" -msgstr "" +msgstr "Duhet të jenit të kyçur për të shtuar një artikull të ngjashëm" #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "Asnjë id e setit të të dhënave nuk është dhënë, nuk mund të kryeni autentikimin." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." -msgstr "" +msgstr "Asnjë paketë nuk u gjet për këtë burim, autentifkimi nuk mund të kryhet." #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të krijoj burime në setin e të dhënave %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj këto paketa" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të krijoj grupe" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të krijoj organizata" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" -msgstr "" +msgstr "Përdoruesi {user} nuk është i autorizuar të krijoj përdorues përmes API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" -msgstr "" +msgstr "Nuk jeni të autorizuar të krijoni përdorues" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." -msgstr "" +msgstr "Grupi nuk u gjet." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" -msgstr "" +msgstr "Çelës valid i API-së nevojitet për të krijuar një paketë" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" -msgstr "" +msgstr "Çelës valid i API-së nevojitet për të krijuar një grup" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të shtoj anëtarë" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj grupin %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të fshijë burimin %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "Faqja e burimit nuk u gjet, nuk mund të kryhet autentikimi." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" -msgstr "" +msgstr "Vetëm pronari mund t'a fshijë një artikull të ngjashëm" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të fshij raportin %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të fshij grupet" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të fshij grupin %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të fshij organizatat" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të fshij organizatën %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të fshij task_status" + +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Nuk jeni i autorizuar" #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të lexoj këto paketa" #: ckan/logic/auth/get.py:119 #, python-format msgid "User %s not authorized to read package %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të lexoj paketën %s" #: ckan/logic/auth/get.py:141 #, python-format msgid "User %s not authorized to read resource %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të lexoj burimin %s" #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të lexoj grupin %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." -msgstr "" +msgstr "Ju duhet të jeni të kyçur që të keni qasje në panelin tuaj." #: ckan/logic/auth/update.py:37 #, python-format msgid "User %s not authorized to edit package %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj paketën %s" #: ckan/logic/auth/update.py:69 #, python-format msgid "User %s not authorized to edit resource %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj burimin %s" #: ckan/logic/auth/update.py:98 #, python-format msgid "User %s not authorized to change state of package %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të ndryshoj gjendjen e paketës %s" #: ckan/logic/auth/update.py:126 #, python-format msgid "User %s not authorized to edit organization %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj organizatën %s" #: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 msgid "Only the owner can update a related item" -msgstr "" +msgstr "Vetëm pronari mund të ndryshoj një artikull të ndërlidhur" #: ckan/logic/auth/update.py:148 msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" +msgstr "Ju duhet të jeni adiminstrator i sistemit për të ndryshuar fushën e artikullit të ngjashëm." #: ckan/logic/auth/update.py:165 #, python-format msgid "User %s not authorized to change state of group %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të ndryshoj gjendjen e grupit %s" #: ckan/logic/auth/update.py:182 #, python-format msgid "User %s not authorized to edit permissions of group %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj lejet e grupit %s" #: ckan/logic/auth/update.py:209 msgid "Have to be logged in to edit user" -msgstr "" +msgstr "Duhet të jeni të kyçur që të redaktoni përdoruesin" #: ckan/logic/auth/update.py:217 #, python-format msgid "User %s not authorized to edit user %s" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj përdoruesin %s" #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "Përdoruesi {0} nuk është i autorizuar të ndryshoj përdoruesin {1}" #: ckan/logic/auth/update.py:236 #, python-format msgid "User %s not authorized to change state of revision" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të ndryshoj gjendjen e versionit të ripunuar" #: ckan/logic/auth/update.py:245 #, python-format msgid "User %s not authorized to update task_status table" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të ndryshoj tabelën e task_status" #: ckan/logic/auth/update.py:259 #, python-format msgid "User %s not authorized to update term_translation table" -msgstr "" +msgstr "Përdoruesi %s nuk është i autorizuar të ndryshoj tabelën e term_translation" #: ckan/logic/auth/update.py:281 msgid "Valid API key needed to edit a package" -msgstr "" +msgstr "Çelës valid i API-së nevojitet për t'a redaktuar një paketë" #: ckan/logic/auth/update.py:291 msgid "Valid API key needed to edit a group" -msgstr "" +msgstr "Çelës valid i API-së nevojitet për t'a redaktuar një grup" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "Licenca nuk është specifikuar" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" +msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" -msgstr "" +msgstr "Licenca e atributëve të Open Data Commons" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" -msgstr "" +msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" -msgstr "" +msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" -msgstr "" +msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" -msgstr "" +msgstr "GNU Dokumentimi i Licencës Pa Pagesë " -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" -msgstr "" +msgstr "Tjera (Hape)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" -msgstr "" +msgstr "Tjera (Domena Publike)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" -msgstr "" +msgstr "Tjera(Atributet)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" -msgstr "" +msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" -msgstr "" +msgstr "Creative Commons Non-Commercial (Ndonjë)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" -msgstr "" +msgstr "Tjera (Jo-komerciale)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" -msgstr "" +msgstr "Tjera (Pa Hapura)" #: ckan/model/package_relationship.py:52 #, python-format @@ -1969,45 +1884,45 @@ msgstr "ka vëlla %s" #: ckanext/reclineview/theme/templates/recline_view.html:12 #: ckanext/textview/theme/templates/text_view.html:9 msgid "Loading..." -msgstr "" +msgstr "Duke u ngarkuar..." #: ckan/public/base/javascript/modules/api-info.js:20 msgid "There is no API data to load for this resource" -msgstr "" +msgstr "Nuk ka ndonjë API të të dhënave që të ngarkoj burimin" #: ckan/public/base/javascript/modules/api-info.js:21 msgid "Failed to load data API information" -msgstr "" +msgstr "Dështoi ngarkimi i informacioneve të të dhënave të API-së" #: ckan/public/base/javascript/modules/autocomplete.js:31 msgid "No matches found" -msgstr "" +msgstr "Asnjë rezultat nuk u përputh" #: ckan/public/base/javascript/modules/autocomplete.js:32 msgid "Start typing…" -msgstr "" +msgstr "Fillo shkrimin..." #: ckan/public/base/javascript/modules/autocomplete.js:34 msgid "Input is too short, must be at least one character" -msgstr "" +msgstr "E dhëna është shum e shkurtër, duhet të jet të paktën një karakter" #: ckan/public/base/javascript/modules/basic-form.js:4 msgid "There are unsaved modifications to this form" -msgstr "" +msgstr "Forma përmbanë ndryshime të paruajtura" #: ckan/public/base/javascript/modules/confirm-action.js:7 msgid "Please Confirm Action" -msgstr "" +msgstr "Ju lutem konfirmoni veprimin" #: ckan/public/base/javascript/modules/confirm-action.js:8 msgid "Are you sure you want to perform this action?" -msgstr "" +msgstr "A jeni te sigurte qe doni ta kryeni këtë veprim?" #: ckan/public/base/javascript/modules/confirm-action.js:9 #: ckan/templates/user/new_user_form.html:9 #: ckan/templates/user/perform_reset.html:21 msgid "Confirm" -msgstr "" +msgstr "Konfirmo" #: ckan/public/base/javascript/modules/confirm-action.js:10 #: ckan/public/base/javascript/modules/resource-reorder.js:11 @@ -2019,111 +1934,109 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" -msgstr "" +msgstr "Anulo" #: ckan/public/base/javascript/modules/follow.js:23 #: ckan/templates/snippets/follow_button.html:14 msgid "Follow" -msgstr "" +msgstr "Ndjek" #: ckan/public/base/javascript/modules/follow.js:24 #: ckan/templates/snippets/follow_button.html:9 msgid "Unfollow" -msgstr "" +msgstr "Mos ndjek" #: ckan/public/base/javascript/modules/image-upload.js:15 msgid "Upload" -msgstr "" +msgstr "Ngarko" #: ckan/public/base/javascript/modules/image-upload.js:16 msgid "Link" -msgstr "" +msgstr "Lidhëse" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" -msgstr "" +msgstr "Largo" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" -msgstr "" +msgstr "Figurë" #: ckan/public/base/javascript/modules/image-upload.js:19 msgid "Upload a file on your computer" -msgstr "" +msgstr "Ngarko një skedar në kompjuerin tuaj" #: ckan/public/base/javascript/modules/image-upload.js:20 msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" +msgstr "Lidhu me një URL në internet ( ju mund të lidheni me një API)" #: ckan/public/base/javascript/modules/related-item.js:25 msgid "show more" -msgstr "" +msgstr "Shfaq më shumë" #: ckan/public/base/javascript/modules/related-item.js:26 msgid "show less" -msgstr "" +msgstr "Shfaq më pak" #: ckan/public/base/javascript/modules/resource-reorder.js:8 msgid "Reorder resources" -msgstr "" +msgstr "rirendit burimet" #: ckan/public/base/javascript/modules/resource-reorder.js:9 #: ckan/public/base/javascript/modules/resource-view-reorder.js:9 msgid "Save order" -msgstr "" +msgstr "Ruaj renditjen" #: ckan/public/base/javascript/modules/resource-reorder.js:10 #: ckan/public/base/javascript/modules/resource-view-reorder.js:10 msgid "Saving..." -msgstr "" +msgstr "Duke u ruajtur..." #: ckan/public/base/javascript/modules/resource-upload-field.js:25 msgid "Upload a file" -msgstr "" +msgstr "Ngarko një skedar" #: ckan/public/base/javascript/modules/resource-upload-field.js:26 msgid "An Error Occurred" -msgstr "" +msgstr "Ka ndodhur një gabim" #: ckan/public/base/javascript/modules/resource-upload-field.js:27 msgid "Resource uploaded" -msgstr "" +msgstr "Burimi u ngarkua" #: ckan/public/base/javascript/modules/resource-upload-field.js:28 msgid "Unable to upload file" -msgstr "" +msgstr "Skedari nuk u ngarkua" #: ckan/public/base/javascript/modules/resource-upload-field.js:29 msgid "Unable to authenticate upload" -msgstr "" +msgstr "E pamundur të autentikohet ngarkimi" #: ckan/public/base/javascript/modules/resource-upload-field.js:30 msgid "Unable to get data for uploaded file" -msgstr "" +msgstr "E pamundur të nxirren të dhënat për dosjen e ngarkuar" #: ckan/public/base/javascript/modules/resource-upload-field.js:31 msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" -msgstr "" +msgstr "Ju jeni duke ngarkuar një skedar. A jeni të sigurt që doni të largoheni dhe t'a ndalni këtë ngarkim?" #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Ri-renditni pamjen e burumit" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2137,30 +2050,29 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Modifikoni" #: ckan/public/base/javascript/modules/table-toggle-more.js:9 msgid "Show more" -msgstr "" +msgstr "Shfaq më shumë" #: ckan/public/base/javascript/modules/table-toggle-more.js:10 msgid "Hide" -msgstr "" +msgstr "Fsheh" #: ckan/templates/error_document_template.html:3 #, python-format msgid "Error %(error_code)s" -msgstr "" +msgstr "Gabim %(error_code)s" #: ckan/templates/footer.html:9 msgid "About {0}" -msgstr "" +msgstr "Rreth {0}" #: ckan/templates/footer.html:15 msgid "CKAN API" -msgstr "" +msgstr "CKAN API" #: ckan/templates/footer.html:16 msgid "Open Knowledge Foundation" @@ -2170,40 +2082,48 @@ msgstr "Open Knowledge Foundation" msgid "" "Powered by CKAN" -msgstr "" +msgstr "Mundësuar nga CKAN" #: ckan/templates/header.html:12 msgid "Sysadmin settings" -msgstr "" +msgstr "Cilësimet e Administratorit të sistemit" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" -msgstr "" +msgstr "Shiko Profilin" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" msgstr[0] "" msgstr[1] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Paneli" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" -msgstr "" +msgstr "Redakto cilësimet" + +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "Cilësimet" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "Dilni nga sistemi" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" -msgstr "" +msgstr "Kyçu" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "Regjistrohu" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2212,7 +2132,6 @@ msgstr "Regjistrohu" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2220,70 +2139,68 @@ msgstr "Regjistrohu" #: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 #: ckan/templates/user/read_base.html:53 msgid "Datasets" -msgstr "" +msgstr "Seti i të dhënave" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" -msgstr "" +msgstr "Kërko Setet e të dhënave" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "Kërko" #: ckan/templates/page.html:6 msgid "Skip to content" -msgstr "" +msgstr "Kalo te përmbajtja" #: ckan/templates/activity_streams/activity_stream_items.html:9 msgid "Load less" -msgstr "" +msgstr "Ngarko më shum" #: ckan/templates/activity_streams/activity_stream_items.html:17 msgid "Load more" -msgstr "" +msgstr "Ngarko më pak" #: ckan/templates/activity_streams/activity_stream_items.html:23 msgid "No activities are within this activity stream" -msgstr "" +msgstr "Asnjë aktivitet mbrenda rrjedhës së këtij aktiviteti" #: ckan/templates/admin/base.html:3 msgid "Administration" -msgstr "" +msgstr "Administrimi" #: ckan/templates/admin/base.html:8 msgid "Sysadmins" -msgstr "" +msgstr "Administratorët e sistemit" #: ckan/templates/admin/base.html:9 msgid "Config" -msgstr "" +msgstr "Konfigurimet" #: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 msgid "Trash" -msgstr "" +msgstr "Shporta" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" -msgstr "" +msgstr "A jeni të sigurt që dëshironi resetimin e konfigurimit?" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" -msgstr "" +msgstr "Reseto" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" -msgstr "" +msgstr "Ndrysho Konfigurimin" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" -msgstr "" +msgstr "Opcionet e konfigurimit të CKAN" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2306,11 +2223,11 @@ msgstr "" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 msgid "Confirm Reset" -msgstr "" +msgstr "Konfirmo rivendosjen" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Administratro CKAN-in " #: ckan/templates/admin/index.html:20 #, python-format @@ -2318,163 +2235,162 @@ msgid "" "

As a sysadmin user you have full control over this CKAN instance. " "Proceed with care!

For guidance on using sysadmin features, see the " "CKAN sysadmin guide

" -msgstr "" +msgstr "

Si një adiminstrator i sistemit ju keni kontroll të plotë mbi këtë instancë të CKAN-it. Vazhdoni me kujdes!

Për udhëzime mbi përdorimin e karakteristikave të adimnstratorit të sistemit, shikoni CKANudhërrëfyesin e adiminstratorit të sistemit

" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Largo" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "

Largo setet e të dhënave të fshira përgjithmonë dhe në mënyrë të pakthyeshme.

" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" -msgstr "" +msgstr "CKAN API i të dhënave" #: ckan/templates/ajax_snippets/api_info.html:23 msgid "Access resource data via a web API with powerful query support" -msgstr "" +msgstr "Qasu në burimin e të dhënave përmes API të uebfaqes me mbështetje të fuqishme të kërkesës" #: ckan/templates/ajax_snippets/api_info.html:24 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +msgstr "Informata shtesë në API kryesor të të dhënave të CKAN dhe dokumentimi i depos të të dhënave.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" -msgstr "" +msgstr "Pika të fundit" #: ckan/templates/ajax_snippets/api_info.html:37 msgid "" "The Data API can be accessed via the following actions of the CKAN action " "API." -msgstr "" +msgstr "API i të dhënave mund të qaset përmes veprimeve në vijim të API-s të veprimit të CKAN-it" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" -msgstr "" +msgstr "Krijo" #: ckan/templates/ajax_snippets/api_info.html:46 msgid "Update / Insert" -msgstr "" +msgstr "Përditso / shto" #: ckan/templates/ajax_snippets/api_info.html:50 msgid "Query" -msgstr "" +msgstr "Kërkesa" #: ckan/templates/ajax_snippets/api_info.html:54 msgid "Query (via SQL)" -msgstr "" +msgstr "Kërkesa(përmes SQL)" #: ckan/templates/ajax_snippets/api_info.html:66 msgid "Querying" -msgstr "" +msgstr "Kërkimi" #: ckan/templates/ajax_snippets/api_info.html:70 msgid "Query example (first 5 results)" -msgstr "" +msgstr "Shembull i kërkesës (5 rezultatet e para)" #: ckan/templates/ajax_snippets/api_info.html:75 msgid "Query example (results containing 'jones')" -msgstr "" +msgstr "Shembull i kërkesës (rezultatet që përmbajnë 'jones')" #: ckan/templates/ajax_snippets/api_info.html:81 msgid "Query example (via SQL statement)" -msgstr "" +msgstr "Shembull i kërkesës (përmes SQL shprehjës)" #: ckan/templates/ajax_snippets/api_info.html:93 msgid "Example: Javascript" -msgstr "" +msgstr "Shembull: Javascript" #: ckan/templates/ajax_snippets/api_info.html:97 msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" +msgstr "Një AJAX kërkesë (JSONP) në API e të dhënave duke përdorur jQuery" #: ckan/templates/ajax_snippets/api_info.html:118 msgid "Example: Python" -msgstr "" +msgstr "Shembull: Python" #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." -msgstr "" +msgstr "Ky burim nuk mund të inspektohet për momentin." #: ckan/templates/dataviewer/snippets/data_preview.html:11 #: ckan/templates/package/resource_read.html:118 #: ckan/templates/package/snippets/resource_view.html:26 msgid "Click here for more information." -msgstr "" +msgstr "Kliko këtu për më shum informacione" #: ckan/templates/dataviewer/snippets/data_preview.html:18 #: ckan/templates/package/snippets/resource_view.html:33 msgid "Download resource" -msgstr "" +msgstr "Shakrko burimin" #: ckan/templates/dataviewer/snippets/data_preview.html:23 #: ckan/templates/package/snippets/resource_view.html:56 #: ckanext/webpageview/theme/templates/webpage_view.html:2 msgid "Your browser does not support iframes." -msgstr "" +msgstr "Shfletuesi juaj nuk i përkrah iframes." #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." -msgstr "" +msgstr "Asnjë inspektim në dispozicion" #: ckan/templates/dataviewer/snippets/no_preview.html:5 msgid "More details..." -msgstr "" +msgstr "Më shum detaje..." #: ckan/templates/dataviewer/snippets/no_preview.html:12 #, python-format msgid "No handler defined for data type: %(type)s." -msgstr "" +msgstr "Nuk ka mbajtës të përcaktuara për llojin e të dhënave: %(type)s." #: ckan/templates/development/snippets/form.html:5 msgid "Standard" -msgstr "" +msgstr "Standard" #: ckan/templates/development/snippets/form.html:5 msgid "Standard Input" -msgstr "" +msgstr "E dhënë standarde" #: ckan/templates/development/snippets/form.html:6 msgid "Medium" -msgstr "" +msgstr "Mesatare" #: ckan/templates/development/snippets/form.html:6 msgid "Medium Width Input" -msgstr "" +msgstr "E dhënë me gjerësi mesatare" #: ckan/templates/development/snippets/form.html:7 msgid "Full" -msgstr "" +msgstr "E plotë" #: ckan/templates/development/snippets/form.html:7 msgid "Full Width Input" -msgstr "" +msgstr "E dhënë me gjerësi të plotë" #: ckan/templates/development/snippets/form.html:8 msgid "Large" -msgstr "" +msgstr "E madhe" #: ckan/templates/development/snippets/form.html:8 msgid "Large Input" -msgstr "" +msgstr "E dhënë e madhe" #: ckan/templates/development/snippets/form.html:9 msgid "Prepend" -msgstr "" +msgstr "Parashto" #: ckan/templates/development/snippets/form.html:9 msgid "Prepend Input" -msgstr "" +msgstr "Parashtro të dhënën" #: ckan/templates/development/snippets/form.html:13 msgid "Custom Field (empty)" -msgstr "" +msgstr "Kostumizo Fushën(e zbrazët)" #: ckan/templates/development/snippets/form.html:19 #: ckan/templates/group/snippets/group_form.html:35 @@ -2484,19 +2400,19 @@ msgstr "" #: ckan/templates/snippets/custom_form_fields.html:20 #: ckan/templates/snippets/custom_form_fields.html:37 msgid "Custom Field" -msgstr "" +msgstr "Kostumizo Fushën" #: ckan/templates/development/snippets/form.html:22 msgid "Markdown" -msgstr "" +msgstr "Markdown" #: ckan/templates/development/snippets/form.html:23 msgid "Textarea" -msgstr "" +msgstr "Textarea" #: ckan/templates/development/snippets/form.html:24 msgid "Select" -msgstr "" +msgstr "Selekto" #: ckan/templates/group/activity_stream.html:3 #: ckan/templates/group/activity_stream.html:6 @@ -2506,26 +2422,26 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 msgid "Activity Stream" -msgstr "" +msgstr "Rrjedha e Aktivitetit" #: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 #: ckan/templates/organization/admins.html:3 #: ckan/templates/organization/admins.html:6 msgid "Administrators" -msgstr "" +msgstr "Administratorët" #: ckan/templates/group/base_form_page.html:7 msgid "Add a Group" -msgstr "" +msgstr "Shto një Grup" #: ckan/templates/group/base_form_page.html:11 msgid "Group Form" -msgstr "" +msgstr "Forma e grupit" #: ckan/templates/group/confirm_delete.html:3 #: ckan/templates/group/confirm_delete.html:15 @@ -2539,41 +2455,39 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" -msgstr "" +msgstr "Konfirmo fshirjen" #: ckan/templates/group/confirm_delete.html:11 msgid "Are you sure you want to delete group - {name}?" -msgstr "" +msgstr "A jeni të sigurtë që doni të fshini grupin - {name}?" #: ckan/templates/group/confirm_delete_member.html:11 #: ckan/templates/organization/confirm_delete_member.html:11 msgid "Are you sure you want to delete member - {name}?" -msgstr "" +msgstr "A jeni të sigurtë që doni të fshini anëtarin - {name}?" #: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:11 #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 msgid "Manage" -msgstr "" +msgstr "Menaxho" #: ckan/templates/group/edit.html:12 msgid "Edit Group" -msgstr "" +msgstr "Redakto Grupin" #: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 #: ckan/templates/organization/edit_base.html:24 #: ckan/templates/organization/members.html:3 msgid "Members" -msgstr "" +msgstr "Anëtarët" #: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 #: ckan/templates/group/snippets/info.html:32 @@ -2587,7 +2501,7 @@ msgstr "" #: ckan/templates/user/read_base.html:49 #: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 msgid "Followers" -msgstr "" +msgstr "Ndjekësit" #: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 #: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 @@ -2597,11 +2511,11 @@ msgstr "Historiku" #: ckan/templates/group/index.html:13 #: ckan/templates/user/dashboard_groups.html:7 msgid "Add Group" -msgstr "" +msgstr "Shto Grupin" #: ckan/templates/group/index.html:20 msgid "Search groups..." -msgstr "" +msgstr "Kërko grupin..." #: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 #: ckan/templates/organization/bulk_process.html:97 @@ -2612,7 +2526,7 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:15 #: ckanext/example_idatasetform/templates/package/search.html:13 msgid "Name Ascending" -msgstr "" +msgstr "Renditje rritëse" #: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 #: ckan/templates/organization/bulk_process.html:98 @@ -2623,27 +2537,27 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:16 #: ckanext/example_idatasetform/templates/package/search.html:14 msgid "Name Descending" -msgstr "" +msgstr "Renditje zbritëse" #: ckan/templates/group/index.html:29 msgid "There are currently no groups for this site" -msgstr "" +msgstr "Momentalisht nuk ka grupe për këtë faqe" #: ckan/templates/group/index.html:31 #: ckan/templates/organization/index.html:31 msgid "How about creating one?" -msgstr "" +msgstr "Dëshironi të krijoni një të re?" #: ckan/templates/group/member_new.html:8 #: ckan/templates/organization/member_new.html:10 msgid "Back to all members" -msgstr "" +msgstr "Kthehu te Anëtarët" #: ckan/templates/group/member_new.html:10 #: ckan/templates/organization/member_new.html:7 #: ckan/templates/organization/member_new.html:12 msgid "Edit Member" -msgstr "" +msgstr "Redakto Anëtarin" #: ckan/templates/group/member_new.html:10 #: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 @@ -2652,46 +2566,46 @@ msgstr "" #: ckan/templates/organization/member_new.html:66 #: ckan/templates/organization/members.html:6 msgid "Add Member" -msgstr "" +msgstr "Shto Anëtar" #: ckan/templates/group/member_new.html:18 #: ckan/templates/organization/member_new.html:20 msgid "Existing User" -msgstr "" +msgstr "Përdorues ekzistues" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:23 msgid "If you wish to add an existing user, search for their username below." -msgstr "" +msgstr "Nëse dëshironi të shtoni një përdorues ekzistues, kërkoni emrin e përdoruesit poshtë." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:40 msgid "or" -msgstr "" +msgstr "ose" #: ckan/templates/group/member_new.html:42 #: ckan/templates/organization/member_new.html:44 msgid "New User" -msgstr "" +msgstr "Përdorues i ri" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:47 msgid "If you wish to invite a new user, enter their email address." -msgstr "" +msgstr "Nëse dëshrioni të shtoni një përdorues të ri, shtypni elmain adresën e tyre." #: ckan/templates/group/member_new.html:55 #: ckan/templates/group/members.html:18 #: ckan/templates/organization/member_new.html:56 #: ckan/templates/organization/members.html:18 msgid "Role" -msgstr "" +msgstr "Roli" #: ckan/templates/group/member_new.html:58 #: ckan/templates/group/members.html:30 #: ckan/templates/organization/member_new.html:59 #: ckan/templates/organization/members.html:30 msgid "Are you sure you want to delete this member?" -msgstr "" +msgstr "A jeni i sigurtë që dëshironi të fshini këtë anëtar?" #: ckan/templates/group/member_new.html:59 #: ckan/templates/group/members.html:35 @@ -2703,48 +2617,46 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Fshij" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Ruaj" #: ckan/templates/group/member_new.html:78 #: ckan/templates/organization/member_new.html:79 msgid "What are roles?" -msgstr "" +msgstr "Çka janë rolet?" #: ckan/templates/group/member_new.html:81 msgid "" "

Admin: Can edit group information, as well as manage " "organization members.

Member: Can add/remove " "datasets from groups

" -msgstr "" +msgstr "

Administratori:Mund të redaktoj informacionet e grupit, gjithashtu të menagjoj me antarët e organizatës

Anëtari:Mund të shtoj/fshij setet e të dhënave prej grupeve

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 msgid "Create a Group" -msgstr "" +msgstr "Krijo një Grup" #: ckan/templates/group/new_group_form.html:17 msgid "Update Group" -msgstr "" +msgstr "Përditëso Grupin" #: ckan/templates/group/new_group_form.html:19 msgid "Create Group" -msgstr "" +msgstr "Krijo Grupin" #: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 #: ckan/templates/package/search.html:29 #: ckan/templates/snippets/sort_by.html:14 #: ckanext/example_idatasetform/templates/package/search.html:12 msgid "Relevance" -msgstr "" +msgstr "Ndërlidhja" #: ckan/templates/group/read.html:18 #: ckan/templates/organization/bulk_process.html:99 @@ -2754,7 +2666,7 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:17 #: ckanext/example_idatasetform/templates/package/search.html:15 msgid "Last Modified" -msgstr "" +msgstr "U ndryshua për herë të fundit" #: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 #: ckan/templates/package/search.html:33 @@ -2763,21 +2675,21 @@ msgstr "" #: ckan/templates/snippets/sort_by.html:19 #: ckanext/example_idatasetform/templates/package/search.html:18 msgid "Popular" -msgstr "" +msgstr "Popullarizuar" #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." -msgstr "" +msgstr "Kërko setin e të dhënave..." #: ckan/templates/group/snippets/feeds.html:3 msgid "Datasets in group: {group}" -msgstr "" +msgstr "Seti i të dhënave në grupin: {group}" #: ckan/templates/group/snippets/feeds.html:4 #: ckan/templates/organization/snippets/feeds.html:4 msgid "Recent Revision History" -msgstr "" +msgstr "Historiku i versioneve të fundit" #: ckan/templates/group/snippets/group_form.html:10 #: ckan/templates/organization/snippets/organization_form.html:10 @@ -2787,32 +2699,31 @@ msgstr "Emri" #: ckan/templates/group/snippets/group_form.html:10 msgid "My Group" -msgstr "" +msgstr "Grupi Im" #: ckan/templates/group/snippets/group_form.html:18 msgid "my-group" -msgstr "" +msgstr "grupi-im" #: ckan/templates/group/snippets/group_form.html:20 #: ckan/templates/organization/snippets/organization_form.html:20 #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Përshkrimi" #: ckan/templates/group/snippets/group_form.html:20 msgid "A little information about my group..." -msgstr "" +msgstr "Pak informacione rreth grupit tim..." #: ckan/templates/group/snippets/group_form.html:60 msgid "Are you sure you want to delete this Group?" -msgstr "" +msgstr "A jeni i sigurtë që dëshironi të fshini këtë grup?" #: ckan/templates/group/snippets/group_form.html:64 msgid "Save Group" -msgstr "" +msgstr "Ruaj grupin" #: ckan/templates/group/snippets/group_item.html:32 #: ckan/templates/organization/snippets/organization_item.html:31 @@ -2828,20 +2739,20 @@ msgstr[1] "" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 msgid "0 Datasets" -msgstr "" +msgstr "0 sete të të dhënave" #: ckan/templates/group/snippets/group_item.html:38 #: ckan/templates/group/snippets/group_item.html:39 msgid "View {name}" -msgstr "" +msgstr "Shiko {name}" #: ckan/templates/group/snippets/group_item.html:43 msgid "Remove dataset from this group" -msgstr "" +msgstr "Fshij setin e të dhënave nga ky grupi" #: ckan/templates/group/snippets/helper.html:4 msgid "What are Groups?" -msgstr "" +msgstr "Çfarë janë Grupet?" #: ckan/templates/group/snippets/helper.html:8 msgid "" @@ -2849,27 +2760,27 @@ msgid "" "could be to catalogue datasets for a particular project or team, or on a " "particular theme, or as a very simple way to help people find and search " "your own published datasets. " -msgstr "" +msgstr "Grupet e CKAN-it mund t'i përdorni për të krijuar dhe menaxhuar koleksionet e seteve të të dhënave. Këto përdoren me qëllim të grumbullimit të seteve të të dhënave për një projekt apo ekip të veçantë, ose temë të caktuar, ose edhe si një mënyrë më e lehtë për t'i ndihmuar të tjerët për të gjetur e kërkuar setet e publikuara të të dhënave." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 msgid "Compare" -msgstr "" +msgstr "Krahaso" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" -msgstr "" +msgstr "E fshirë" #: ckan/templates/group/snippets/info.html:24 #: ckan/templates/package/snippets/package_context.html:7 #: ckan/templates/snippets/organization.html:45 msgid "read more" -msgstr "" +msgstr "lexo më shum" #: ckan/templates/group/snippets/revisions_table.html:7 #: ckan/templates/package/snippets/revisions_table.html:7 @@ -2905,7 +2816,7 @@ msgstr "Mesazhi " #: ckan/templates/home/index.html:4 msgid "Welcome" -msgstr "" +msgstr "Mirësevini" #: ckan/templates/home/snippets/about_text.html:1 msgid "" @@ -2931,65 +2842,57 @@ msgstr "" #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" -msgstr "" +msgstr "Mirësevini në CKAN" #: ckan/templates/home/snippets/promoted.html:10 msgid "" "This is a nice introductory paragraph about CKAN or the site in general. We " "don't have any copy to go here yet but soon we will " -msgstr "" +msgstr "Ky është një paragraf hyrës rreth CKAN ose faqës në përgjithësi. Nuk kemi ndonjë shembull për të treguar këtu ende, por së shpejti do kemi" #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" -msgstr "" +msgstr "Ky është një seksion i paraqitur" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "P.sh. ambienti" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "Kërko të dhënat" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Etiketa të popullarizaura" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" -msgstr "" +msgstr "{0} statistikat" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" -msgstr "" +msgstr "set i të dhënave" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" -msgstr "" +msgstr "setet e të dhënave" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" -msgstr "" +msgstr "organizata" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" -msgstr "" +msgstr "organizatat" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" -msgstr "" +msgstr "grup" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" +msgstr "grupe" #: ckan/templates/macros/form.html:126 #, python-format @@ -2997,112 +2900,124 @@ msgid "" "You can use Markdown formatting here" -msgstr "" +msgstr "Mund të përdorni Markdown formatimin here" #: ckan/templates/macros/form.html:265 msgid "This field is required" -msgstr "" +msgstr "Kjo fushë duhet të plotësohet" #: ckan/templates/macros/form.html:265 msgid "Custom" -msgstr "" +msgstr "Kostumizo" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Forma përmban këto fusha të gabuara:" #: ckan/templates/macros/form.html:395 msgid "Required field" -msgstr "" +msgstr "Kjo fushë duhet të plotësohet" #: ckan/templates/macros/form.html:410 msgid "http://example.com/my-image.jpg" -msgstr "" +msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" -msgstr "" +msgstr "Imazhi i URL-it" #: ckan/templates/macros/form.html:424 msgid "Clear Upload" -msgstr "" +msgstr "Pastro Ngarkimin" #: ckan/templates/organization/base_form_page.html:5 msgid "Organization Form" -msgstr "" +msgstr "Forma e Organizatës" #: ckan/templates/organization/bulk_process.html:3 #: ckan/templates/organization/bulk_process.html:11 msgid "Edit datasets" -msgstr "" +msgstr "Redakto setet e të dhënave" #: ckan/templates/organization/bulk_process.html:6 msgid "Add dataset" -msgstr "" +msgstr "Shto set të të dhënave" #: ckan/templates/organization/bulk_process.html:16 msgid " found for \"{query}\"" -msgstr "" +msgstr "u gjet për \"{query}\"" #: ckan/templates/organization/bulk_process.html:18 msgid "Sorry no datasets found for \"{query}\"" -msgstr "" +msgstr "Na vjen keq nuk u gjetën setet e të dhënave për \"{query}\"" #: ckan/templates/organization/bulk_process.html:37 msgid "Make public" -msgstr "" +msgstr "Bëje publike" #: ckan/templates/organization/bulk_process.html:41 msgid "Make private" -msgstr "" +msgstr "Bëje private" #: ckan/templates/organization/bulk_process.html:70 #: ckan/templates/package/read.html:18 #: ckan/templates/snippets/package_item.html:40 msgid "Draft" -msgstr "" +msgstr "Draft" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 msgid "Private" -msgstr "" +msgstr "Private" #: ckan/templates/organization/bulk_process.html:88 msgid "This organization has no datasets associated to it" -msgstr "" +msgstr "Kjo organizatë nuk ka ndonjë set të të dhënave të bashkangjitur me të" #: ckan/templates/organization/confirm_delete.html:11 msgid "Are you sure you want to delete organization - {name}?" -msgstr "" +msgstr "A jeni i sigurtë për fshirjën e organizatës {name}?" #: ckan/templates/organization/edit.html:6 #: ckan/templates/organization/snippets/info.html:13 #: ckan/templates/organization/snippets/info.html:16 msgid "Edit Organization" -msgstr "" +msgstr "Redakto Organizatën" #: ckan/templates/organization/index.html:13 #: ckan/templates/user/dashboard_organizations.html:7 msgid "Add Organization" -msgstr "" +msgstr "Shto Organizatën" #: ckan/templates/organization/index.html:20 msgid "Search organizations..." -msgstr "" +msgstr "Kërko Organizatën..." #: ckan/templates/organization/index.html:29 msgid "There are currently no organizations for this site" -msgstr "" +msgstr "Momentalisht nuk ka organizatë për këtë faqe" + +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Emri përdoruesit" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email adresa" #: ckan/templates/organization/member_new.html:62 msgid "Update Member" -msgstr "" +msgstr "Përditëso Anëtarin" #: ckan/templates/organization/member_new.html:82 msgid "" @@ -3111,37 +3026,37 @@ msgid "" "edit datasets, but not manage organization members.

" "

Member: Can view the organization's private datasets, " "but not add new datasets.

" -msgstr "" +msgstr "

Administratori: Mund të shtoj/redaktoj dhe fshij setet e të dhënave, si dhe të menaxhoj anëtarët e organizatës

Redaktori:Mund të shtoj dhe redaktoj setet e të dhënave, por jo të menaxhoj anëtarët e organizatës.

Anëtari: Mund të shikoj setet private të të dhënave të organizatës .

" #: ckan/templates/organization/new.html:3 #: ckan/templates/organization/new.html:5 #: ckan/templates/organization/new.html:7 #: ckan/templates/organization/new.html:12 msgid "Create an Organization" -msgstr "" +msgstr "Krijo një Organizatë" #: ckan/templates/organization/new_organization_form.html:17 msgid "Update Organization" -msgstr "" +msgstr "Modifiko Organizatën" #: ckan/templates/organization/new_organization_form.html:19 msgid "Create Organization" -msgstr "" +msgstr "Krijo Organizatën" #: ckan/templates/organization/read.html:5 #: ckan/templates/package/search.html:16 #: ckan/templates/user/dashboard_datasets.html:7 msgid "Add Dataset" -msgstr "" +msgstr "Shto Setin e të dhënave" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "Setet e të dhënave në organizatën: {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 msgid "What are Organizations?" -msgstr "" +msgstr "Çfarë janë Organizatat?" #: ckan/templates/organization/snippets/help.html:7 msgid "" @@ -3151,50 +3066,50 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "" +msgstr "

Organizatat sillen si departmente publicistike për të dhënat (për shembull, Departmenti i Shëndetësisë). Kjo nënkupton që setet e të dhënave mund të publikohen dhe t'i përkasin një departmenti, në vend të një përdoruesi individual.

Mbrenda organizatave, administratori mund të caktoj role dhe të autorizoj anëtarët e tij, duke i'u dhënë të drejta përdoruesve individual të publikojnë sete të të dhënave për një organizatë të caktuar (p.sh. Zyra Kombëtare e Statistikave).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" " CKAN Organizations are used to create, manage and publish collections of " "datasets. Users can have different roles within an Organization, depending " "on their level of authorisation to create, edit and publish. " -msgstr "" +msgstr "Organizatat në CKAN përdoren për të krijuar, menaxhuar dhe publikuar koleksione të të dhënave. Përdoruesit mund të kenë role të ndryshme mbrenda një Organizate, dhe varësisht prej nivelit të autorizimit ata mund të krijojn, redaktojn dhe bëjnë publikime." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" -msgstr "" +msgstr "Organizata ime" #: ckan/templates/organization/snippets/organization_form.html:18 msgid "my-organization" -msgstr "" +msgstr "organizata-ime" #: ckan/templates/organization/snippets/organization_form.html:20 msgid "A little information about my organization..." -msgstr "" +msgstr "Disa informacione rreth organizatës time..." #: ckan/templates/organization/snippets/organization_form.html:60 msgid "" "Are you sure you want to delete this Organization? This will delete all the " "public and private datasets belonging to this organization." -msgstr "" +msgstr "Jeni të sigurtë që doni ta fshini këtë organizatë? Kjo do të fshijë të gjitha setet e të dhënave publike dhe private që i përkasin kësaj organizate." #: ckan/templates/organization/snippets/organization_form.html:64 msgid "Save Organization" -msgstr "" +msgstr "Ruaj organizatën" #: ckan/templates/organization/snippets/organization_item.html:37 #: ckan/templates/organization/snippets/organization_item.html:38 msgid "View {organization_name}" -msgstr "" +msgstr "Shiko {organization_name}" #: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 #: ckan/templates/package/snippets/new_package_breadcrumb.html:2 msgid "Create Dataset" -msgstr "" +msgstr "Krijo setin e të dhënave" #: ckan/templates/package/base_form_page.html:22 msgid "What are datasets?" -msgstr "" +msgstr "Çfarë janë setet e të dhënave?" #: ckan/templates/package/base_form_page.html:25 msgid "" @@ -3205,26 +3120,26 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:11 msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" +msgstr "A jeni i sigurtë që dëshironi të fshini setin e të dhënave - {name}?" #: ckan/templates/package/confirm_delete_resource.html:11 msgid "Are you sure you want to delete resource - {name}?" -msgstr "" +msgstr "A jeni të sigurtë që dëshironi të fshini burimin - {name}?" #: ckan/templates/package/edit_base.html:16 msgid "View dataset" -msgstr "" +msgstr "Shfaq setin e të dhënave" #: ckan/templates/package/edit_base.html:20 msgid "Edit metadata" -msgstr "" +msgstr "Redakto të dhënat" #: ckan/templates/package/edit_view.html:3 #: ckan/templates/package/edit_view.html:4 #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Ndrysho faqen" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3234,9 +3149,8 @@ msgid "Preview" msgstr "Parashih" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" -msgstr "" +msgstr "Ndrysho" #: ckan/templates/package/group_list.html:14 msgid "Associate this group with this dataset" @@ -3244,7 +3158,7 @@ msgstr "" #: ckan/templates/package/group_list.html:14 msgid "Add to group" -msgstr "" +msgstr "Shto në grup" #: ckan/templates/package/group_list.html:23 msgid "There are no groups associated with this dataset" @@ -3252,7 +3166,7 @@ msgstr "" #: ckan/templates/package/new_package_form.html:15 msgid "Update Dataset" -msgstr "" +msgstr "Ndrysho setin e të dhënave" #: ckan/templates/package/new_resource.html:5 msgid "Add data to the dataset" @@ -3277,7 +3191,7 @@ msgstr "" #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Shto faqën" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3291,144 +3205,148 @@ msgstr "" #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" -msgstr "" +msgstr "Shto" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " "differ significantly from the current revision." -msgstr "" +msgstr "Ky është një verison i vjetër i setit të të dhënave, e modifikuar më %(timestamp)s. Mund të dalloj thelbësisht prej versionit momental ." #: ckan/templates/package/related_list.html:7 msgid "Related Media for {dataset}" -msgstr "" +msgstr "Media e ngjashme për {dataset}" #: ckan/templates/package/related_list.html:12 msgid "No related items" -msgstr "" +msgstr "Nuk ka artikull të ngjashëm" #: ckan/templates/package/related_list.html:17 msgid "Add Related Item" -msgstr "" +msgstr "Shto Artikull të ngjashëm" #: ckan/templates/package/resource_data.html:12 msgid "Upload to DataStore" -msgstr "" +msgstr "Ngarko në DataStore" #: ckan/templates/package/resource_data.html:19 msgid "Upload error:" -msgstr "" +msgstr "Gabim në ngarkim:" #: ckan/templates/package/resource_data.html:25 #: ckan/templates/package/resource_data.html:27 msgid "Error:" msgstr "Gabim:" -#: ckan/templates/package/resource_data.html:45 -msgid "Status" +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:48 +msgid "Status" +msgstr "Statusi" + +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" -msgstr "" +msgstr "Ndryshimi i fundit" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" -msgstr "" +msgstr "Asnjëherë" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" -msgstr "" +msgstr "Ngarkoni log-un" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" -msgstr "" +msgstr "Detajet" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" -msgstr "" +msgstr "Fundi i llogarisë" #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" -msgstr "" +msgstr "Të gjitha burimet" #: ckan/templates/package/resource_edit_base.html:19 msgid "View resource" -msgstr "" +msgstr "Shiko burimin" #: ckan/templates/package/resource_edit_base.html:24 #: ckan/templates/package/resource_edit_base.html:32 msgid "Edit resource" -msgstr "" +msgstr "Ndrysho burimin" #: ckan/templates/package/resource_edit_base.html:26 msgid "DataStore" -msgstr "" +msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Pamjet" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" -msgstr "" +msgstr "Pika fundore e API-së" #: ckan/templates/package/resource_read.html:41 #: ckan/templates/package/snippets/resource_item.html:48 msgid "Go to resource" -msgstr "" +msgstr "Shko tek burimi" #: ckan/templates/package/resource_read.html:43 #: ckan/templates/package/snippets/resource_item.html:45 msgid "Download" -msgstr "" +msgstr "Shkarko" #: ckan/templates/package/resource_read.html:59 #: ckan/templates/package/resource_read.html:61 msgid "URL:" -msgstr "" +msgstr "URL:" #: ckan/templates/package/resource_read.html:69 msgid "From the dataset abstract" -msgstr "" +msgstr "Nga abstrakti i setit të të dhënave" #: ckan/templates/package/resource_read.html:71 #, python-format msgid "Source: %(dataset)s" -msgstr "" +msgstr "Burimi: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "Ende nuk ka faqe të krijuara për këtë lloj burimi." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "Nuk shihni faqet e pritura?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +msgstr "Këtu janë disa arsye që ju nuk mund të shihni faqet e pritura:" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "" +msgstr "Asnjë faqe nuk është krijuar që është e përshtatshme për këtë burim" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +msgstr "Faqja adiminstratorët mund të mos ketë aktivizuar plugins-at përkatës" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "" +msgstr "Nëse një faqe kërkon DataStore, veçoria DataStore mund të jetë e deaktivizuar, ose pa të dhëna, ose DataStore nuk i ka procesuar ende të dhënat" #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" -msgstr "" +msgstr "Informata shtesë" #: ckan/templates/package/resource_read.html:151 #: ckan/templates/package/snippets/additional_info.html:6 @@ -3441,18 +3359,18 @@ msgstr "Fusha" #: ckan/templates/package/snippets/additional_info.html:7 #: ckan/templates/snippets/additional_info.html:12 msgid "Value" -msgstr "" +msgstr "Vlera" #: ckan/templates/package/resource_read.html:158 #: ckan/templates/package/resource_read.html:162 #: ckan/templates/package/resource_read.html:166 msgid "unknown" -msgstr "" +msgstr "I panjohur" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" -msgstr "" +msgstr "U krijua" #: ckan/templates/package/resource_read.html:165 #: ckan/templates/package/snippets/resource_form.html:37 @@ -3468,15 +3386,15 @@ msgstr "Licenca" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "Faqe të reja" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "Ky burim nuk ka faqe" #: ckan/templates/package/resources.html:8 msgid "Add new resource" -msgstr "" +msgstr "Shtoni burim të ri" #: ckan/templates/package/resources.html:19 #: ckan/templates/package/snippets/resources_list.html:25 @@ -3484,7 +3402,11 @@ msgstr "" msgid "" "

This dataset has no data, why not " "add some?

" -msgstr "" +msgstr "

Ky set i të dhënave nuk ka të dhëna, pse të mos shtoni disa?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" #: ckan/templates/package/search.html:53 msgid "API Docs" @@ -3499,36 +3421,36 @@ msgstr "" msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" +msgstr "Ju gjithashtu mund të keni qasje në këtë regjistër duke përdorur %(api_link)s (see %(api_doc_link)s) ose të shkarkoni %(dump_link)s." #: ckan/templates/package/search.html:60 #, python-format msgid "" " You can also access this registry using the %(api_link)s (see " "%(api_doc_link)s). " -msgstr "" +msgstr "Ju gjithashtu mund të keni qasje në këtë regjistër duke përdorur %(api_link)s (see %(api_doc_link)s)." #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "Të gjitha faqet" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "Shiko faqen" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "Shiko inspektimin" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 msgid "Additional Info" -msgstr "" +msgstr "Info shtesë" #: ckan/templates/package/snippets/additional_info.html:14 #: ckan/templates/package/snippets/package_metadata_fields.html:6 msgid "Source" -msgstr "" +msgstr "Burimi" #: ckan/templates/package/snippets/additional_info.html:37 #: ckan/templates/package/snippets/additional_info.html:42 @@ -3542,67 +3464,66 @@ msgid "Version" msgstr "Versioni" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Shtet" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "Ndryshuar së fundmi" #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" -msgstr "" +msgstr "API i të dhënave" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" -msgstr "Titull" +msgstr "Titulli" #: ckan/templates/package/snippets/package_basic_fields.html:4 msgid "eg. A descriptive title" -msgstr "" +msgstr "p.sh. Një titull përshkrues" #: ckan/templates/package/snippets/package_basic_fields.html:13 msgid "eg. my-dataset" -msgstr "" +msgstr "p.sh. Seti i të dhënave të mia" #: ckan/templates/package/snippets/package_basic_fields.html:19 msgid "eg. Some useful notes about the data" -msgstr "" +msgstr "p.sh. Disa shënime të dobishme në lidhje me të dhënat" #: ckan/templates/package/snippets/package_basic_fields.html:24 msgid "eg. economy, mental health, government" -msgstr "" +msgstr "p.sh. ekonomi, shëndeti mendor, qeveria" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " -msgstr "" +msgstr "Përkufizimet e licencës dhe informacione shtesë mund të gjenden në opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" -msgstr "" +msgstr "Organizatë" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" -msgstr "" +msgstr "Asnjë organizatë" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" -msgstr "" +msgstr "Dukshmëria" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" -msgstr "" +msgstr "Publiku" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" -msgstr "" +msgstr "Aktiv" #: ckan/templates/package/snippets/package_form.html:28 msgid "" @@ -3611,357 +3532,224 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "" +msgstr "Licencën e të dhënave që ju zgjidhni sipër vlen vetëm për përmbajtjet e çfarëdo dosjeje burimore që ju e shtoni në këtë set të të dhënave. Me ruajtjen e formës, ju pajtoheni të lëshoni të dhënat personale që ju i shtypni në formën nën Open Database License." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" -msgstr "" +msgstr "Jeni të sigurtë që doni të fshini këtë set të të dhënave?" #: ckan/templates/package/snippets/package_form.html:44 msgid "Next: Add Data" -msgstr "" +msgstr "Tjetër: Shtoni të dhëna" #: ckan/templates/package/snippets/package_metadata_fields.html:6 msgid "http://example.com/dataset.json" -msgstr "" +msgstr "http://example.com/dataset.json" #: ckan/templates/package/snippets/package_metadata_fields.html:10 msgid "1.0" -msgstr "" +msgstr "1.0" #: ckan/templates/package/snippets/package_metadata_fields.html:14 #: ckan/templates/package/snippets/package_metadata_fields.html:20 #: ckan/templates/user/new_user_form.html:6 msgid "Joe Bloggs" -msgstr "" +msgstr "Joe Bloggs" #: ckan/templates/package/snippets/package_metadata_fields.html:16 msgid "Author Email" -msgstr "" +msgstr "Adresa elektronike e autorit" #: ckan/templates/package/snippets/package_metadata_fields.html:16 #: ckan/templates/package/snippets/package_metadata_fields.html:22 #: ckan/templates/user/new_user_form.html:7 msgid "joe@example.com" -msgstr "" +msgstr "joe@example.com" #: ckan/templates/package/snippets/package_metadata_fields.html:22 msgid "Maintainer Email" -msgstr "" +msgstr "Mirëmbajtësi i adresës elektronike" #: ckan/templates/package/snippets/resource_edit_form.html:12 msgid "Update Resource" -msgstr "" +msgstr "Ndrysho burimet" #: ckan/templates/package/snippets/resource_form.html:24 msgid "File" -msgstr "" +msgstr "Skedari" #: ckan/templates/package/snippets/resource_form.html:28 msgid "eg. January 2011 Gold Prices" -msgstr "" +msgstr "p.sh. Janar 2011 Çmimet e Arta" #: ckan/templates/package/snippets/resource_form.html:32 msgid "Some useful notes about the data" -msgstr "" +msgstr "Disa shënime të dobishme në lidhje me të dhënat" #: ckan/templates/package/snippets/resource_form.html:37 msgid "eg. CSV, XML or JSON" -msgstr "" +msgstr "p.sh. CSV, XML ose JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" +msgstr "Kjo do të qëllohet automatikisht. Lëreni bosh nëse ju dëshironi" #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" -msgstr "" +msgstr "p.sh. 2012-06-05" #: ckan/templates/package/snippets/resource_form.html:53 msgid "File Size" -msgstr "" +msgstr "Madhësia e skedarit" #: ckan/templates/package/snippets/resource_form.html:53 msgid "eg. 1024" -msgstr "" +msgstr "p.sh. 1024" #: ckan/templates/package/snippets/resource_form.html:55 #: ckan/templates/package/snippets/resource_form.html:57 msgid "MIME Type" -msgstr "" +msgstr "MIME Type" #: ckan/templates/package/snippets/resource_form.html:55 #: ckan/templates/package/snippets/resource_form.html:57 msgid "eg. application/json" -msgstr "" +msgstr "p.sh application/json" #: ckan/templates/package/snippets/resource_form.html:65 msgid "Are you sure you want to delete this resource?" -msgstr "" +msgstr "Jeni të sigurtë që doni të fshini këtë burim?" #: ckan/templates/package/snippets/resource_form.html:72 msgid "Previous" -msgstr "" +msgstr "I mëparshëm" #: ckan/templates/package/snippets/resource_form.html:75 msgid "Save & add another" -msgstr "" +msgstr "Ruaj & shtoni një tjetër" #: ckan/templates/package/snippets/resource_form.html:78 msgid "Finish" -msgstr "" +msgstr "Përfundo" #: ckan/templates/package/snippets/resource_help.html:2 msgid "What's a resource?" -msgstr "" +msgstr "Çfarë është një burim?" #: ckan/templates/package/snippets/resource_help.html:4 msgid "A resource can be any file or link to a file containing useful data." -msgstr "" +msgstr "Një burim mund të jetë çdo skedar ose lidhje në një skedar që përmban të dhëna të dobishme." #: ckan/templates/package/snippets/resource_item.html:24 msgid "Explore" -msgstr "" +msgstr "Hulumto" #: ckan/templates/package/snippets/resource_item.html:36 msgid "More information" -msgstr "" +msgstr "Më shumë informacione" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" -msgstr "" +msgstr "Ndërthur" #: ckan/templates/package/snippets/resource_view.html:24 msgid "This resource view is not available at the moment." -msgstr "" +msgstr "Kjo faqe burimore nuk është në dispozicion në këtë moment." #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "" +msgstr "Ndërthur faqen burimore" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "" +msgstr "Ju mund të kopjoni dhe ngjisni kodin e ndërthurur në një CMS apo blog softuer që mbështet HTML të papërpunuar" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Gjerësia" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Lartësia" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" -msgstr "" +msgstr "Kodi" #: ckan/templates/package/snippets/resource_views_list.html:8 msgid "Resource Preview" -msgstr "" +msgstr "Inspektimi burimit" #: ckan/templates/package/snippets/resources_list.html:13 msgid "Data and Resources" -msgstr "" +msgstr "Të dhënat dhe burimet" #: ckan/templates/package/snippets/resources_list.html:29 msgid "This dataset has no data" -msgstr "" +msgstr "Ky set i të dhënave nuk ka të dhëna" #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format msgid "Read dataset as of %s" -msgstr "" +msgstr "Lexoni setin e të dhënave si %s" #: ckan/templates/package/snippets/stages.html:23 #: ckan/templates/package/snippets/stages.html:25 msgid "Create dataset" -msgstr "" +msgstr "Krijoni setin e të dhënave" #: ckan/templates/package/snippets/stages.html:30 #: ckan/templates/package/snippets/stages.html:34 #: ckan/templates/package/snippets/stages.html:36 msgid "Add data" -msgstr "" +msgstr "Shtoni të dhëna" #: ckan/templates/package/snippets/view_form.html:8 msgid "eg. My View" -msgstr "" +msgstr "p.sh. Faqja ime" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "" +msgstr "p.sh. Info rreth faqës time" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "" +msgstr "Shtoni filterin" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "Fshij filterin" #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" -msgstr "" +msgstr "Filterët" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "" +msgstr "Çfarë është një faqe?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" +msgstr "Një faqe është një përfaqësim i të dhënave, të mbajtura kundër një burimi" #: ckan/templates/revision/diff.html:6 msgid "Differences" -msgstr "" +msgstr "Dallimet" #: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 #: ckan/templates/revision/diff.html:23 msgid "Revision Differences" -msgstr "" +msgstr "Dallimet e rishikuara" #: ckan/templates/revision/diff.html:44 msgid "Difference" -msgstr "Diferenca" +msgstr "Dallimi" #: ckan/templates/revision/diff.html:54 msgid "No Differences" -msgstr "" +msgstr "Nuk ka dallime" #: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 #: ckan/templates/revision/list.html:10 @@ -3974,7 +3762,7 @@ msgstr "Ndryshime" #: ckan/templates/revision/read.html:30 msgid "Undelete" -msgstr "" +msgstr "Mos fshij" #: ckan/templates/revision/read.html:64 msgid "Changes" @@ -3982,117 +3770,120 @@ msgstr "Ndryshime" #: ckan/templates/revision/read.html:74 msgid "Datasets' Tags" -msgstr "" +msgstr "Etiketa e setit të të dhënave" #: ckan/templates/revision/snippets/revisions_list.html:7 msgid "Entity" -msgstr "Grup" +msgstr "Entitet" #: ckan/templates/snippets/activity_item.html:3 msgid "New activity item" -msgstr "" +msgstr "Artikulli i ri i aktivitetit" #: ckan/templates/snippets/datapreview_embed_dialog.html:4 msgid "Embed Data Viewer" -msgstr "" +msgstr "Ndërthur faqën e të dhënave" #: ckan/templates/snippets/datapreview_embed_dialog.html:8 msgid "Embed this view by copying this into your webpage:" -msgstr "" +msgstr "Ndërthur këtë faqe duke kopjuar në ueb faqen tuaj:" #: ckan/templates/snippets/datapreview_embed_dialog.html:10 msgid "Choose width and height in pixels:" -msgstr "" +msgstr "Zgjidhni gjerësinë dhe lartësinë në piksela:" #: ckan/templates/snippets/datapreview_embed_dialog.html:11 msgid "Width:" -msgstr "" +msgstr "Gjerësia:" #: ckan/templates/snippets/datapreview_embed_dialog.html:13 msgid "Height:" -msgstr "" +msgstr "Lartësia:" #: ckan/templates/snippets/datapusher_status.html:8 msgid "Datapusher status: {status}." -msgstr "" +msgstr "Statusi i shtytësit të të dhënave: {status}." #: ckan/templates/snippets/disqus_trackback.html:2 msgid "Trackback URL" -msgstr "" +msgstr "URL-i gjurmimit" #: ckan/templates/snippets/facet_list.html:80 msgid "Show More {facet_type}" -msgstr "" +msgstr "Tregoni më shumë {facet_type}" #: ckan/templates/snippets/facet_list.html:83 msgid "Show Only Popular {facet_type}" -msgstr "" +msgstr "Tregoni vetëm të popullarizuarat {facet_type}" #: ckan/templates/snippets/facet_list.html:87 msgid "There are no {facet_type} that match this search" -msgstr "" +msgstr "Nuk ka ndonjë {facet_type} që përputhet me këtë kërkim" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Kreu" #: ckan/templates/snippets/language_selector.html:4 msgid "Language" -msgstr "" +msgstr "Gjuha" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" -msgstr "" +msgstr "Shko" #: ckan/templates/snippets/license.html:14 msgid "No License Provided" -msgstr "" +msgstr "Asnjë licencë e pajisur" #: ckan/templates/snippets/license.html:28 msgid "This dataset satisfies the Open Definition." -msgstr "" +msgstr "Ky set i të dhënave plotëson definicion e hapur." #: ckan/templates/snippets/organization.html:48 msgid "There is no description for this organization" -msgstr "" +msgstr "Nuk ka asnjë përshkrim për këtë organizatë" #: ckan/templates/snippets/package_item.html:57 msgid "This dataset has no description" -msgstr "" +msgstr "Ky set i të dhënave nuk ka përshkrim" #: ckan/templates/snippets/related.html:15 msgid "" "No apps, ideas, news stories or images have been related to this dataset " "yet." -msgstr "" +msgstr "Asnjë aplikacion, ide, lajmë apo imazh nuk është ndërlidhur ende me këtë set të të dhënave." #: ckan/templates/snippets/related.html:18 msgid "Add Item" -msgstr "" +msgstr "Shtoni artikullin" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" -msgstr "" +msgstr "Paraqit" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" -msgstr "" +msgstr "Rendit nga" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtro rezultatet" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" -msgstr "" +msgstr "

Ju lutem provoni të kërkoni diçka tjetër

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" -msgstr "" +msgstr "

Ndodhi një gabim gjatë kërkimit. Ju lutem provoni pësêri.

" #: ckan/templates/snippets/search_result_text.html:15 msgid "{number} dataset found for \"{query}\"" @@ -4102,7 +3893,7 @@ msgstr[1] "" #: ckan/templates/snippets/search_result_text.html:16 msgid "No datasets found for \"{query}\"" -msgstr "" +msgstr "Asnjë set i të dhënave nuk është gjetur për \"{query}\"" #: ckan/templates/snippets/search_result_text.html:17 msgid "{number} dataset found" @@ -4112,7 +3903,7 @@ msgstr[1] "" #: ckan/templates/snippets/search_result_text.html:18 msgid "No datasets found" -msgstr "" +msgstr "Asnjë set i të dhënave nuk është gjetur" #: ckan/templates/snippets/search_result_text.html:21 msgid "{number} group found for \"{query}\"" @@ -4122,7 +3913,7 @@ msgstr[1] "" #: ckan/templates/snippets/search_result_text.html:22 msgid "No groups found for \"{query}\"" -msgstr "" +msgstr "Asnjë grup nuk është gjetur për \"{query}\"" #: ckan/templates/snippets/search_result_text.html:23 msgid "{number} group found" @@ -4132,7 +3923,7 @@ msgstr[1] "" #: ckan/templates/snippets/search_result_text.html:24 msgid "No groups found" -msgstr "" +msgstr "Asnjë grup nuk është gjetur" #: ckan/templates/snippets/search_result_text.html:27 msgid "{number} organization found for \"{query}\"" @@ -4142,7 +3933,7 @@ msgstr[1] "" #: ckan/templates/snippets/search_result_text.html:28 msgid "No organizations found for \"{query}\"" -msgstr "" +msgstr "Asnjë organizatë nuk është gjetur për \"{query}\"" #: ckan/templates/snippets/search_result_text.html:29 msgid "{number} organization found" @@ -4152,135 +3943,122 @@ msgstr[1] "" #: ckan/templates/snippets/search_result_text.html:30 msgid "No organizations found" -msgstr "" +msgstr "Asnjë organizatë nuk është gjetur" #: ckan/templates/snippets/social.html:5 msgid "Social" -msgstr "" +msgstr "Shoqëror" #: ckan/templates/snippets/subscribe.html:2 msgid "Subscribe" -msgstr "" +msgstr "Abonohu" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" -msgstr "" +msgstr "Adresa elektronike" #: ckan/templates/snippets/subscribe.html:5 msgid "RSS" -msgstr "" +msgstr "RSS" #: ckan/templates/snippets/context/user.html:23 #: ckan/templates/user/read_base.html:57 msgid "Edits" -msgstr "" +msgstr "Redaktimet" #: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" +msgstr "Etiketat e kërkimit" #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" -msgstr "" +msgstr "Furnizimi i lajmeve" #: ckan/templates/user/dashboard.html:20 #: ckan/templates/user/dashboard_datasets.html:12 msgid "My Datasets" -msgstr "" +msgstr "Seti i të dhënave të mia" #: ckan/templates/user/dashboard.html:21 #: ckan/templates/user/dashboard_organizations.html:12 msgid "My Organizations" -msgstr "" +msgstr "Organizatat e mia" #: ckan/templates/user/dashboard.html:22 #: ckan/templates/user/dashboard_groups.html:12 msgid "My Groups" -msgstr "" +msgstr "Grupet e mia" #: ckan/templates/user/dashboard.html:39 msgid "Activity from items that I'm following" -msgstr "" +msgstr "Aktiviteti nga artikujt që jam duke i ndjekur" #: ckan/templates/user/dashboard_datasets.html:17 #: ckan/templates/user/read.html:14 msgid "You haven't created any datasets." -msgstr "" +msgstr "Ju nuk keni krijuar asnjë set të të dhënave." #: ckan/templates/user/dashboard_datasets.html:19 #: ckan/templates/user/dashboard_groups.html:22 #: ckan/templates/user/dashboard_organizations.html:22 #: ckan/templates/user/read.html:16 msgid "Create one now?" -msgstr "" +msgstr "Krijoni një tani?" #: ckan/templates/user/dashboard_groups.html:20 msgid "You are not a member of any groups." -msgstr "" +msgstr "Ju nuk jeni anëtar i asnjë grupi." #: ckan/templates/user/dashboard_organizations.html:20 msgid "You are not a member of any organizations." -msgstr "" +msgstr "Ju nuk jeni anëtar i asnjë organizate." #: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 #: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 #: ckan/templates/user/snippets/user_search.html:2 msgid "Users" -msgstr "Përdorues" +msgstr "Përdoruesit" #: ckan/templates/user/edit.html:17 msgid "Account Info" -msgstr "" +msgstr "Info mbi llogarinë" #: ckan/templates/user/edit.html:19 msgid "" " Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" +msgstr "Profili juaj lejon që përdoruesit e tjerë të CKAN të dijnë se kush jeni ju dhe se çfarë bëni." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" +msgstr "Ndryshoni detajet" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" -msgstr "" +msgstr "Emri i plotë" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" -msgstr "" +msgstr "p.sh. Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" -msgstr "" +msgstr "p.sh. joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" -msgstr "" +msgstr "Disa informacione për veten" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" -msgstr "" +msgstr "Abonohuni tek adresat elektronike të njoftimeve" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" -msgstr "" +msgstr "Ndryshoni fjalëkalimin" #: ckan/templates/user/edit_user_form.html:29 #: ckan/templates/user/logout_first.html:12 @@ -4288,32 +4066,32 @@ msgstr "" #: ckan/templates/user/perform_reset.html:20 #: ckan/templates/user/snippets/login_form.html:22 msgid "Password" -msgstr "" +msgstr "Fjalëkalimi" #: ckan/templates/user/edit_user_form.html:31 msgid "Confirm Password" -msgstr "" +msgstr "Konfirmo fjalëkalimin" #: ckan/templates/user/edit_user_form.html:37 msgid "Are you sure you want to delete this User?" -msgstr "" +msgstr "Jeni të sigurtë që doni të fshini këtë përdorues?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "Jeni të sigurtë që doni të rigjeneroni çelësin e API?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Rigjeneroni çelësin e API" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" -msgstr "" +msgstr "Ndryshoni profilin" #: ckan/templates/user/list.html:3 #: ckan/templates/user/snippets/user_search.html:11 msgid "All Users" -msgstr "" +msgstr "Të gjithë përdoruesit" #: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 #: ckan/templates/user/login.html:12 @@ -4323,39 +4101,39 @@ msgstr "Identifikohu" #: ckan/templates/user/login.html:25 msgid "Need an Account?" -msgstr "" +msgstr "Ju nevojitet një llogari?" #: ckan/templates/user/login.html:27 msgid "Then sign right up, it only takes a minute." -msgstr "" +msgstr "Atëherë regjistrohu, merr vetëm një minutë kohë." #: ckan/templates/user/login.html:30 msgid "Create an Account" -msgstr "" +msgstr "Krijoni një llogari" #: ckan/templates/user/login.html:42 msgid "Forgotten your password?" -msgstr "" +msgstr "Keni harruar fjalëkalimin tuaj?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." -msgstr "" +msgstr "Nuk ka problem, përdorni formularin tonë të rimëkëmbjes të fjalëkalimit për të rivendosur atë." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" -msgstr "" +msgstr "Keni harruar fjalëkalimin tuaj?" #: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 msgid "Logged Out" -msgstr "" +msgstr "Jasht sistemit" #: ckan/templates/user/logout.html:11 msgid "You are now logged out." -msgstr "" +msgstr "Ju jeni tashmë jasht sistemit." #: ckan/templates/user/logout_first.html:9 msgid "You're already logged in as {user}." -msgstr "" +msgstr "Ju jeni tashmë të kyçur si {user}." #: ckan/templates/user/logout_first.html:9 msgid "Logout" @@ -4364,477 +4142,413 @@ msgstr "Dilni nga sistemi" #: ckan/templates/user/logout_first.html:13 #: ckan/templates/user/snippets/login_form.html:24 msgid "Remember me" -msgstr "" +msgstr "Më mbani në mend" #: ckan/templates/user/logout_first.html:22 msgid "You're already logged in" -msgstr "" +msgstr "Ju jeni tashmë të kyçur" #: ckan/templates/user/logout_first.html:24 msgid "You need to log out before you can log in with another account." -msgstr "" +msgstr "Ju duhet të dilni jasht sistemit para se të kyçeni me një tjetër llogari." #: ckan/templates/user/logout_first.html:25 msgid "Log out now" -msgstr "" +msgstr "Dilni nga sistemi tani" #: ckan/templates/user/new.html:6 msgid "Registration" -msgstr "" +msgstr "Regjistrimi" #: ckan/templates/user/new.html:14 msgid "Register for an Account" -msgstr "" +msgstr "Regjistrohu për një llogari" #: ckan/templates/user/new.html:26 msgid "Why Sign Up?" -msgstr "" +msgstr "Pse të regjistroheni?" #: ckan/templates/user/new.html:28 msgid "Create datasets, groups and other exciting things" -msgstr "" +msgstr "Krijoni set të të dhënave, grupe si dhe gjëra të tjera emocionuese" #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "Emri i përdoruesit" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" -msgstr "" +msgstr "Emri i plotë" #: ckan/templates/user/new_user_form.html:17 msgid "Create Account" -msgstr "" +msgstr "Krijo llogari" #: ckan/templates/user/perform_reset.html:4 #: ckan/templates/user/perform_reset.html:14 msgid "Reset Your Password" -msgstr "" +msgstr "Rivendosni fjalëkalimin tuaj" #: ckan/templates/user/perform_reset.html:7 msgid "Password Reset" -msgstr "" +msgstr "Fjalëkalimi u rivendos" #: ckan/templates/user/perform_reset.html:24 msgid "Update Password" -msgstr "" +msgstr "Ndryshoni fjalëkalimin" #: ckan/templates/user/perform_reset.html:38 #: ckan/templates/user/request_reset.html:32 msgid "How does this work?" -msgstr "" +msgstr "Si funksionon kjo?" #: ckan/templates/user/perform_reset.html:40 msgid "Simply enter a new password and we'll update your account" -msgstr "" +msgstr "Thjesht shkruani një fjalëkalim të ri dhe ne do të ndryshojmë llogarinë tuaj." #: ckan/templates/user/read.html:21 msgid "User hasn't created any datasets." -msgstr "" +msgstr "Përdoruesi nuk ka krijuar asnjë set të të dhënave." #: ckan/templates/user/read_base.html:39 msgid "You have not provided a biography." -msgstr "" +msgstr "Ju nuk keni dhënë një biografi." #: ckan/templates/user/read_base.html:41 msgid "This user has no biography." -msgstr "" +msgstr "Ky përdorues nuk ka biografi." #: ckan/templates/user/read_base.html:73 msgid "Open ID" -msgstr "" +msgstr "ID e hapur" #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 msgid "This means only you can see this" -msgstr "" +msgstr "Kjo do të thotë që vetëm ju mund të shihni këtë" #: ckan/templates/user/read_base.html:87 msgid "Member Since" -msgstr "" +msgstr "Anëtar që nga" #: ckan/templates/user/read_base.html:96 msgid "API Key" -msgstr "" +msgstr "API çelësi" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Fjalëkalimi u rivendos" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Kërkesa u rivendos" #: ckan/templates/user/request_reset.html:34 msgid "" "Enter your username into the box and we will send you an email with a link " "to enter a new password." -msgstr "" +msgstr "Shtypni emrin tuaj të përdoruesit në kuti dhe ne do të ju dërgojmë një lidhje për të shtypur një fjalëkalim të ri." #: ckan/templates/user/snippets/followee_dropdown.html:14 #: ckan/templates/user/snippets/followee_dropdown.html:15 msgid "Activity from:" -msgstr "" +msgstr "Aktiviteti nga:" #: ckan/templates/user/snippets/followee_dropdown.html:23 msgid "Search list..." -msgstr "" +msgstr "Lista e kërkimit..." #: ckan/templates/user/snippets/followee_dropdown.html:44 msgid "You are not following anything" -msgstr "" +msgstr "Ju nuk jeni duke ndjekur asgjë" #: ckan/templates/user/snippets/followers.html:9 msgid "No followers" -msgstr "" +msgstr "Asnjë ndjekës" #: ckan/templates/user/snippets/user_search.html:5 msgid "Search Users" -msgstr "" +msgstr "Kërko përdorues" #: ckanext/datapusher/helpers.py:19 msgid "Complete" -msgstr "" +msgstr "Ka përfunduar" #: ckanext/datapusher/helpers.py:20 msgid "Pending" -msgstr "" +msgstr "Në pritje" #: ckanext/datapusher/helpers.py:21 msgid "Submitting" -msgstr "" +msgstr "Duke u dorëzuar" #: ckanext/datapusher/helpers.py:27 msgid "Not Uploaded Yet" -msgstr "" +msgstr "Ende nuk është ngarkuar" #: ckanext/datastore/controller.py:31 msgid "DataStore resource not found" -msgstr "" +msgstr "Burimi i depove të të dhënave nuk u gjet" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "Të dhënat ishin të pavlefshme (si për shembull: një vlerë numerike është jashtë rangut ose është futur në një fushë të tekstit)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." -msgstr "" +msgstr "Burimi \"{0}\" nuk u gjet." #: ckanext/datastore/logic/auth.py:16 msgid "User {0} not authorized to update resource {1}" -msgstr "" +msgstr "Përdoruesi {0} nuk është i autorizuar të ndryshoj burimin {1}" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Seti i të dhënave për faqe" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testo conf" #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "Fusha e kustomizuar rritëse" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "Fusha e kustomizuar zvogëluese" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "Custom Text" -msgstr "" +msgstr "Teksti i kustomizuar" #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 msgid "custom text" -msgstr "" +msgstr "teksti i kustomizuar" #: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 msgid "Country Code" -msgstr "" +msgstr "Kodi i vendit" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" +msgstr "teksti burimor i kustomizuar" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" msgstr "" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" -msgstr "" +msgstr "Ky grup nuk ka përshkrim" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "Mjeti i CKAN për rishikimin e të dhënave ka shumë karakteristika të fuqishme" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "Url e imazhit" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +msgstr "p.sh. http://example.com/image.jpg (nëse vendi bosh përdor url-në e burimit)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" -msgstr "" +msgstr "Të dhënat eksploruese" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "Tabela" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Grafi" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" +msgstr "Harta" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "Row offset" -msgstr "" +msgstr "Rresht i mënjanuar" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "p.sh: 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Numri i rreshtave" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "p.sh.: 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Lloji i grafit" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Grupi (boshti 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Seritë (boshti 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "Lloji i fushës" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" -msgstr "" +msgstr "Fusha e gjerësisë" #: ckanext/reclineview/theme/templates/recline_map_form.html:8 msgid "Longitude field" -msgstr "" +msgstr "Fusha e gjatësisë" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "Fusha GeoJSON" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" -msgstr "" +msgstr "Zmadhim automatik tek tiparet" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "Tregjet thërrmuese" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" -msgstr "Numri total i të dhënave" +msgstr "Numri total i setit të të dhënave" #: ckanext/stats/templates/ckanext/stats/index.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:40 msgid "Date" -msgstr "" +msgstr "Data" #: ckanext/stats/templates/ckanext/stats/index.html:18 msgid "Total datasets" -msgstr "" +msgstr "Totali i setit të të dhënave" #: ckanext/stats/templates/ckanext/stats/index.html:33 #: ckanext/stats/templates/ckanext/stats/index.html:179 msgid "Dataset Revisions per Week" -msgstr "" +msgstr "Rishikimet e setit të të dhënave në javë" #: ckanext/stats/templates/ckanext/stats/index.html:41 msgid "All dataset revisions" -msgstr "" +msgstr "Rishikimet e gjithë setit të të dhënave" #: ckanext/stats/templates/ckanext/stats/index.html:42 msgid "New datasets" -msgstr "" +msgstr "Seti i të dhënave të reja" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Të dhënat më të vlerësuara" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Mesatarja" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Numri i vlerësimeve" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Nuk ka vlerësime" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Të dhënat më të modifikuara" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Numri i modifikimeve" #: ckanext/stats/templates/ckanext/stats/index.html:103 msgid "No edited datasets" -msgstr "" +msgstr "Asnjë set i të dhënave nuk u redaktua" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Grupet më të mëdha" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Numri i të dhënave" #: ckanext/stats/templates/ckanext/stats/index.html:127 msgid "No groups" -msgstr "" +msgstr "Nuk ka grupe" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Togfjalëshat kryesorë" #: ckanext/stats/templates/ckanext/stats/index.html:136 msgid "Tag Name" -msgstr "" +msgstr "Emri i etiketës" #: ckanext/stats/templates/ckanext/stats/index.html:137 #: ckanext/stats/templates/ckanext/stats/index.html:157 msgid "Number of Datasets" -msgstr "" +msgstr "Numri i setit të të dhënave" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" -msgstr "" +msgstr "Mënyja e statistikave" #: ckanext/stats/templates/ckanext/stats/index.html:178 msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistika" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Rishikime tek të dhënat në javë" +msgstr "Numri total i seteve të të dhënave" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Përdoruesit që kanë më shumë të dhëna" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Faqja është ndryshuar për herë të fundit:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Statistika" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Teksti" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Uebfaqja" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "Url e uebfaqes" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "p.sh. http://example.com (nëse vendi bosh përdorë url-në e burimit)" diff --git a/ckan/i18n/sr/LC_MESSAGES/ckan.mo b/ckan/i18n/sr/LC_MESSAGES/ckan.mo index 9939c0e8192..cca1214c4e5 100644 Binary files a/ckan/i18n/sr/LC_MESSAGES/ckan.mo and b/ckan/i18n/sr/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/sr/LC_MESSAGES/ckan.po b/ckan/i18n/sr/LC_MESSAGES/ckan.po index 006d3cfd6e9..7c6629ec9a1 100644 --- a/ckan/i18n/sr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sr/LC_MESSAGES/ckan.po @@ -8,252 +8,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:22+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Serbian (http://www.transifex.com/projects/p/ckan/language/sr/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:22+0000\n" +"Last-Translator: dread \n" +"Language-Team: Serbian (http://www.transifex.com/okfn/ckan/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Функција ауторизације није пронађена: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Само систем администратор може да управља" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "О сервису" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Немогуће одбацивање пакета %s јер придружена верзија %s садржи пакете који се не могу обрисати %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Проблем при одбацивању верзије %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Одбацивање комплетно" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Акција није имплементирана" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Немате овлашћења да бисте видели ову страницу" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Приступ одбијен" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Није пронађено" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Лош захтев" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Име акције није познато: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON Грешка: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Неисправан податак: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Немогуће излиставање ентитета овог типа: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Не може се прочитати ентитет овог типа: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Не може се креирати нови ентитет овог типа: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Није могуће додати пакет у регистар претраге" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Не може се ажурирати ентитет овог типа: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Није могуће ажурирати регистар претраге" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Не може се избрисати ентитет овог типа: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Промена није наведена" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Нема верзије чији је ID: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Немогуће читање параметара: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Лоша опција претраге: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Непознат регистaр: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Параметри захтева морају бити у облику кодираног ЈСОН речника." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Група није пронађена" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Неовлашћено читање групе %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -264,23 +264,23 @@ msgstr "Неовлашћено читање групе %s" msgid "Organizations" msgstr "" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Групе" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -288,394 +288,303 @@ msgstr "Групе" msgid "Tags" msgstr "Тагови" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Нема овлашћења за креирање групе" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Корисник %r није овлашћен да meња %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Грешка интегритета" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Корисник %r није овлашћен да мења %s овлашћења" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Одаберите две верзије пре поређења." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Корисник %r није овлашћен да мења %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Историја верзија CKAN група" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Недавне промене у CKAN Групи:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Лог порука:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Сајт је тренутно недоступан. База није иницијализована." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Молимо Вас, ажурирајте Ваш профил и додајте своју емаил адресу." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s користни Вашу емаил адресу, ако желите да ресетујете Вашу шифру." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Молимо Вас, ажурирајте Ваш профил и додајте своје пуно име." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Скуп података није пронађен" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Неовлашћено читање пакета %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Неисправан формат верзије: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN Историја верзија скупа података" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Недавне промене на CKAN скупу података" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Неовлашћено креирања пакета" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Ресурс није пронађен" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Грешка" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Није могуће додати пакет у регистар претраге" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Није могуће ажурирати регистар претраге." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 +#, python-format +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Немате права да читате ресурс %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Визуализација" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Историја претходних верзија базе CKAN" @@ -701,10 +610,10 @@ msgstr "Остало" msgid "Tag not found" msgstr "Таг није пронађен" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Корисник није пронађен" @@ -724,13 +633,13 @@ msgstr "" msgid "No user specified" msgstr "Ниједан корисник није специфициран" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Неовлашћено мењање корисника %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Профил ажуриран" @@ -754,75 +663,87 @@ msgstr "Корисник \"%s\" је сада регистрован, али с msgid "Unauthorized to edit a user." msgstr "" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Корисник %s није овлашћен да мења %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Логовање није успело. Погрешно корисничко име или шифра." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" поклапа више корисника" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Не постоји корисник: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Молимо Вас нађите ресет-код у пријемном поштанском сандучету." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Немогуће слање ресет линка: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Неважећи ресет-код. Молимо покушајте поново." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Ваша лозинка је ресетована." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Ваша шифра мора бити дужине 4 или више карактера." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Шифре које сте откуцали се не поклапају." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "" @@ -944,7 +865,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -952,7 +873,7 @@ msgid "View" msgstr "Преглед" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" msgstr[1] "" @@ -1006,141 +927,141 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Ажурирај свој аватар на gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Непознато" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Направи нови скуп података." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Измењени ресурси." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Измењена подешавања." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1172,7 +1093,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1197,7 +1118,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Недостаје вредност" @@ -1210,7 +1131,7 @@ msgstr "Поље за унос %(name)s није очекивано." msgid "Please enter an integer value" msgstr "Молимо Вас унесите целобројну вредност" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1220,11 +1141,11 @@ msgstr "Молимо Вас унесите целобројну вредност msgid "Resources" msgstr "Ресурси" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Ресурс(и) пакета неисправан" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Додаци" @@ -1234,25 +1155,22 @@ msgstr "Додаци" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Таг - речник \"%s\" не постоји" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Корисник" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Скуп података" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Група" @@ -1264,378 +1182,369 @@ msgstr "" msgid "A organization must be supplied" msgstr "" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Неисправан број" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Неисправан формат датума" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Линкови нису дозвољени у log_message." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Ресурс" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Сродни" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Име групе или ИД не постоје." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Тип активности" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "То име не може бити коришћено" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Име може бити дуго највише %i карактера" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Тај УРЛ је већ у употреби." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Дужина имена \"%s\" је мања од минималне %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Дужина имена \"%s\" је већа од максималне %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Верзија мора бити највише %i карактера дужине" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Дуплирани кључ \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Група са тим именом већ постоји у бази." -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Дужина тага \"%s\" је мања од минималне %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Дужина тага \"%s\" је вeћа од максималне (%i)" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Таг \"%s\" мора бити састављен од алфанумеричких карактера или симбола: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Таг \"%s\" не сме да буде великим словима." -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "То корисничко име није слободно." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Молимо Вас да унесете обе лозинке" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Ваша лозинка мора бити дужине најмање 4" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Лозинке које сте унели се не поклапају" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Мењања није дозвољено, јер изгледа непожељно. Избегавајте линкове у Вашем опису." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Име мора бити најмање %s карактера дугачко." -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "То име речника је већ употребљено." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Немогуће је променити вредност кључа са %s на %s. Овај кључ је само за читање" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Таг - речник није пронађен." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Таг %s не припада речнику %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Нема таг имена" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Таг %s већ припада речнику %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Креирaj објекaт %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Креирај однос пакета: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Креирај члан објекат %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Морате обезбедити ID пакета или име (параметар \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Морате да доставите оцену (параметар \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Оцена мора бити целобројна вредност." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Оцена мора бити између %i и %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Бриши пакет: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Бриши %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "ид није у подацима" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Речник \"%s\" није пронађен" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Таг \"%s\" није пронађен" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Ресурс није пронађен." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "непознат корисник" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Пакет није пронађен." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Ажужирање објекта %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Ажурирање односа пакета: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus није пронађен." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "" @@ -1666,7 +1575,7 @@ msgstr "Морате бити улоговани да бисте додали с msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Нема пронађених пакетa за овај ресурс, не може да провери аут (лош превод)." @@ -1676,94 +1585,98 @@ msgstr "Нема пронађених пакетa за овај ресурс, н msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Корисник %s није овлашћен да мења ове пакете" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Корисник %s није овлашћен да креира групе" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Група није пронађена." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Валидан API кључ потребан за креирање пакета" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Валидан API кључ потребан за креирање групи" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Корисник %s није овлашћен да мења групу %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Само власник може да обрише сродне ставке" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Корисник %s није овлашћен да избрише везу %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Корисник %s није овлашћен да избрише групу %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Корисник %s није овлашћен да избрише task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1784,7 +1697,7 @@ msgstr "Корисник %s није овлашћен да чита ресурс msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1862,63 +1775,63 @@ msgstr "Валидан API кључ је потребан за измене па msgid "Valid API key needed to edit a group" msgstr "Валидан API кључ је потребан за измене групе" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Остало (Отворена)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Остало (Јавни домен)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Остало (Прилог)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Остало (Не-комерцијална)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Остало (Не отворена)" @@ -2025,8 +1938,6 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Откажи" @@ -2051,12 +1962,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Слика" @@ -2129,7 +2041,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2143,7 +2054,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Уређивање" @@ -2182,11 +2092,11 @@ msgstr "" msgid "Sysadmin settings" msgstr "" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" @@ -2194,23 +2104,31 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "Одјавите се" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "Региструјте се" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2219,7 +2137,6 @@ msgstr "Региструјте се" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2229,15 +2146,13 @@ msgstr "Региструјте се" msgid "Datasets" msgstr "Скупови података" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "Тражи" @@ -2273,24 +2188,24 @@ msgstr "" msgid "Trash" msgstr "Смеће" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2361,7 +2276,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "" @@ -2513,7 +2427,7 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2546,8 +2460,6 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "" @@ -2565,7 +2477,7 @@ msgstr "" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2710,14 +2622,12 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Избриши" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Сачувај" @@ -2805,7 +2715,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Опис" @@ -2867,7 +2776,7 @@ msgstr "" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2967,38 +2876,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "скуп(ов)а података" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3016,7 +2917,6 @@ msgid "Custom" msgstr "" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Форма садржи неисправан унос:" @@ -3029,7 +2929,6 @@ msgid "http://example.com/my-image.jpg" msgstr "" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "" @@ -3074,7 +2973,7 @@ msgstr "" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3108,6 +3007,20 @@ msgstr "" msgid "There are currently no organizations for this site" msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Корисничко име" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3242,7 +3155,6 @@ msgid "Preview" msgstr "Преглед" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "" @@ -3301,7 +3213,7 @@ msgstr "" msgid "Add" msgstr "Додај" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3333,28 +3245,32 @@ msgstr "" msgid "Error:" msgstr "Грешка:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Последње ажурирање" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3458,7 +3374,7 @@ msgid "unknown" msgstr "" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Креирано" @@ -3494,6 +3410,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Докуменатација API-ја" @@ -3550,7 +3470,7 @@ msgid "Version" msgstr "Верзија" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Статус" @@ -3565,7 +3485,6 @@ msgstr "АПИ података" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Име" @@ -3585,30 +3504,30 @@ msgstr "" msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3735,7 +3654,7 @@ msgstr "" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Уграђено" @@ -3821,139 +3740,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -4041,7 +3827,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Почетак" @@ -4050,7 +3835,7 @@ msgid "Language" msgstr "" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4082,21 +3867,25 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4177,7 +3966,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4196,10 +3985,6 @@ msgstr "Промене" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4263,36 +4048,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Корисничко име" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Пуно име" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4525,15 +4301,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4541,6 +4317,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4567,6 +4351,10 @@ msgstr "" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4584,64 +4372,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4701,7 +4449,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Укупан број скупова података" @@ -4729,33 +4476,27 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Најбоље оцењени скупови података" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Просечна оцена" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Број оцена" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Без оцене" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Највише мењани скупови података" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Број промена" @@ -4765,12 +4506,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Највеће групе" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Број скупова података" @@ -4780,7 +4519,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Најчешћи тагови" @@ -4795,7 +4533,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 @@ -4806,42 +4544,16 @@ msgstr "" msgid "Total Number of Datasets" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Статистике" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Верзије скупова података по недељама" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Корисници који поседују највише скупова података" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Страница последњи пут ажурирана:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Контролна табла - Статистика" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Контролна табла скупова података" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Изаберите атрибут скупа података и сазнајте која категорија у тој области има највише скупова података. Нпр тагови, групе, лиценце, земља." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Изабери област" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo index daa26792400..4db291f2948 100644 Binary files a/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo and b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po index 57cba0b3031..c9194620db5 100644 --- a/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po @@ -8,252 +8,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:22+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/ckan/language/sr@latin/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:21+0000\n" +"Last-Translator: dread \n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/okfn/ckan/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Funkcijа аutorizаcije nije pronаđenа: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Sаmo sistem аdministrаtor može dа uprаvljа" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "O servisu" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Nemoguće odbаcivаnje pаketа %s jer pridruženа verzijа %s sаdrži pаkete koji se ne mogu obrisаti %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problem pri odbаcivаnju verzije %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Odbаcivаnje kompletno" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Akcijа nije implementirаnа" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Nemаte ovlаšćenjа dа biste videli ovu strаnicu" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Pristup odbijen" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Nije pronаđeno" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Loš zаhtev" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Ime аkcije nije poznаto: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON Greškа: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Neisprаvаn podаtаk: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Nemoguće izlistаvаnje entitetа ovog tipа: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Ne može se pročitаti entitet ovog tipа: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Ne može se kreirаti novi entitet ovog tipа: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Nije moguće dodаti pаket u registаr pretrаge" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Ne može se аžurirаti entitet ovog tipа: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Nije moguće аžurirаti registаr pretrаge" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Ne može se izbrisаti entitet ovog tipа: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Promenа nije nаvedenа" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Nemа verzije čiji je ID: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Nemoguće čitаnje pаrаmetаrа: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Lošа opcijа pretrаge: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Nepoznаt registar: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Pаrаmetri zаhtevа morаju biti u obliku kodirаnog JSON rečnikа." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Grupа nije pronаđenа" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Neovlаšćeno čitаnje grupe %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -264,23 +264,23 @@ msgstr "Neovlаšćeno čitаnje grupe %s" msgid "Organizations" msgstr "" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupe" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -288,394 +288,303 @@ msgstr "Grupe" msgid "Tags" msgstr "Tаgovi" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Nemа ovlаšćenjа zа kreirаnje grupe" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Korisnik %r nije ovlаšćen dа menjа %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Greškа integritetа" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Korisnik %r nije ovlаšćen dа menjа %s ovlаšćenjа" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Odаberite dve verzije pre poređenjа." -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Korisnik %r nije ovlаšćen dа menjа %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Istorijа verzijа CKAN grupа" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Nedаvne promene u CKAN Grupi:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Log porukа:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Sаjt je trenutno nedostupаn. Bаzа nije inicijаlizovаnа." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Molimo Vаs, аžurirаjte Vаš profil i dodаjte svoju emаil аdresu." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s koristni Vаšu emаil аdresu, аko želite dа resetujete Vаšu šifru." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Molimo Vаs, аžurirаjte Vаš profil i dodаjte svoje puno ime." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Skup podаtаkа nije pronаđen" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Neovlаšćeno čitаnje pаketа %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Neisprаvаn formаt verzije: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN Istorijа verzijа skupа podаtаkа" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Nedаvne promene nа CKAN skupu podаtаkа" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Neovlаšćeno kreirаnjа pаketа" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Resurs nije pronаđen" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Greškа" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Nije moguće dodаti pаket u registаr pretrаge" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Nije moguće аžurirаti registаr pretrаge." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." msgstr "" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 +#, python-format +msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Nemаte prаvа dа čitаte resurs %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Vizuаlizаcijа" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Istorijа prethodnih verzijа bаze CKAN" @@ -701,10 +610,10 @@ msgstr "Ostаlo" msgid "Tag not found" msgstr "Tаg nije pronаđen" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Korisnik nije pronаđen" @@ -724,13 +633,13 @@ msgstr "" msgid "No user specified" msgstr "Nijedаn korisnik nije specificirаn" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Neovlаšćeno menjаnje korisnikа %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil аžurirаn" @@ -754,75 +663,87 @@ msgstr "Korisnik \"%s\" je sаdа registrovаn, аli ste i dаlje ulogovаni kа msgid "Unauthorized to edit a user." msgstr "" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Korisnik %s nije ovlаšćen dа menjа %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Logovаnje nije uspelo. Pogrešno korisničko ime ili šifrа." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" poklаpа više korisnikа" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Ne postoji korisnik: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Molimo Vаs nаđite reset-kod u prijemnom poštаnskom sаndučetu." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Nemoguće slаnje reset linkа: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Nevаžeći reset-kod. Molimo pokušаjte ponovo." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Vаšа lozinkа je resetovаnа." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Vаšа šifrа morа biti dužine 4 ili više kаrаkterа." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Šifre koje ste otkucаli se ne poklаpаju." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "" @@ -944,7 +865,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -952,7 +873,7 @@ msgid "View" msgstr "Pregled" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" msgstr[1] "" @@ -1006,141 +927,141 @@ msgstr "" msgid "December" msgstr "" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Ažurirаj svoj аvаtаr nа gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Nepoznаto" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Nаprаvi novi skup podаtаkа." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Izmenjeni resursi." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Izmenjenа podešаvаnjа." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1172,7 +1093,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1197,7 +1118,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Nedostаje vrednost" @@ -1210,7 +1131,7 @@ msgstr "Polje zа unos %(name)s nije očekivаno." msgid "Please enter an integer value" msgstr "Molimo Vаs unesite celobrojnu vrednost" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1220,11 +1141,11 @@ msgstr "Molimo Vаs unesite celobrojnu vrednost" msgid "Resources" msgstr "Resursi" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Resurs(i) pаketа neisprаvаn" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Dodаci" @@ -1234,25 +1155,22 @@ msgstr "Dodаci" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Tаg - rečnik \"%s\" ne postoji" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Korisnik" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Skup podаtаkа" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grupа" @@ -1264,378 +1182,369 @@ msgstr "" msgid "A organization must be supplied" msgstr "" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Neisprаvаn broj" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Neisprаvаn formаt dаtumа" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Linkovi nisu dozvoljeni u log_message." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Resurs" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Srodni" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Ime grupe ili ID ne postoje." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Tip аktivnosti" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "To ime ne može biti korišćeno" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Ime može biti dugo nаjviše %i kаrаkterа" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Tаj URL je već u upotrebi." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Dužinа imenа \"%s\" je mаnjа od minimаlne %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Dužinа imenа \"%s\" je većа od mаksimаlne %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Verzijа morа biti nаjviše %i kаrаkterа dužine" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Duplirаni ključ \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Grupа sа tim imenom već postoji u bаzi." -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Dužinа tаgа \"%s\" je mаnjа od minimаlne %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Dužinа tаgа \"%s\" je većа od mаksimаlne (%i)" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Tаg \"%s\" morа biti sаstаvljen od аlfаnumeričkih kаrаkterа ili simbolа: -_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Tаg \"%s\" ne sme dа bude velikim slovimа." -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "To korisničko ime nije slobodno." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Molimo Vаs dа unesete obe lozinke" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Vаšа lozinkа morа biti dužine nаjmаnje 4" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Lozinke koje ste uneli se ne poklаpаju" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Menjаnjа nije dozvoljeno, jer izgledа nepoželjno. Izbegаvаjte linkove u Vаšem opisu." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Ime morа biti nаjmаnje %s kаrаkterа dugаčko." -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "To ime rečnikа je već upotrebljeno." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Nemoguće je promeniti vrednost ključа sа %s nа %s. Ovаj ključ je sаmo zа čitаnje" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Tаg - rečnik nije pronаđen." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Tаg %s ne pripаdа rečniku %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Nemа tаg imenа" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Tаg %s već pripаdа rečniku %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Kreiraj objekat %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Kreirаj odnos pаketа: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Kreirаj člаn objekаt %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Morаte obezbediti ID pаketа ili ime (pаrаmetаr \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Morаte dа dostаvite ocenu (pаrаmetаr \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Ocenа morа biti celobrojnа vrednost." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Ocenа morа biti između %i i %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Briši pаket: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Briši %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id nije u podаcimа" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Rečnik \"%s\" nije pronаđen" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Tаg \"%s\" nije pronаđen" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Resurs nije pronаđen." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "nepoznаt korisnik" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Pаket nije pronаđen." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Ažužirаnje objektа %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Ažurirаnje odnosа pаketа: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus nije pronаđen." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "" @@ -1666,7 +1575,7 @@ msgstr "Morаte biti ulogovаni dа biste dodаli srodne stаvke " msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Nemа pronаđenih pаketa zа ovаj resurs, ne može dа proveri аut (loš prevod)." @@ -1676,94 +1585,98 @@ msgstr "Nemа pronаđenih pаketa zа ovаj resurs, ne može dа proveri аut ( msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Korisnik %s nije ovlаšćen dа menjа ove pаkete" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Korisnik %s nije ovlаšćen dа kreirа grupe" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Grupа nije pronаđenа." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Vаlidаn API ključ potrebаn zа kreirаnje pаketа" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Vаlidаn API ključ potrebаn zа kreirаnje grupi" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Korisnik %s nije ovlаšćen dа menjа grupu %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Sаmo vlаsnik može dа obriše srodne stаvke" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Korisnik %s nije ovlаšćen dа izbriše vezu %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Korisnik %s nije ovlаšćen dа izbriše grupu %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Korisnik %s nije ovlаšćen dа izbriše task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1784,7 +1697,7 @@ msgstr "Korisnik %s nije ovlаšćen dа čitа resurs %s" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1862,63 +1775,63 @@ msgstr "Vаlidаn API ključ je potrebаn zа izmene pаketа" msgid "Valid API key needed to edit a group" msgstr "Vаlidаn API ključ je potrebаn zа izmene grupe" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Ostаlo (Otvorenа)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Ostаlo (Jаvni domen)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Ostаlo (Prilog)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Ostаlo (Ne-komercijаlnа)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Ostаlo (Ne otvorenа)" @@ -2025,8 +1938,6 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Otkаži" @@ -2051,12 +1962,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Slikа" @@ -2129,7 +2041,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2143,7 +2054,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Uređivаnje" @@ -2182,11 +2092,11 @@ msgstr "" msgid "Sysadmin settings" msgstr "" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" @@ -2194,23 +2104,31 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "Odjаvite se" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "Registrujte se" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2219,7 +2137,6 @@ msgstr "Registrujte se" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2229,15 +2146,13 @@ msgstr "Registrujte se" msgid "Datasets" msgstr "Skupovi podаtаkа" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "Trаži" @@ -2273,24 +2188,24 @@ msgstr "" msgid "Trash" msgstr "Smeće" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2361,7 +2276,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "" @@ -2513,7 +2427,7 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2546,8 +2460,6 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "" @@ -2565,7 +2477,7 @@ msgstr "" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2710,14 +2622,12 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Izbriši" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Sаčuvаj" @@ -2805,7 +2715,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Opis" @@ -2867,7 +2776,7 @@ msgstr "" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2967,38 +2876,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "skup(ov)а podаtаkа" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3016,7 +2917,6 @@ msgid "Custom" msgstr "" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Formа sаdrži neisprаvаn unos:" @@ -3029,7 +2929,6 @@ msgid "http://example.com/my-image.jpg" msgstr "" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "" @@ -3074,7 +2973,7 @@ msgstr "" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3108,6 +3007,20 @@ msgstr "" msgid "There are currently no organizations for this site" msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Korisničko ime" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3242,7 +3155,6 @@ msgid "Preview" msgstr "Pregled" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "" @@ -3301,7 +3213,7 @@ msgstr "" msgid "Add" msgstr "Dodаj" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3333,28 +3245,32 @@ msgstr "" msgid "Error:" msgstr "Greškа:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Poslednje аžurirаnje" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3458,7 +3374,7 @@ msgid "unknown" msgstr "" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Kreirаno" @@ -3494,6 +3410,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Dokumenаtаcijа API-jа" @@ -3550,7 +3470,7 @@ msgid "Version" msgstr "Verzijа" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Stаtus" @@ -3565,7 +3485,6 @@ msgstr "API podаtаkа" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Ime" @@ -3585,30 +3504,30 @@ msgstr "" msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3735,7 +3654,7 @@ msgstr "" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Ugrаđeno" @@ -3821,139 +3740,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -4041,7 +3827,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Početаk" @@ -4050,7 +3835,7 @@ msgid "Language" msgstr "" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4082,21 +3867,25 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4177,7 +3966,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4196,10 +3985,6 @@ msgstr "Promene" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4263,36 +4048,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Korisničko ime" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Puno ime" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4525,15 +4301,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4541,6 +4317,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4567,6 +4351,10 @@ msgstr "" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4584,64 +4372,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4701,7 +4449,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Ukupаn broj skupovа podаtаkа" @@ -4729,33 +4476,27 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Nаjbolje ocenjeni skupovi podаtаkа" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Prosečnа ocenа" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Broj ocenа" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Bez ocene" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Nаjviše menjаni skupovi podаtаkа" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Broj promenа" @@ -4765,12 +4506,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Nаjveće grupe" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Broj skupovа podаtаkа" @@ -4780,7 +4519,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Nаjčešći tаgovi" @@ -4795,7 +4533,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 @@ -4806,42 +4544,16 @@ msgstr "" msgid "Total Number of Datasets" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Stаtistike" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Verzije skupovа podаtаkа po nedeljаmа" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Korisnici koji poseduju nаjviše skupovа podаtаkа" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Strаnicа poslednji put аžurirаnа:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Kontrolnа tаblа - Stаtistikа" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Kontrolnа tаblа skupovа podаtаkа" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Izаberite аtribut skupа podаtаkа i sаznаjte kojа kаtegorijа u toj oblаsti imа nаjviše skupovа podаtаkа. Npr tаgovi, grupe, licence, zemljа." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Izаberi oblаst" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/sv/LC_MESSAGES/ckan.mo b/ckan/i18n/sv/LC_MESSAGES/ckan.mo index bb85d96a6e1..0e0be2e9ed0 100644 Binary files a/ckan/i18n/sv/LC_MESSAGES/ckan.mo and b/ckan/i18n/sv/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/sv/LC_MESSAGES/ckan.po b/ckan/i18n/sv/LC_MESSAGES/ckan.po index c21326aaa22..cfa7cd1d05a 100644 --- a/ckan/i18n/sv/LC_MESSAGES/ckan.po +++ b/ckan/i18n/sv/LC_MESSAGES/ckan.po @@ -12,252 +12,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-02-04 17:28+0000\n" -"Last-Translator: Börje Lewin \n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/ckan/language/sv/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:24+0000\n" +"Last-Translator: dread \n" +"Language-Team: Swedish (http://www.transifex.com/okfn/ckan/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Behörighetsfunktion hittades inte: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Admin" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Redaktör" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Medlem" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Du måste vara systemadministratör för att administrera." -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Webbplatsnamn" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Stil" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Tagline för webbplatsen" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Logotyp för webbplatskortnamn" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Om" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Om webbplatsentext" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Introtext" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Text på startsida" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Egen CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Egen CSS inlagd i sidhuvudet" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Hemsida" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Kan inte radera paketet %s eftersom den relaterade versionen %s innehåller paket som ännu inte är raderade %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Problem att rensa version %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Rensning klar" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Åtgärden inte implementerad." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Du är inte behörig att se denna sida" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Åtkomst nekad" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Hittades inte" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Felaktig begäran" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Åtgärdsnamn okänt: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON-fel: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Felaktig begäran: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Kan inte lista objekt med typ: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Kan inte läsa objekt med typ: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Kan inte skapa objekt med typ: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Kan inte lägga till paketet till sökindex" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Kan inte uppdatera objekt med typ: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Kan inte att uppdatera sökindex" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Kan inte radera objekt med typ: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Ingen utgåva angiven" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Det finns ingen utgåva med id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Saknade sökord (\"since_id = UUID 'eller' since_time = TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Kunde inte läsa parametrar: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Felaktiga sökparametrar: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Okänt register: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Felaktigt format för qjsonvärde: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Parametrarna måste vara i formen av en json-kodad dictionary." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Gruppen hittades inte" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "Hittade inte organisationen" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Felaktig grupptyp" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Behörighet saknas för att läsa grupp: %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -268,23 +268,23 @@ msgstr "Behörighet saknas för att läsa grupp: %s" msgid "Organizations" msgstr "Organisationer" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Grupper" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -292,394 +292,303 @@ msgstr "Grupper" msgid "Tags" msgstr "Taggar" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Format" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Licenser" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Ej behörig att utföra bulkuppdateringar" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Du har inte behörighet att skapa en ny grupp" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Användare %r har inte behörighet att redigera %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Integritetsfel" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Användare %r har inte behörighet att redigera %s behörigheter" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Obehörig att radera grupp %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Organisationen har raderats." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Gruppen har raderats" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s har raderats." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Behörighet saknas för att lägga till medlem till grupp %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Behörighet saknas för att radera medlemmar i grupp %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Gruppmedlem har raderats." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Välj två versioner innan du jämför dem" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Användare %r har inte behörighet att redigera %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN Revisionshistorik för grupp" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Senaste ändringarna i CKAN-gruppen:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Loggmeddelande:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Behörighet saknas för att läsa grupp {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Du följer nu {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Du har slutat följa {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Behörighet saknas för att se followers %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Webbplatsen är för tillfället offline. Databasen är inte initialiserad." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Vänligen uppdatera din profil och lägg till din emailadress och ditt fullständiga namn. {site} använder din emailadress ifall du behöver nollställa ditt lösenord." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Vänligen uppdatera din profil och lägg till din e-postadress. " -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s använder din e-postadress om du behöver återställa ditt lösenord." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Vänligen uppdatera din profil och lägg till ditt namn. " - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Parametern \"{parameter_name}\" är inte ett heltal" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Dataset hittades inte" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Obehörig att läsa paket %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Felaktigt format på revision: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Visning av dataset av typen {package_type} i formatet {format}, stöds inte (mallen {file} hittades inte)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Ändringshistorik för CKAN dataset" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Senaste ändringar av CKAn dataset: " -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Oberhörig för att skapa paket" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Behörighet saknas för att redigera denna resurs" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Objektet kunde inte hittas" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Behörighet saknas för att uppdatera detta dataset" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Dataset med {id} kunde inte hittas." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Du måste lägga till åtminstone en dataresurs" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Fel" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Behörighet saknas för att skapa en resurs" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "Behörighet saknas för att skapa en resurs för paketet" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Kan inte lägga till paketet till sökindex" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Det går inte att uppdatera sökindex." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Dataset har raderats." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Behörighet saknas för att radera paket %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Dataset har raderats." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Resursen har raderats." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Behörighet saknas för att radera resurs %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Behörighet saknas för att läsa dataset %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "Hittade inte resursvy" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Inga rättigheter för objektet %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Resursens data hittades inte" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Ingen nerladdning möjlig" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "Behörighet saknas för att redigera resursen" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "Hittade inte vyn" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "Behörighet saknas för vyn %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "Hittade inte typen av vy" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "Fel data för resursvy" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "Behörighet saknas för att läsa resursvy %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "Resursvyn saknas" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Ingen förhandsvisning har definierats." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Mest visade" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Mest visade" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Minst visade" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Nyaste" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Äldsta" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Den relaterade posten du begärde kunde inte hittas" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Relaterad post hittades inte" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Behörighet saknas" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Paketet hittades inte" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Relaterad post skapades utan problem" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Relaterad post uppdaterades utan problem" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Relaterad post har raderats." - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Behörighet saknas att radera relaterad post %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Applikation" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Idé" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Nyhetsartikel" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Papper" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Post" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Visualisering" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN Revisionshistorik för repository" @@ -705,10 +614,10 @@ msgstr "Andra" msgid "Tag not found" msgstr "Taggen hittades inte" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Användaren hittades inte" @@ -728,13 +637,13 @@ msgstr "Ej behörig att radera användare med id \"{user_id}\"." msgid "No user specified" msgstr "Ingen användare angiven" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Obehörig att redigera användare %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Profil uppdaterad" @@ -758,75 +667,87 @@ msgstr "Användare \"%s\" är nu registrerad men du är fortfarande inloggad som msgid "Unauthorized to edit a user." msgstr "Du saknar behörighet för att redigera en användare." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Användare %s är inte behörig att redigera %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Lösenordet är felaktigt" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Gammalt lösenord" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "felaktigt lösenord" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Inloggning misslyckades. Fel användarnamn eller lösenord." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Ej behörig att begära återställande av lösenord." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" matchade flera användare" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Ingen sådan användare: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Kontrollera din inkorg för en återställningskod." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Kunde inte skicka länk för återställning: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Ej behörig att återställa lösenord." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Ogiltig återställningsnyckel. Var god försök igen." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Ditt lösenord har återställts." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Ditt lösenord måste bestå av minst 4 tecken." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Lösenorden du angav matchar inte." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Du måste ange ett lösenord" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Följande post hittades ej" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} hittades inte" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Behörighet saknas att läsa {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Allt" @@ -948,7 +869,7 @@ msgstr "{actor} lade till {related_type} {related_item} till datasetet {dataset} msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} lade till {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -956,10 +877,10 @@ msgid "View" msgstr "Visa" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{n} nya aktiviteter från {site_title}" -msgstr[1] "{n} nya aktiviteter från {site_title}" +msgstr[0] "" +msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1009,135 +930,135 @@ msgstr "november" msgid "December" msgstr "December" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Nyss" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} minuter sedan" msgstr[1] "{mins} minuter sedan" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} timmar sedan" msgstr[1] "{hours} timmar sedan" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} dagar sedan" msgstr[1] "{days} dagar sedan" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} månader sedan" msgstr[1] "{months} månader sedan" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "mer än {years} år sedan" msgstr[1] "mer än {years} år sedan" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} byte" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Ändra din profilbild på gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Okänd" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Namnlös resurs" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Skapade ett nytt dataset." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Redigerade resurser." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Redigerade inställningar" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} visningar" msgstr[1] "{number} visningar" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "visad {number} gång nyligen" @@ -1168,12 +1089,12 @@ msgstr "Du har begärt att lösenordet för {site_title} ska återställas.\n\nK #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "Du har blivit inbjuden till {site_title}. En användare har redan skapats för dig med användarnamnet {user_name}. Du kan ändra det senare.\n\nOm du vill acceptera inbjudan så ändrar du lösenordet via följande länk:\n\n {reset_link}\n" +msgstr "Du har fått en inbjudan till {site_title}. Ett användarkonto har redan skapats för dig med användarnamn {user_name}. Du kan ändra namnet senare.\n\nFör att godkänna inbjudan ändrar du lösenordet här:\n\n {reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1193,7 +1114,7 @@ msgstr "Inbjudan till {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Värde saknas" @@ -1206,7 +1127,7 @@ msgstr "Inmatningsfält %(name)s var inte väntat." msgid "Please enter an integer value" msgstr "Vänligen mata in ett heltal" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1216,11 +1137,11 @@ msgstr "Vänligen mata in ett heltal" msgid "Resources" msgstr "Resurser" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Paketets objekt ogiltiga" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Extra" @@ -1230,25 +1151,22 @@ msgstr "Extra" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Vokabulären \"%s\" finns inte" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Användare" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Dataset" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Grupp" @@ -1260,378 +1178,369 @@ msgstr "Kunde inte läsas in som giltig JSON" msgid "A organization must be supplied" msgstr "En organisation måste anges" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Du kan inte ta bort ett dataset från en befintlig organisation" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Organisationen finns inte" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Du kan inte lägga till ett dataset till denna organisation" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Ogiltigt heltal" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Måste vara ett naturligt tal" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Måste vara ett positivt heltal" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Datumformatet felaktigt" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Inga länkar är tillåtna i log_message." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "Detta dataset-ID finns redan" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Resurs" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Relaterat" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Gruppnamn eller ID finns inte." -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Aktivitetstyp" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Namn måste vara textsträngar" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Namnet kan inte användas" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "Måste vara minst %s tecken" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Namn får vara max %i tecken" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "Får bara vara gemena alfanumeriska tecken (gemener och siffror) samt specialtecknen - och _" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Den URL:en används redan." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Namnet \"%s\" är kortare än minimilängden %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Längden på namnet \"%s\" är längre än maxlängden %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Version får vara max %i tecken lång" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Dubblerad nycke \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "En grupp med detta namn finns redan i databasen" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Tag \"%s\" understiger minimilängden %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Längden av taggen \"%s\" överskrider maxlängden %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Taggen \"%s\" måste vara alfanumeriska tecken eller symboler:-_." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Taggen \"%s\" får inte bestå av versaler" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Användarnamn måste vara textsträngar" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Det inloggningsnamnet är inte tillgängligt." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Skriv in båda lösenorden" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Lösenord måste vara textsträngar" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Ditt lösenord måste bestå av 4 tecken eller fler" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Lösenorden du angav matchar inte" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Redigering inte tillåten eftersom det verkar vara spam. Undvik länkar i din beskrivning." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Namn måste vara minst %s tecken" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Vokabulärnamnet används redan." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Kan inte ändra nyckel från %s till %s. Denna nyckel kan endast läsas." -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Vokabulären för taggar kunde inte hittas." -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Taggen %s hör inte till vokabulär %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Saknar namn för tagg." -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Taggen %s hör redan till vokbaulären %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Ange en giltig URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "Rollen finns inte." -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Dataset som saknar en organisation kan inte göras privata" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Inte en lista" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Inte text" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "Denna överordnade entitet skulle skapa en otillåten slinga i hierarkin" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "\"filter_fields\" och \"filter_values\" ska ha samma längd" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "\"filter_fields\" krävs också när \"filter_values\" anges" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "\"filter_values\" krävs också när \"filter_fields\" anges" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "Det finns ett schemanamn med samma namn" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Skapa objekt %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Skapa paketrelation: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Skapa objekt %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Försök att skapa en organisation som en grupp." -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Du måste ange ett paket-ID eller namn (parameter \"package\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Du måste ange ett betyg (parametern \"rating\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Betyg måste vara ett heltal." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Betyg måste vara mellan %i och %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Du måste vara inloggad för att följa användare" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Du kan inte följa digsjälv" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Du följer redan {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Du måste vara inloggad för att följa ett dataset." -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Användare {username} finns inte." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Du måste vara inloggad för att följa en grupp." -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Ta bort paket: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Ta bort %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Radera Medlemmar %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id finns inte i data" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Kan inte hitta vokabulär \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Kan inte hitta taggen \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Du måste vara inloggad för att sluta följa något." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Du följer inte {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Resursen hittades inte." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Anges ej om \"query parameter\" används" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Måste vara : par" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Fältet \"{field}\" förstods inte i resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "okänd användare:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Posten kunde inte hittas." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Paketet finns inte." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Uppdatera objekt %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Updatera paketrelation: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "Uppgiftsstatus kunde inte hittas." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Organisationen kunde inte hittas." @@ -1662,7 +1571,7 @@ msgstr "Du måste vara inloggad för att lägg till en relaterad post." msgid "No dataset id provided, cannot check auth." msgstr "ID för dataset saknas. Kan inte kontrollera behörighet." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Inget paket hittades för denna resurs, kan inte kontrollera behörigheter." @@ -1672,94 +1581,98 @@ msgstr "Inget paket hittades för denna resurs, kan inte kontrollera behörighet msgid "User %s not authorized to create resources on dataset %s" msgstr "Användaren %s har inte behörighet att skapa resurser för dataset %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Användare %s saknar behörighet att redigera dessa paket" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Användare %s är inte behörig att skapa grupper" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Användare %s har inte behörighet att skapa organisationer" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "Användare {user} saknar behörighet att skapa användare via API:et" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Ej behörig att skapa användare" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Gruppen kunde inte hittas." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Det behövs en giltig API-nyckel för att skapa ett paket" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Det behövs en giltig API-nyckel för att skapa en grupp" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Användare %s har inte behörighet att lägga till medlemmar" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Användare %s saknar behörighet att redigera grupp %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Användare %s har inte behörighet att radera resurs %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "Hittade inte resursvyn. Kan inte kontrollera behörighet." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Bara ägaren kan radera en relaterad post." -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Användare %s saknar behörightet att ta bort relation %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Användare %s har inte behörighet att radera grupper" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Användare %s saknar behörighet att ta bort gruppen %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Användare %s har inte behörighet att radera organisationer" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Användare %s har inte behörighet att radera organisationen %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Användare %s har inte rätt att radera task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Behörighet saknas" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1780,7 +1693,7 @@ msgstr "Användare %s har inte rätt att läsa %s" msgid "User %s not authorized to read group %s" msgstr "Användaren %s är inte behörighet att läsa gruppen %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Du måste vara inloggad för att få tillgång till din panel." @@ -1858,63 +1771,63 @@ msgstr "Giltig API-nyckel behövs för att redigera ett paket" msgid "Valid API key needed to edit a group" msgstr "Giltig API-nyckeln behövs för att redigera en grupp" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "Licens har inte angetts" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Erkännande" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Erkännande Dela Lika" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Annan (grupp)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Annan (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Annan (Attribution)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Icke-kommersiell" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Annan (Icke kommersiell)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Annan (ej öppen)" @@ -2021,8 +1934,6 @@ msgstr "Bekräfta" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Avbryt" @@ -2047,12 +1958,13 @@ msgstr "Länk" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Ta bort" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Bild" @@ -2125,7 +2037,6 @@ msgstr "Sortera om resursvyn" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2139,7 +2050,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Redigera" @@ -2178,34 +2088,42 @@ msgstr "Drivs med teknik från Site Title: This is the title of this CKAN instance It " @@ -2356,7 +2271,6 @@ msgid "" msgstr "Data-API:et kan anropas via följande åtgärder från CKAN:s \"action API\"." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Skapa" @@ -2508,7 +2422,7 @@ msgstr "Välj" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2541,8 +2455,6 @@ msgstr "Gruppformulär" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Bekräfta radering" @@ -2560,7 +2472,7 @@ msgstr "Vill du verkligen radera medlemman - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2705,14 +2617,12 @@ msgstr "Vill du verkligen radera denna medlem?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Radera" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Spara" @@ -2800,7 +2710,6 @@ msgstr "my-group" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Beskrivning" @@ -2861,7 +2770,7 @@ msgstr "Jämför" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2961,38 +2870,30 @@ msgstr "Populära taggar" msgid "{0} statistics" msgstr "{0} statistik" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "dataset" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "dataset" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "organisation" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "organisationer" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "grupp" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "grupper" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "relaterad post" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "relaterade poster" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3010,7 +2911,6 @@ msgid "Custom" msgstr "Eget" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Formuläret innehåller ogiltiga poster:" @@ -3023,7 +2923,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "Bild URL" @@ -3068,7 +2967,7 @@ msgstr "Utkast" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3102,6 +3001,20 @@ msgstr "Sök organisationer..." msgid "There are currently no organizations for this site" msgstr "Det finns för närvarande inga organisationer för denna webbplats" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Användarnamn" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "E-postadress" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Uppdatera medlem" @@ -3236,7 +3149,6 @@ msgid "Preview" msgstr "Förhandsvisa" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Uppdatera" @@ -3295,7 +3207,7 @@ msgstr " Vyer för Data Explorer blir snabbare och pålitligare om tillägget Da msgid "Add" msgstr "Lägg till" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3327,28 +3239,32 @@ msgstr "Fel vid uppladdning:" msgid "Error:" msgstr "Fel:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Status" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Senast uppdaterad" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Aldrig" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Logg för uppladdningen" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Detaljer" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Slut på loggen" @@ -3452,7 +3368,7 @@ msgid "unknown" msgstr "okänd" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Skapad" @@ -3488,6 +3404,10 @@ msgid "" "add some?

" msgstr "

Detta dataset saknar data, varför inte lägga till några?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API-dokumentation" @@ -3544,7 +3464,7 @@ msgid "Version" msgstr "Version" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Status" @@ -3559,7 +3479,6 @@ msgstr "Data API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Titel" @@ -3579,30 +3498,30 @@ msgstr "t.ex. Några rader om datasetet" msgid "eg. economy, mental health, government" msgstr "t.ex. ekonomi, psykisk hälsa, offentlig sektor" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr " Licensdefinitioner och mer information finns på opendefinition.org " -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Ingen organisation" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Synlighet" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Offentlig" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Aktiv" @@ -3729,7 +3648,7 @@ msgstr "Utforska" msgid "More information" msgstr "Mer information" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Bädda in" @@ -3815,139 +3734,6 @@ msgstr "Vad är en vy?" msgid "A view is a representation of the data held against a resource" msgstr "En vy är en representation av de data som är kopplade till en resurs" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Relaterat formulär" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Vad är relaterade poster?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Relaterad Media är valfri app, artikel, visualisering eller idé som är relaterad till detta dataset.

Det kan till exempel vara en egen visualisering, bildtecken, stapeldiagram, en app som använder hela datamängden eller varför inte nyhetsartiklar som refererar till detta dataset.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Vill du verkligen radera den relaterade posten: {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Appar & Idéer" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Visar posterna %(first)s - %(last)s av totalt %(item_count)s relaterade poster som hittats.

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s relaterade poster har hittats

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Inga appar har skickats in ännu." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Vad är applikationer?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Detta är applikationer som byggts med dataset, men även med idéer om vad man kan göra med dem." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Filtrera resultat " - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Filtrera på typ" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Alla" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Sortera" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Default" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Visa endast utvalda poster" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Spara" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Redigera relaterad post" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Redigera relaterad" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Redigera relaterad post" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Skapa en relaterad post" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Skapa relaterad" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Skapa relaterad post" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Min relaterade post" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Lite information om posten..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Typ" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Vill du verkligen radera den här relaterade posten?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Gå till {related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "Skillnader" @@ -4035,7 +3821,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Det finns ingen {facet_type} som matchar sökningen" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Hem" @@ -4044,7 +3829,7 @@ msgid "Language" msgstr "Språk" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4076,21 +3861,25 @@ msgstr "Inga appar, idéer, nya berättelser eller bilder har relaterats till de msgid "Add Item" msgstr "Lägg till post" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Skicka" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Sortera på" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Filtrera resultat " + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Försök med en ny sökfråga.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4165,7 +3954,7 @@ msgid "Subscribe" msgstr "Prenumerera" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4184,10 +3973,6 @@ msgstr "Redigeringar" msgid "Search Tags" msgstr "Sök taggar" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Panel" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Nyhetsfeed" @@ -4251,36 +4036,27 @@ msgstr "Din profil visar andra CKAN-användare vem du är och vad du gör." msgid "Change details" msgstr "Ändringar" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Användarnamn" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Namn" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "t.ex. Joe Exempelsson" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "t.ex. joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Lite information om dig själv" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" -msgstr "Prenumerera på email med meddelanden." +msgstr "Prenumerera på e-post för meddelanden." -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Ändra lösenord" @@ -4470,7 +4246,7 @@ msgstr "Begär återställning" msgid "" "Enter your username into the box and we will send you an email with a link " "to enter a new password." -msgstr "Mata in ditt användarnamn i fältet, så skickar vi ett email med en länk för att ange ett nytt lösenord." +msgstr "Mata in ditt användarnamn i fältet, så skickar vi e-post med en länk för att ange ett nytt lösenord." #: ckan/templates/user/snippets/followee_dropdown.html:14 #: ckan/templates/user/snippets/followee_dropdown.html:15 @@ -4513,15 +4289,15 @@ msgstr "Inte uppladdad än" msgid "DataStore resource not found" msgstr "Hittade inte DataStore-resursen" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "Data är ogiltiga (t.ex. ett numeriskt värde i fel intervall eller infogat i ett textfält)." -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Resursen \"{0}\" hittades inte." @@ -4529,6 +4305,14 @@ msgstr "Resursen \"{0}\" hittades inte." msgid "User {0} not authorized to update resource {1}" msgstr "Användare {0} har inte behörighet att uppdatera resurs {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Dataset per sida" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testkonf" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "Eget fält (stigande)" @@ -4555,6 +4339,10 @@ msgstr "Landkod" msgid "custom resource text" msgstr "egen resurstext" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4572,65 +4360,25 @@ msgstr "Bild-URL" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "t.ex. http://example.com/image.jpg (om inte angivet så används resursens URL)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "Data Explorer" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "tabell" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "Graf" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "Karta" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "This compiled version of SlickGrid has been obtained with the Google Closure\nCompiler, using the following command:\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nThere are two other files required for the SlickGrid view to work properly:\n\n * jquery-ui-1.8.16.custom.min.js \n * jquery.event.drag-2.0.min.js\n\nThese are included in the Recline source, but have not been included in the\nbuilt file to make easier to handle compatibility problems.\n\nPlease check SlickGrid license in the included MIT-LICENSE.txt file.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4689,7 +4437,6 @@ msgid "Cluster markers" msgstr "Markeringar för kluster" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Totalt antal dataset" @@ -4717,33 +4464,27 @@ msgstr "Nya dataset" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Högst rankade dataset" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Medelbetyg" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Antal betyg" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Inga betyg" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Mest redigerade dataset" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Antal redigeringar" @@ -4753,12 +4494,10 @@ msgstr "Inga redigerade dataset" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Största grupper" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Antal dataset" @@ -4768,7 +4507,6 @@ msgstr "Inga grupper" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Mest använda taggar" @@ -4783,8 +4521,8 @@ msgstr "Antal dataset" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Användare med flest dataset" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4794,42 +4532,16 @@ msgstr "Statistikmeny" msgid "Total Number of Datasets" msgstr "Totalt antal dataset" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Statistik" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Ändringar av dataset per vecka" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Användare med flest dataset" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Senast uppdaterad: " - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Topplista" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Text" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Topplista dataset " - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Välj ett datasetattribut och se vilka kategorier i det området som har flest dataset, t.ex. taggar, grupper, licens, format, land." - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Välj område" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "Webbplats" diff --git a/ckan/i18n/sw/LC_MESSAGES/ckan.mo b/ckan/i18n/sw/LC_MESSAGES/ckan.mo deleted file mode 100644 index a567ee5a38f..00000000000 Binary files a/ckan/i18n/sw/LC_MESSAGES/ckan.mo and /dev/null differ diff --git a/ckan/i18n/sw/LC_MESSAGES/ckan.po b/ckan/i18n/sw/LC_MESSAGES/ckan.po deleted file mode 100644 index 86eb5222138..00000000000 --- a/ckan/i18n/sw/LC_MESSAGES/ckan.po +++ /dev/null @@ -1,4837 +0,0 @@ -# Translations template for ckan. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the ckan project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: CKAN\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Swahili (http://www.transifex.com/projects/p/ckan/language/sw/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: sw\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ckan/new_authz.py:178 -#, python-format -msgid "Authorization function not found: %s" -msgstr "" - -#: ckan/new_authz.py:190 -msgid "Admin" -msgstr "" - -#: ckan/new_authz.py:194 -msgid "Editor" -msgstr "" - -#: ckan/new_authz.py:198 -msgid "Member" -msgstr "" - -#: ckan/controllers/admin.py:27 -msgid "Need to be system administrator to administer" -msgstr "" - -#: ckan/controllers/admin.py:43 -msgid "Site Title" -msgstr "" - -#: ckan/controllers/admin.py:44 -msgid "Style" -msgstr "" - -#: ckan/controllers/admin.py:45 -msgid "Site Tag Line" -msgstr "" - -#: ckan/controllers/admin.py:46 -msgid "Site Tag Logo" -msgstr "" - -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 -#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 -#: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 -#: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 -#: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 -msgid "About" -msgstr "" - -#: ckan/controllers/admin.py:47 -msgid "About page text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Intro Text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Text on home page" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Custom CSS" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Customisable css inserted into the page header" -msgstr "" - -#: ckan/controllers/admin.py:50 -msgid "Homepage" -msgstr "" - -#: ckan/controllers/admin.py:131 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" -msgstr "" - -#: ckan/controllers/admin.py:153 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "" - -#: ckan/controllers/admin.py:155 -msgid "Purge complete" -msgstr "" - -#: ckan/controllers/admin.py:157 -msgid "Action not implemented." -msgstr "" - -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 -#: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 -msgid "Not authorized to see this page" -msgstr "" - -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 -msgid "Access denied" -msgstr "" - -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 -#: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 -msgid "Not found" -msgstr "" - -#: ckan/controllers/api.py:130 -msgid "Bad request" -msgstr "" - -#: ckan/controllers/api.py:164 -#, python-format -msgid "Action name not known: %s" -msgstr "" - -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 -#, python-format -msgid "JSON Error: %s" -msgstr "" - -#: ckan/controllers/api.py:190 -#, python-format -msgid "Bad request data: %s" -msgstr "" - -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:318 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:357 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:389 -msgid "Unable to add package to search index" -msgstr "" - -#: ckan/controllers/api.py:419 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:442 -msgid "Unable to update search index" -msgstr "" - -#: ckan/controllers/api.py:466 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:489 -msgid "No revision specified" -msgstr "" - -#: ckan/controllers/api.py:493 -#, python-format -msgid "There is no revision with id: %s" -msgstr "" - -#: ckan/controllers/api.py:503 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" - -#: ckan/controllers/api.py:513 -#, python-format -msgid "Could not read parameters: %r" -msgstr "" - -#: ckan/controllers/api.py:574 -#, python-format -msgid "Bad search option: %s" -msgstr "" - -#: ckan/controllers/api.py:577 -#, python-format -msgid "Unknown register: %s" -msgstr "" - -#: ckan/controllers/api.py:586 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "" - -#: ckan/controllers/api.py:596 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" - -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 -msgid "Group not found" -msgstr "" - -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 -msgid "Organization not found" -msgstr "" - -#: ckan/controllers/group.py:172 -msgid "Incorrect group type" -msgstr "" - -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 -#, python-format -msgid "Unauthorized to read group %s" -msgstr "" - -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "" - -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 -#: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 -#: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 -#: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 -#: ckan/templates/group/read_base.html:6 -#: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "" - -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "" - -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 -msgid "Formats" -msgstr "" - -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 -msgid "Licenses" -msgstr "" - -#: ckan/controllers/group.py:429 -msgid "Not authorized to perform bulk update" -msgstr "" - -#: ckan/controllers/group.py:446 -msgid "Unauthorized to create a group" -msgstr "" - -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "" - -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 -msgid "Integrity Error" -msgstr "" - -#: ckan/controllers/group.py:586 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "" - -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "" - -#: ckan/controllers/group.py:609 -msgid "Organization has been deleted." -msgstr "" - -#: ckan/controllers/group.py:611 -msgid "Group has been deleted." -msgstr "" - -#: ckan/controllers/group.py:677 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "" - -#: ckan/controllers/group.py:694 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "" - -#: ckan/controllers/group.py:700 -msgid "Group member has been deleted." -msgstr "" - -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 -msgid "Select two revisions before doing the comparison." -msgstr "" - -#: ckan/controllers/group.py:741 -#, python-format -msgid "User %r not authorized to edit %r" -msgstr "" - -#: ckan/controllers/group.py:748 -msgid "CKAN Group Revision History" -msgstr "" - -#: ckan/controllers/group.py:751 -msgid "Recent changes to CKAN Group: " -msgstr "" - -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 -msgid "Log message: " -msgstr "" - -#: ckan/controllers/group.py:798 -msgid "Unauthorized to read group {group_id}" -msgstr "" - -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 -msgid "You are now following {0}" -msgstr "" - -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 -msgid "You are no longer following {0}" -msgstr "" - -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "" - -#: ckan/controllers/home.py:37 -msgid "This site is currently off-line. Database is not initialised." -msgstr "" - -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" - -#: ckan/controllers/home.py:105 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "" - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 -msgid "Dataset not found" -msgstr "" - -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "" - -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 -#, python-format -msgid "Invalid revision format: %r" -msgstr "" - -#: ckan/controllers/package.py:427 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" - -#: ckan/controllers/package.py:472 -msgid "CKAN Dataset Revision History" -msgstr "" - -#: ckan/controllers/package.py:475 -msgid "Recent changes to CKAN Dataset: " -msgstr "" - -#: ckan/controllers/package.py:532 -msgid "Unauthorized to create a package" -msgstr "" - -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 -msgid "Unauthorized to edit this resource" -msgstr "" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 -msgid "Resource not found" -msgstr "" - -#: ckan/controllers/package.py:682 -msgid "Unauthorized to update dataset" -msgstr "" - -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 -msgid "The dataset {id} could not be found." -msgstr "" - -#: ckan/controllers/package.py:688 -msgid "You must add at least one data resource" -msgstr "" - -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 -msgid "Error" -msgstr "" - -#: ckan/controllers/package.py:714 -msgid "Unauthorized to create a resource" -msgstr "" - -#: ckan/controllers/package.py:750 -msgid "Unauthorized to create a resource for this package" -msgstr "" - -#: ckan/controllers/package.py:973 -msgid "Unable to add package to search index." -msgstr "" - -#: ckan/controllers/package.py:1020 -msgid "Unable to update search index." -msgstr "" - -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "" - -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1088 -msgid "Resource has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1093 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "" - -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "" - -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 -msgid "Resource view not found" -msgstr "" - -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "" - -#: ckan/controllers/package.py:1193 -msgid "Resource data not found" -msgstr "" - -#: ckan/controllers/package.py:1201 -msgid "No download is available" -msgstr "" - -#: ckan/controllers/package.py:1523 -msgid "Unauthorized to edit resource" -msgstr "" - -#: ckan/controllers/package.py:1541 -msgid "View not found" -msgstr "" - -#: ckan/controllers/package.py:1543 -#, python-format -msgid "Unauthorized to view View %s" -msgstr "" - -#: ckan/controllers/package.py:1549 -msgid "View Type Not found" -msgstr "" - -#: ckan/controllers/package.py:1609 -msgid "Bad resource view data" -msgstr "" - -#: ckan/controllers/package.py:1618 -#, python-format -msgid "Unauthorized to read resource view %s" -msgstr "" - -#: ckan/controllers/package.py:1621 -msgid "Resource view not supplied" -msgstr "" - -#: ckan/controllers/package.py:1650 -msgid "No preview has been defined." -msgstr "" - -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - -#: ckan/controllers/revision.py:42 -msgid "CKAN Repository Revision History" -msgstr "" - -#: ckan/controllers/revision.py:44 -msgid "Recent changes to the CKAN repository." -msgstr "" - -#: ckan/controllers/revision.py:108 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "" - -#: ckan/controllers/revision.py:188 -msgid "Revision updated" -msgstr "" - -#: ckan/controllers/tag.py:56 -msgid "Other" -msgstr "" - -#: ckan/controllers/tag.py:70 -msgid "Tag not found" -msgstr "" - -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 -msgid "User not found" -msgstr "" - -#: ckan/controllers/user.py:149 -msgid "Unauthorized to register as a user." -msgstr "" - -#: ckan/controllers/user.py:166 -msgid "Unauthorized to create a user" -msgstr "" - -#: ckan/controllers/user.py:197 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" - -#: ckan/controllers/user.py:211 ckan/controllers/user.py:270 -msgid "No user specified" -msgstr "" - -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "" - -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 -msgid "Profile updated" -msgstr "" - -#: ckan/controllers/user.py:232 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "" - -#: ckan/controllers/user.py:238 -msgid "Bad Captcha. Please try again." -msgstr "" - -#: ckan/controllers/user.py:255 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "" - -#: ckan/controllers/user.py:276 -msgid "Unauthorized to edit a user." -msgstr "" - -#: ckan/controllers/user.py:302 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "" - -#: ckan/controllers/user.py:383 -msgid "Login failed. Bad username or password." -msgstr "" - -#: ckan/controllers/user.py:417 -msgid "Unauthorized to request reset password." -msgstr "" - -#: ckan/controllers/user.py:446 -#, python-format -msgid "\"%s\" matched several users" -msgstr "" - -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 -#, python-format -msgid "No such user: %s" -msgstr "" - -#: ckan/controllers/user.py:455 -msgid "Please check your inbox for a reset code." -msgstr "" - -#: ckan/controllers/user.py:459 -#, python-format -msgid "Could not send reset link: %s" -msgstr "" - -#: ckan/controllers/user.py:474 -msgid "Unauthorized to reset password." -msgstr "" - -#: ckan/controllers/user.py:486 -msgid "Invalid reset key. Please try again." -msgstr "" - -#: ckan/controllers/user.py:498 -msgid "Your password has been reset." -msgstr "" - -#: ckan/controllers/user.py:519 -msgid "Your password must be 4 characters or longer." -msgstr "" - -#: ckan/controllers/user.py:522 -msgid "The passwords you entered do not match." -msgstr "" - -#: ckan/controllers/user.py:525 -msgid "You must provide a password" -msgstr "" - -#: ckan/controllers/user.py:589 -msgid "Follow item not found" -msgstr "" - -#: ckan/controllers/user.py:593 -msgid "{0} not found" -msgstr "" - -#: ckan/controllers/user.py:595 -msgid "Unauthorized to read {0} {1}" -msgstr "" - -#: ckan/controllers/user.py:610 -msgid "Everything" -msgstr "" - -#: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 -msgid "Missing Value" -msgstr "" - -#: ckan/controllers/util.py:21 -msgid "Redirecting to external site is not allowed." -msgstr "" - -#: ckan/lib/activity_streams.py:64 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:67 -msgid "{actor} updated the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:70 -msgid "{actor} updated the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:73 -msgid "{actor} updated the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:76 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:79 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:82 -msgid "{actor} updated their profile" -msgstr "" - -#: ckan/lib/activity_streams.py:86 -msgid "" -"{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:89 -msgid "{actor} updated the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:92 -msgid "{actor} deleted the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:95 -msgid "{actor} deleted the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:98 -msgid "{actor} deleted the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:101 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:104 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:108 -msgid "{actor} created the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:111 -msgid "{actor} created the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:114 -msgid "{actor} created the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:117 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:120 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:123 -msgid "{actor} signed up" -msgstr "" - -#: ckan/lib/activity_streams.py:126 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:129 -msgid "{actor} deleted the related item {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:132 -msgid "{actor} started following {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:135 -msgid "{actor} started following {user}" -msgstr "" - -#: ckan/lib/activity_streams.py:138 -msgid "{actor} started following {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:142 -msgid "" -"{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:145 -msgid "{actor} added the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "" - -#: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:17 -msgid "January" -msgstr "" - -#: ckan/lib/formatters.py:21 -msgid "February" -msgstr "" - -#: ckan/lib/formatters.py:25 -msgid "March" -msgstr "" - -#: ckan/lib/formatters.py:29 -msgid "April" -msgstr "" - -#: ckan/lib/formatters.py:33 -msgid "May" -msgstr "" - -#: ckan/lib/formatters.py:37 -msgid "June" -msgstr "" - -#: ckan/lib/formatters.py:41 -msgid "July" -msgstr "" - -#: ckan/lib/formatters.py:45 -msgid "August" -msgstr "" - -#: ckan/lib/formatters.py:49 -msgid "September" -msgstr "" - -#: ckan/lib/formatters.py:53 -msgid "October" -msgstr "" - -#: ckan/lib/formatters.py:57 -msgid "November" -msgstr "" - -#: ckan/lib/formatters.py:61 -msgid "December" -msgstr "" - -#: ckan/lib/formatters.py:109 -msgid "Just now" -msgstr "" - -#: ckan/lib/formatters.py:111 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:114 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:120 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:123 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:125 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" - -#: ckan/lib/formatters.py:142 -msgid "{month} {day}, {year}" -msgstr "" - -#: ckan/lib/formatters.py:158 -msgid "{bytes} bytes" -msgstr "" - -#: ckan/lib/formatters.py:160 -msgid "{kibibytes} KiB" -msgstr "" - -#: ckan/lib/formatters.py:162 -msgid "{mebibytes} MiB" -msgstr "" - -#: ckan/lib/formatters.py:164 -msgid "{gibibytes} GiB" -msgstr "" - -#: ckan/lib/formatters.py:166 -msgid "{tebibytes} TiB" -msgstr "" - -#: ckan/lib/formatters.py:178 -msgid "{n}" -msgstr "" - -#: ckan/lib/formatters.py:180 -msgid "{k}k" -msgstr "" - -#: ckan/lib/formatters.py:182 -msgid "{m}M" -msgstr "" - -#: ckan/lib/formatters.py:184 -msgid "{g}G" -msgstr "" - -#: ckan/lib/formatters.py:186 -msgid "{t}T" -msgstr "" - -#: ckan/lib/formatters.py:188 -msgid "{p}P" -msgstr "" - -#: ckan/lib/formatters.py:190 -msgid "{e}E" -msgstr "" - -#: ckan/lib/formatters.py:192 -msgid "{z}Z" -msgstr "" - -#: ckan/lib/formatters.py:194 -msgid "{y}Y" -msgstr "" - -#: ckan/lib/helpers.py:858 -msgid "Update your avatar at gravatar.com" -msgstr "" - -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 -msgid "Unknown" -msgstr "" - -#: ckan/lib/helpers.py:1117 -msgid "Unnamed resource" -msgstr "" - -#: ckan/lib/helpers.py:1164 -msgid "Created new dataset." -msgstr "" - -#: ckan/lib/helpers.py:1166 -msgid "Edited resources." -msgstr "" - -#: ckan/lib/helpers.py:1168 -msgid "Edited settings." -msgstr "" - -#: ckan/lib/helpers.py:1431 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/helpers.py:1433 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" -msgstr[1] "" - -#: ckan/lib/mailer.py:25 -#, python-format -msgid "Dear %s," -msgstr "" - -#: ckan/lib/mailer.py:38 -#, python-format -msgid "%s <%s>" -msgstr "" - -#: ckan/lib/mailer.py:99 -msgid "No recipient email address available!" -msgstr "" - -#: ckan/lib/mailer.py:104 -msgid "" -"You have requested your password on {site_title} to be reset.\n" -"\n" -"Please click the following link to confirm this request:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:119 -msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" -"\n" -"To accept this invite, please reset your password at:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "" - -#: ckan/lib/mailer.py:151 -msgid "Invite for {site_title}" -msgstr "" - -#: ckan/lib/navl/dictization_functions.py:11 -#: ckan/lib/navl/dictization_functions.py:13 -#: ckan/lib/navl/dictization_functions.py:15 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:19 -#: ckan/lib/navl/dictization_functions.py:21 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 -#: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 -msgid "Missing value" -msgstr "" - -#: ckan/lib/navl/validators.py:64 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "" - -#: ckan/lib/navl/validators.py:116 -msgid "Please enter an integer value" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -msgid "Package resource(s) invalid" -msgstr "" - -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 -msgid "Extras" -msgstr "" - -#: ckan/logic/converters.py:72 ckan/logic/converters.py:87 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" - -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "" - -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Dataset" -msgstr "" - -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Group" -msgstr "" - -#: ckan/logic/converters.py:178 -msgid "Could not parse as valid JSON" -msgstr "" - -#: ckan/logic/validators.py:30 ckan/logic/validators.py:39 -msgid "A organization must be supplied" -msgstr "" - -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 -msgid "Organization does not exist" -msgstr "" - -#: ckan/logic/validators.py:53 -msgid "You cannot add a dataset to this organization" -msgstr "" - -#: ckan/logic/validators.py:93 -msgid "Invalid integer" -msgstr "" - -#: ckan/logic/validators.py:98 -msgid "Must be a natural number" -msgstr "" - -#: ckan/logic/validators.py:104 -msgid "Must be a postive integer" -msgstr "" - -#: ckan/logic/validators.py:122 -msgid "Date format incorrect" -msgstr "" - -#: ckan/logic/validators.py:131 -msgid "No links are allowed in the log_message." -msgstr "" - -#: ckan/logic/validators.py:151 -msgid "Dataset id already exists" -msgstr "" - -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 -msgid "Resource" -msgstr "" - -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 -#: ckan/templates/snippets/related.html:2 -msgid "Related" -msgstr "" - -#: ckan/logic/validators.py:260 -msgid "That group name or ID does not exist." -msgstr "" - -#: ckan/logic/validators.py:274 -msgid "Activity type" -msgstr "" - -#: ckan/logic/validators.py:349 -msgid "Names must be strings" -msgstr "" - -#: ckan/logic/validators.py:353 -msgid "That name cannot be used" -msgstr "" - -#: ckan/logic/validators.py:356 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:361 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" - -#: ckan/logic/validators.py:379 -msgid "That URL is already in use." -msgstr "" - -#: ckan/logic/validators.py:384 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:388 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "" - -#: ckan/logic/validators.py:394 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:412 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "" - -#: ckan/logic/validators.py:428 -msgid "Group name already exists in database" -msgstr "" - -#: ckan/logic/validators.py:434 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:438 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" - -#: ckan/logic/validators.py:446 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" - -#: ckan/logic/validators.py:454 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "" - -#: ckan/logic/validators.py:563 -msgid "User names must be strings" -msgstr "" - -#: ckan/logic/validators.py:579 -msgid "That login name is not available." -msgstr "" - -#: ckan/logic/validators.py:588 -msgid "Please enter both passwords" -msgstr "" - -#: ckan/logic/validators.py:596 -msgid "Passwords must be strings" -msgstr "" - -#: ckan/logic/validators.py:600 -msgid "Your password must be 4 characters or longer" -msgstr "" - -#: ckan/logic/validators.py:608 -msgid "The passwords you entered do not match" -msgstr "" - -#: ckan/logic/validators.py:624 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" - -#: ckan/logic/validators.py:633 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:641 -msgid "That vocabulary name is already in use." -msgstr "" - -#: ckan/logic/validators.py:647 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" - -#: ckan/logic/validators.py:656 -msgid "Tag vocabulary was not found." -msgstr "" - -#: ckan/logic/validators.py:669 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:675 -msgid "No tag name" -msgstr "" - -#: ckan/logic/validators.py:688 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:711 -msgid "Please provide a valid URL" -msgstr "" - -#: ckan/logic/validators.py:725 -msgid "role does not exist." -msgstr "" - -#: ckan/logic/validators.py:754 -msgid "Datasets with no organization can't be private." -msgstr "" - -#: ckan/logic/validators.py:760 -msgid "Not a list" -msgstr "" - -#: ckan/logic/validators.py:763 -msgid "Not a string" -msgstr "" - -#: ckan/logic/validators.py:795 -msgid "This parent would create a loop in the hierarchy" -msgstr "" - -#: ckan/logic/validators.py:805 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" - -#: ckan/logic/validators.py:816 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" - -#: ckan/logic/validators.py:819 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" - -#: ckan/logic/validators.py:833 -msgid "There is a schema field with the same name" -msgstr "" - -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 -#, python-format -msgid "REST API: Create object %s" -msgstr "" - -#: ckan/logic/action/create.py:517 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/create.py:558 -#, python-format -msgid "REST API: Create member object %s" -msgstr "" - -#: ckan/logic/action/create.py:772 -msgid "Trying to create an organization as a group" -msgstr "" - -#: ckan/logic/action/create.py:859 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" - -#: ckan/logic/action/create.py:862 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "" - -#: ckan/logic/action/create.py:867 -msgid "Rating must be an integer value." -msgstr "" - -#: ckan/logic/action/create.py:871 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "" - -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 -msgid "You must be logged in to follow users" -msgstr "" - -#: ckan/logic/action/create.py:1236 -msgid "You cannot follow yourself" -msgstr "" - -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 -msgid "You are already following {0}" -msgstr "" - -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 -msgid "You must be logged in to follow a dataset." -msgstr "" - -#: ckan/logic/action/create.py:1335 -msgid "User {username} does not exist." -msgstr "" - -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 -msgid "You must be logged in to follow a group." -msgstr "" - -#: ckan/logic/action/delete.py:68 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "" - -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 -#, python-format -msgid "REST API: Delete %s" -msgstr "" - -#: ckan/logic/action/delete.py:270 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "" - -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 -msgid "id not in data" -msgstr "" - -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:501 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 -msgid "You must be logged in to unfollow something." -msgstr "" - -#: ckan/logic/action/delete.py:542 -msgid "You are not following {0}." -msgstr "" - -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 -msgid "Resource was not found." -msgstr "" - -#: ckan/logic/action/get.py:1851 -msgid "Do not specify if using \"query\" parameter" -msgstr "" - -#: ckan/logic/action/get.py:1860 -msgid "Must be : pair(s)" -msgstr "" - -#: ckan/logic/action/get.py:1892 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" - -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 -msgid "Item was not found." -msgstr "" - -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 -msgid "Package was not found." -msgstr "" - -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 -#, python-format -msgid "REST API: Update object %s" -msgstr "" - -#: ckan/logic/action/update.py:437 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/update.py:789 -msgid "TaskStatus was not found." -msgstr "" - -#: ckan/logic/action/update.py:1180 -msgid "Organization was not found." -msgstr "" - -#: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 -#, python-format -msgid "User %s not authorized to create packages" -msgstr "" - -#: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "" - -#: ckan/logic/auth/create.py:36 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" - -#: ckan/logic/auth/create.py:58 -msgid "You must be a sysadmin to create a featured related item" -msgstr "" - -#: ckan/logic/auth/create.py:62 -msgid "You must be logged in to add a related item" -msgstr "" - -#: ckan/logic/auth/create.py:77 -msgid "No dataset id provided, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 -#: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 -msgid "No package found for this resource, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:92 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" - -#: ckan/logic/auth/create.py:115 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "" - -#: ckan/logic/auth/create.py:126 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "" - -#: ckan/logic/auth/create.py:136 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "" - -#: ckan/logic/auth/create.py:152 -msgid "User {user} not authorized to create users via the API" -msgstr "" - -#: ckan/logic/auth/create.py:155 -msgid "Not authorized to create users" -msgstr "" - -#: ckan/logic/auth/create.py:198 -msgid "Group was not found." -msgstr "" - -#: ckan/logic/auth/create.py:218 -msgid "Valid API key needed to create a package" -msgstr "" - -#: ckan/logic/auth/create.py:226 -msgid "Valid API key needed to create a group" -msgstr "" - -#: ckan/logic/auth/create.py:246 -#, python-format -msgid "User %s not authorized to add members" -msgstr "" - -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:34 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "" - -#: ckan/logic/auth/delete.py:50 -msgid "Resource view not found, cannot check auth." -msgstr "" - -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 -msgid "Only the owner can delete a related item" -msgstr "" - -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "" - -#: ckan/logic/auth/delete.py:95 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "" - -#: ckan/logic/auth/delete.py:99 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:116 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "" - -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "" - -#: ckan/logic/auth/delete.py:133 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "" - -#: ckan/logic/auth/get.py:97 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "" - -#: ckan/logic/auth/get.py:119 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" - -#: ckan/logic/auth/get.py:141 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "" - -#: ckan/logic/auth/get.py:166 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" - -#: ckan/logic/auth/get.py:234 -msgid "You must be logged in to access your dashboard." -msgstr "" - -#: ckan/logic/auth/update.py:37 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "" - -#: ckan/logic/auth/update.py:69 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "" - -#: ckan/logic/auth/update.py:98 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "" - -#: ckan/logic/auth/update.py:126 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "" - -#: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 -msgid "Only the owner can update a related item" -msgstr "" - -#: ckan/logic/auth/update.py:148 -msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" - -#: ckan/logic/auth/update.py:165 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:182 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:209 -msgid "Have to be logged in to edit user" -msgstr "" - -#: ckan/logic/auth/update.py:217 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "" - -#: ckan/logic/auth/update.py:228 -msgid "User {0} not authorized to update user {1}" -msgstr "" - -#: ckan/logic/auth/update.py:236 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "" - -#: ckan/logic/auth/update.py:245 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "" - -#: ckan/logic/auth/update.py:259 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" - -#: ckan/logic/auth/update.py:281 -msgid "Valid API key needed to edit a package" -msgstr "" - -#: ckan/logic/auth/update.py:291 -msgid "Valid API key needed to edit a group" -msgstr "" - -#: ckan/model/license.py:177 -msgid "License not specified" -msgstr "" - -#: ckan/model/license.py:187 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" - -#: ckan/model/license.py:197 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" - -#: ckan/model/license.py:207 -msgid "Open Data Commons Attribution License" -msgstr "" - -#: ckan/model/license.py:218 -msgid "Creative Commons CCZero" -msgstr "" - -#: ckan/model/license.py:227 -msgid "Creative Commons Attribution" -msgstr "" - -#: ckan/model/license.py:237 -msgid "Creative Commons Attribution Share-Alike" -msgstr "" - -#: ckan/model/license.py:246 -msgid "GNU Free Documentation License" -msgstr "" - -#: ckan/model/license.py:256 -msgid "Other (Open)" -msgstr "" - -#: ckan/model/license.py:266 -msgid "Other (Public Domain)" -msgstr "" - -#: ckan/model/license.py:276 -msgid "Other (Attribution)" -msgstr "" - -#: ckan/model/license.py:288 -msgid "UK Open Government Licence (OGL)" -msgstr "" - -#: ckan/model/license.py:296 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "" - -#: ckan/model/license.py:304 -msgid "Other (Non-Commercial)" -msgstr "" - -#: ckan/model/license.py:312 -msgid "Other (Not Open)" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "depends on %s" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "is a dependency of %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "derives from %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "has derivation %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "links to %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is linked from %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a child of %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a parent of %s" -msgstr "" - -#: ckan/model/package_relationship.py:59 -#, python-format -msgid "has sibling %s" -msgstr "" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:12 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "" - -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:14 -#: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 -msgid "Cancel" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:15 -msgid "Upload" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Link" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:17 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 -msgid "Remove" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 -msgid "Image" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:19 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:20 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:25 -msgid "show more" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:26 -msgid "show less" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 -msgid "URL" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 -msgid "Edit" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "" - -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "" - -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "" - -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "" - -#: ckan/templates/footer.html:16 -msgid "Open Knowledge Foundation" -msgstr "" - -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" - -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "" - -#: ckan/templates/header.html:18 -msgid "View profile" -msgstr "" - -#: ckan/templates/header.html:25 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "" - -#: ckan/templates/header.html:40 -msgid "Log out" -msgstr "" - -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "" - -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "" - -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "" - -#: ckan/templates/header.html:112 -msgid "Search Datasets" -msgstr "" - -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 -#: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 -msgid "Search" -msgstr "" - -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "" - -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "" - -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "" - -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "" - -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "" - -#: ckan/templates/admin/config.html:11 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "" - -#: ckan/templates/admin/config.html:12 -msgid "Reset" -msgstr "" - -#: ckan/templates/admin/config.html:13 -msgid "Update Config" -msgstr "" - -#: ckan/templates/admin/config.html:22 -msgid "CKAN config options" -msgstr "" - -#: ckan/templates/admin/config.html:29 -#, python-format -msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " -"Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" -"

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" -msgstr "" - -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "" - -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "" - -#: ckan/templates/admin/index.html:20 -#, python-format -msgid "" -"

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" -msgstr "" - -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" - -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:12 -#, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "" - -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "" - -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "" - -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "" - -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "" - -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "" - -#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 -#: ckan/templates/organization/admins.html:3 -#: ckan/templates/organization/admins.html:6 -msgid "Administrators" -msgstr "" - -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "" - -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 -msgid "Confirm Delete" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "" - -#: ckan/templates/group/confirm_delete_member.html:11 -#: ckan/templates/organization/confirm_delete_member.html:11 -msgid "Are you sure you want to delete member - {name}?" -msgstr "" - -#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:11 -#: ckan/templates/group/read_base.html:12 -#: ckan/templates/organization/edit_base.html:11 -#: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "" - -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "" - -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 -#: ckan/templates/organization/edit_base.html:24 -#: ckan/templates/organization/members.html:3 -msgid "Members" -msgstr "" - -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "" - -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "" - -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "" - -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "" - -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -msgid "Edit Member" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "" - -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "" - -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "" - -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "" - -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" - -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "" - -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "" - -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:38 -msgid "Delete" -msgstr "" - -#: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 -msgid "Save" -msgstr "" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "" - -#: ckan/templates/group/member_new.html:81 -msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " -"datasets from groups

" -msgstr "" - -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "" - -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 -msgid "Description" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:8 -msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " -msgstr "" - -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "" - -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "" - -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "" - -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "" - -#: ckan/templates/home/snippets/about_text.html:1 -msgid "" -"

CKAN is the world’s leading open-source data portal platform.

" -"

CKAN is a complete out-of-the-box software solution that makes data " -"accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " -"government portals, as well as city and municipal sites in the US, UK, " -"Argentina, Finland and elsewhere.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features " -"overview: http://ckan.org/features/

" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:10 -msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "" - -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" - -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" - -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "dataset" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "datasets" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organization" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organizations" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "group" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "" - -#: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 -msgid "The form contains invalid entries:" -msgstr "" - -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "" - -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "" - -#: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 -msgid "Image URL" -msgstr "" - -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "" - -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "" - -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "" - -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" -msgstr "" - -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "" - -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "" - -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "" - -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "" - -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

Admin: Can add/edit and delete datasets, as well as " -"manage organization members.

Editor: Can add and " -"edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" -msgstr "" - -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "" - -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "" - -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:7 -msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" -msgstr "" - -#: ckan/templates/organization/snippets/helper.html:8 -msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "" - -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "" - -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "" - -#: ckan/templates/package/base_form_page.html:25 -msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " -msgstr "" - -#: ckan/templates/package/confirm_delete.html:11 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" - -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "" - -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "" - -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "" - -#: ckan/templates/package/edit_view.html:3 -#: ckan/templates/package/edit_view.html:4 -#: ckan/templates/package/edit_view.html:8 -#: ckan/templates/package/edit_view.html:12 -msgid "Edit view" -msgstr "" - -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "" - -#: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 -msgid "Update" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "" - -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "" - -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "" - -#: ckan/templates/package/new_view.html:3 -#: ckan/templates/package/new_view.html:4 -#: ckan/templates/package/new_view.html:8 -#: ckan/templates/package/new_view.html:12 -msgid "Add view" -msgstr "" - -#: ckan/templates/package/new_view.html:19 -msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " -msgstr "" - -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "" - -#: ckan/templates/package/read_base.html:38 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" - -#: ckan/templates/package/related_list.html:7 -msgid "Related Media for {dataset}" -msgstr "" - -#: ckan/templates/package/related_list.html:12 -msgid "No related items" -msgstr "" - -#: ckan/templates/package/related_list.html:17 -msgid "Add Related Item" -msgstr "" - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:45 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:49 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "" - -#: ckan/templates/package/resource_data.html:53 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:59 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:71 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:78 -msgid "End of log" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "" - -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "" - -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "" - -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "" - -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "" - -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" - -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" - -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" - -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" - -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "" - -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "" - -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "" - -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "" - -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 -msgid "Created" -msgstr "" - -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "" - -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "" - -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" - -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" - -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "" - -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

This dataset has no data, why not " -"add some?

" -msgstr "" - -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "" - -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "" - -#: ckan/templates/package/search.html:56 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" - -#: ckan/templates/package/search.html:60 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " -msgstr "" - -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:37 -#: ckan/templates/package/snippets/additional_info.html:42 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -msgid "Maintainer" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" - -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 -msgid "Title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:40 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:69 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:73 -msgid "No organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:88 -msgid "Visibility" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:91 -msgid "Public" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:110 -msgid "Active" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:28 -msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -#: ckan/templates/user/new_user_form.html:6 -msgid "Joe Bloggs" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -#: ckan/templates/user/new_user_form.html:7 -msgid "joe@example.com" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "" - -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "File" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:10 -msgid "Embed" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "" - -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "" - -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:30 -#: ckan/templates/package/snippets/stages.html:34 -#: ckan/templates/package/snippets/stages.html:36 -msgid "Add data" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "" - -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "" - -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "" - -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "" - -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "" - -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "" - -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "" - -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "" - -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "" - -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 -msgid "Home" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "" - -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "" - -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" - -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "" - -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "" - -#: ckan/templates/snippets/related.html:15 -msgid "" -"No apps, ideas, news stories or images have been related to this dataset " -"yet." -msgstr "" - -#: ckan/templates/snippets/related.html:18 -msgid "Add Item" -msgstr "" - -#: ckan/templates/snippets/search_form.html:16 -msgid "Submit" -msgstr "" - -#: ckan/templates/snippets/search_form.html:31 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "" - -#: ckan/templates/snippets/search_form.html:77 -msgid "

Please try another search.

" -msgstr "" - -#: ckan/templates/snippets/search_form.html:83 -msgid "" -"

There was an error while searching. Please try " -"again.

" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:15 -msgid "{number} dataset found for \"{query}\"" -msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:21 -msgid "{number} group found for \"{query}\"" -msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:27 -msgid "{number} organization found for \"{query}\"" -msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" -msgstr[1] "" - -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "" - -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 -#: ckan/templates/user/new_user_form.html:7 -#: ckan/templates/user/read_base.html:82 -msgid "Email" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "" - -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "" - -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "" - -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "" - -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "" - -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "" - -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "" - -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "" - -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "" - -#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 -#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 -#: ckan/templates/user/snippets/user_search.html:2 -msgid "Users" -msgstr "" - -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "" - -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" - -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "Full name" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "eg. Joe Bloggs" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:13 -msgid "eg. joe@example.com" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:15 -msgid "A little information about yourself" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:18 -msgid "Subscribe to notification emails" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:27 -msgid "Change password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:29 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:31 -msgid "Confirm Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:37 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:43 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:44 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:48 -msgid "Update Profile" -msgstr "" - -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "" - -#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 -#: ckan/templates/user/login.html:12 -#: ckan/templates/user/snippets/login_form.html:28 -msgid "Login" -msgstr "" - -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "" - -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "" - -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "" - -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "" - -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" - -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "" - -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "" - -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "" - -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "" - -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:19 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:20 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:27 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:31 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:652 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:16 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "Custom Text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" - -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" - -#: ckanext/reclineview/plugin.py:82 -msgid "Data Explorer" -msgstr "" - -#: ckanext/reclineview/plugin.py:106 -msgid "Table" -msgstr "" - -#: ckanext/reclineview/plugin.py:149 -msgid "Graph" -msgstr "" - -#: ckanext/reclineview/plugin.py:207 -msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 -msgid "Total number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 -msgid "Top Rated Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Average rating" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 -msgid "No ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 -msgid "Most Edited Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Number of edits" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 -msgid "Largest Groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Number of datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 -msgid "Top Tags" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "" - -#: ckanext/webpageview/plugin.py:24 -msgid "Website" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" diff --git a/ckan/i18n/th/LC_MESSAGES/ckan.mo b/ckan/i18n/th/LC_MESSAGES/ckan.mo index 19b27752b03..f7c91f7a6cc 100644 Binary files a/ckan/i18n/th/LC_MESSAGES/ckan.mo and b/ckan/i18n/th/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/th/LC_MESSAGES/ckan.po b/ckan/i18n/th/LC_MESSAGES/ckan.po index 3b1dbe1f452..4978780002e 100644 --- a/ckan/i18n/th/LC_MESSAGES/ckan.po +++ b/ckan/i18n/th/LC_MESSAGES/ckan.po @@ -16,252 +16,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:21+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Thai (http://www.transifex.com/projects/p/ckan/language/th/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:23+0000\n" +"Last-Translator: dread \n" +"Language-Team: Thai (http://www.transifex.com/okfn/ckan/language/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "ไม่พบฟังก์ชั่นการอนุมัติ: %s " -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "ผู้ดูแลระบบ" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "บรรณาธิการ" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "สมาชิก" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "ต้องเป็นผู้ดูแลระบบถึงจะจัดการได้" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "ชื่อไซต์" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "รูปแบบ" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "คำอธิบายของไซต์" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "โลโก้ของไซต์" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "เกี่ยวกับ" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "ข้อความบนหน้า \"เกี่ยวกับ\"" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "ข้อความเกริ่นนำ" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "ข้อความบนหน้าหลัก" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "CSS ที่กำหนดเอง" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "ได้แทรก CSS ที่ปรับแต่งได้ลงในส่วนหัวของหน้าไว้แล้ว" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "หน้าหลัก" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "ไม่สามารถถอดถอนแพคเกจ %s เนื่องจากรุ่นที่ %s ใช้แพคเกจ %s ที่ยังไม่ถูกลบ" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "เกิดปัญหาในการถอดถอนรุ่น %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "การถอดถอนเสร็จสมบูรณ์" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "การกระทำนี้ยังไม่ถูกสร้างขึ้น" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "ไม่ได้รับอนุญาตให้ดูหน้านี้" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "ปฏิเสธการเข้าใช้" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "ไม่พบ" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "คำขอไม่เหมาะสม" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "ไม่รู้จักชื่อการกระทำนี้: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON ผิดพลาด: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "ข้อมูลคำขอไม่เหมาะสม: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "ไม่สามารถแสดง entity ประเภทนี้ได้: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "ไม่สามารถอ่าน entity ประเภทนี้ได้: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "ไม่สามารถสร้าง entity ใหม่ ในประเภทนี้ได้: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "ไม่สามารถเพิ่มแพคเกจลงในดัชนีค้นหาได้" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "ไม่สามารถปรับปรุง entity ประเภทนี้ได้: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "ไม่สามารถปรับปรุงดัชนีค้นหา" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "ไม่สามารถลบ entity ประเภทนี้ได้: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "ไม่มีการระบุรุ่น" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "ไม่พบรุ่นตาม id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "ไม่มีข้อความค้นหา ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "ไม่สามารถอ่านพารามิเตอร์: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "ตัวเลือกการค้นหาไม่ถูกต้อง: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "ไม่ทราบการลงทะเบียน: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "ค่า qjson ผิดรูปแบบ: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "พารามิเตอร์ในการร้องขอต้องอยู่ในรูปแบบ json encoded dictionary" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "ไม่พบกลุ่ม" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "ประเภทของกลุ่มไม่ถูกต้อง" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "ไม่ได้รับอนุญาตให้อ่านข้อมูลจากกลุ่ม %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -272,23 +272,23 @@ msgstr "ไม่ได้รับอนุญาตให้อ่านข้ msgid "Organizations" msgstr "องค์กร" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "กลุ่ม" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -296,394 +296,303 @@ msgstr "กลุ่ม" msgid "Tags" msgstr "แท็ค" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "รูปแบบ" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "สัญญาอนุญาต" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "ไม่ได้รับอนุญาตให้ปรับปรุงเป็นกลุ่ม" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "ไม่ได้รับอนุญาตให้สร้างกลุ่ม" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "ผู้ใช้ %r ไม่ได้รับอนุญาตให้แก้ไข %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "ข้อมูลไม่สมบูรณ์" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "ผู้ใช้ %r ไม่มีสิทธิ์ในการแก้ไข \"การอนุญาต\" %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "ไม่ได้รับการอนุญาตให้ลบกลุ่ม %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "องค์กรถูกลบออกแล้ว" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "กลุ่มถูกลบออกแล้ว" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "ไม่ได้รับการอนุญาตให้เพิ่มสมาชิกลงในกลุ่ม %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "ไม่ได้รับการอนุญาตให้ลบสมาชิกในกลุ่ม %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "สมาชิกในกลุ่มได้ถูกลบออกแล้ว" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "ต้องเลือกสองรุ่นเพื่อทำการเปรียบเทียบ" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "ผู้ใช้ %r ไม่ได้รับอนุญาตให้แก้ไข %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "ประวัติการแก้ไขกลุ่มในระบบ CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "การเปลี่ยนแปลงกลุ่มล่าสุดในระบบ CKAN :" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "ข้อความบันทึก:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "ไม่ได้รับอนุญาตให้อ่านกลุ่ม {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "คุณกำลังติดตาม {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "คุณไม่ได้ติดตาม {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "ไม่ได้รับการอนุญาตให้ดูข้อมูลของผู้ติดตาม %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "ขณะนี้เว็บไซต์อยู่ในสถานะออฟไลน์ ฐานข้อมูลไม่ได้ถูกสร้าง" -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "กรุณา ปรับปรุงข้อมูล และเพิ่มที่อยู่อีเมลและชื่อของคุณ เพื่อที่ {site} ใช้อีเมลสำหรับการตั้งค่ารหัสผ่านใหม่" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "กรุณา ปรับปรุงข้อมูลผู้ใช้ และเพิ่มที่อยู่อีเมลของคุณ" -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s ใช้อีเมลสำหรับการตั้งค่ารหัสผ่านใหม่" -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "กรุณา ปรับปรุงข้อมูลผู้ใช้ และใส่ชื่อเต็มของคุณ" - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "พารามิเตอร์ \"{parameter_name}\" ไม่ใช่ตัวเลข" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "ไม่พบชุดข้อมูล" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "ไม่ได้รับการอนุญาตให้อ่านแพคเกจ %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "รูปแบบรุ่นไม่ถูกต้อง: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "ระบบไม่รองรับการดูชุดข้อมูล {package_type} ในรูปแบบ {format} (ไม่พบไฟล์แม่แบบ {file})" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "ประวัติการแก้ไขชุดข้อมูลในระบบ CKAN " -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "การเปลี่ยนแปลงชุดข้อมูลล่าสุดในระบบ CKAN:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "ไม่ได้รับการอนุญาตให้สร้างแพคเกจ" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "ไม่ได้รับการอนุญาตให้แก้ไขทรัพยากร" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "ไม่พบทรัพยากร" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "ไม่ได้รับการอนุญาตให้ปรับปรุงชุดข้อมูล" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "ไม่พบชุดข้อมูล {id} " -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "คุณต้องเพิ่มอย่างน้อยหนึ่งทรัพยากรข้อมูล" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "ผิดพลาด" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "ไม่ได้รับการอนุญาตให้สร้างทรัพยากร" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "ไม่สามารถเพิ่มแพคเกจลงในดัชนีค้นหา" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "ไม่สามารถปรับปรุงดัชนีค้นหา" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "ชุดข้อมูลได้ถูกลบออก" + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "ไม่ได้รับอนุญาตให้ลบแพคเกจ %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "ชุดข้อมูลได้ถูกลบออก" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "ทรัพยากรได้ถูกลบออก" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "ไม่ได้รับการอนุญาตให้ลบทรัพยากร %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "ไม่ได้รับการอนุญาติให้อ่านชุดช้อมูล %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "ไม่ได้รับการอนุญาตให้อ่านทรัพยากร %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "ไม่พบข้อมูลทรัพยากร" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "ไม่มีดาวน์โหลด" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "ไม่ได้กำหนดตัวอย่างไว้" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "ชมมากที่สุด" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "ชมมากที่สุด" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "ชมน้อยที่สุด" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "ใหม่ที่สุด" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "เก่าที่สุด" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "ไม่พบรายการที่เกี่ยวข้องที่ได้ร้องขอ" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "ไม่พบรายการที่เกี่ยวข้อง" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "ไม่ได้รับการอนุญาต" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "ไม่พบแพคเกจ" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "สร้างรายการที่เกี่ยวข้องเสร็จแล้ว" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "รายการที่เกี่ยวข้องปรับปรุงเรียบร้อยแล้ว" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "รายการที่เกี่ยวข้องถูกลบออกแล้ว" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "ไม่อนุญาตให้ลบรายการที่เกี่ยวข้องกับ %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "แอพลิเคชัน" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "แนวคิด" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "บทความข่าว" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "เอกสาร" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "ประกาศ" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "แผนภาพ" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "ประวัติการแก้ไขคลัง CKAN " @@ -709,10 +618,10 @@ msgstr "อื่นๆ" msgid "Tag not found" msgstr "ไม่พบแท็ค" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "ไม่พบผู้ใช้" @@ -732,13 +641,13 @@ msgstr "ไม่อนุญาตให้ลบผู้ใช้ด้วย msgid "No user specified" msgstr "ไม่ได้ระบุผู้ใช้" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "ไม่อนุญาตให้แก้ไขผู้ใช้ %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "ประวัติผู้ใช้ปรับปรุงแล้ว" @@ -762,75 +671,87 @@ msgstr " ผู้ใช้ \"%s\" ลงทะเบียนแล้วแต msgid "Unauthorized to edit a user." msgstr "ไม่อนุญาตให้แก้ไขผู้ใช้" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไข %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "เข้าระบบล้มเหลว ชื่อผู้ใช้หรือรหัสผ่านผิด" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "ไม่ได้รับอนุญาตเพื่อขอตั้งรหัสผ่านใหม่" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" ตรงกับผู้ใช้หลายคน" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "ไม่มีผู้ใช้: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "กรุณาตรวจสอบกล่องจดหมายสำหรับโค้ดรีเซ็ต" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "ไม่สามารถส่งลิงก์รีเซ็ต: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "ไม่อนุญาตให้ตั้งรหัสผ่านใหม่" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "ตั้งค่ารหัสใหม่ไม่ถูกต้อง กรุณาลองอีกครั้ง" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "รหัสผ่านของคุณได้รับการตั้งค่าใหม่" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "รหัสผ่านของคุณต้องมีความยาว 4 ตัวอักษรหรือมากกว่า" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "รหัสผ่านที่คุณกรอกไม่ตรงกัน" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "คุณต้องระบุรหัสผ่าน" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "ไม่พบรายการที่ติดตาม" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "ไม่พบ {0} " -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "ไม่อนุญาตให้อ่าน {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "ทุกอย่าง" @@ -952,7 +873,7 @@ msgstr "{actor} เพิ่ม {related_type} {related_item} ไปยังช msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} เพิ่ม {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -960,9 +881,9 @@ msgid "View" msgstr "มุมมอง" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{n} กิจกรรมใหม่จาก {site_title}" +msgstr[0] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1012,129 +933,129 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "เมื่อกี้" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} นาทีที่ผ่านมา" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} ชั่วโมงที่ผ่านมา" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} วันที่ผ่านมา" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} เดือนที่ผ่านมา " -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "{years} ปีที่ผ่านมา" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "ปรับปรุงภาพประจำตัวคุณที่ gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "ไม่ทราบ" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "ไม่ได้ตั้งชื่อทรัพยากร" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "สร้างชุดข้อมูลใหม่แล้ว" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "แก้ไขทรัพยากรแล้ว" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "แก้ไขการตั้งค่าแล้ว" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "จำนวนผู้ชม: {number} " -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "จำนวนผู้ชมล่าสุด: {number} " @@ -1164,7 +1085,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1189,7 +1110,7 @@ msgstr "คำเชิญสำหรับ {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "ค่าที่ขาดหาย" @@ -1202,7 +1123,7 @@ msgstr "ค่า %(name)s ไม่ถูกต้อง" msgid "Please enter an integer value" msgstr "กรุณาใส่ค่าตัวเลข (จำนวนเต็ม)" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1212,11 +1133,11 @@ msgstr "กรุณาใส่ค่าตัวเลข (จำนวนเ msgid "Resources" msgstr "ทรัพยากร" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "แพคเกจของทรัพยากรไม่ถูกต้อง" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "เพิ่มเติม" @@ -1226,25 +1147,22 @@ msgstr "เพิ่มเติม" msgid "Tag vocabulary \"%s\" does not exist" msgstr "ไม่มีแท็คสำหรับคำศัพท์ \"%s\" " -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "ผู้ใช้" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "ชุดข้อมูล" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "กลุ่ม" @@ -1256,378 +1174,369 @@ msgstr "ไม่สามารถอ่านข้อมูล JSON" msgid "A organization must be supplied" msgstr "ต้องระบุองค์กร" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "คุณไม่สามารถลบชุดข้อมูลจากองค์กรที่มีอยู่ก่อนแล้ว" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "ไม่มีองค์กรนี้" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "คุณไม่สามารถเพิ่มชุดข้อมูลลงในองค์กรนี้" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "ตัวเลขนี้ไม่ถูกต้อง" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "จะต้องเป็นจำนวนธรรมชาติ" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "จะต้องเป็นเลขจำนวนเต็มบวก" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "รูปแบบข้อมูลวันที่ไม่ถูกต้อง" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "ไม่อนุญาตให้มีลิงก์ใน log_message" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "ทรัพยากร" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "ที่เกี่ยวข้องกัน" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "ไม่มีชื่อกลุ่มหรือ ID " -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "ประเภทกิจกรรม" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "ชื่อต้องเป็นตัวอักษรภาษาอังกฤษ" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "ไม่สามารถใช้ชื่อนี้ได้" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "ชื่อต้องมีความยาวไม่เกิน %i ตัวอักษร" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "URL นี้ถูกใช้แล้ว" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "ความยาวของชื่อ \"%s\" น้อยกว่าค่าขั้นต่ำ %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "ความยาวของชื่อ \"%s\" มากกว่าค่าสูงสุดสุด %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "ชื่อเวอร์ชั่นยาวได้ไม่เกิน %i ตัวอักษร" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "กุญแจ \"%s\" ซ้ำ" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "ชื่อกลุ่มมีอยู่แล้วในฐานข้อมูล" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "แท็ค \"%s\" มีความยาวน้อยกว่าขั้นต่ำ %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "ความยาวของแท็ค \"%s\" เกินกว่าค่าสูงสุด %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "ค่าของ tag \"%s\" ต้องเป็นตัวอักษร ตัวเลขหรือตัว _-. เท่านั้น" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "ค่าแท็ค \"%s\" ต้องเป็นอักษรภาษาอังกฤษตัวเล็กเท่านั้น" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "ชื่อผู้ใช้ต้องเป็นตัวอักษร" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "ชื่อล๊อกอินนี้ไม่ว่าง" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "กรุณาป้อนรหัสผ่านสองครั้ง" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "รหัสผ่านต้องเป็นตัวอักษร" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "รหัสผ่านของคุณต้องยาวกว่า 4 ตัว" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "รหัสผ่านที่คุณป้อนไม่ตรงกัน" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "ไม่สามารถแก้ไขได้ กรุณาอย่าใส่ลิงก์ในคำอธิบายของคุณ" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "ชื่อต้องมีความยาวไม่น้อยกว่า %s ตัวอักษร" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "ชื่อคำศัพท์นี้ถูกใช้ไปแล้ว" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "ไม่สามารถเปลี่ยนค่าของกุญแจจาก %s ไปเป็น %s ได้เนื่องจากกุญแจนี้สามารถอ่านได้เท่านั้น" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "ไม่พบแท็คคำศัพท์นี้" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "แท็ค %s ไม่ได้เป็นของคำศัพท์ %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "ไม่มีชื่อแท็ค" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "แท็ค %s เป็นของคำศัพท์ %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "กรุณากรอก URL ที่ถูกต้อง" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "ไม่มีหน้าที่นี้" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "ชุดข้อมูลที่ไม่มีชื่อองค์กรไม่สามารถเป็นส่วนบุคคลได้" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "ไม่ใช่รายการ" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "ไม่ใช่ string" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "หลักนี้จะสร้างวนในลำดับชั้น" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: สร้างวัตถุ %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: สร้างความสัมพันธ์ของแพคเกจ: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: สร้างวัตถุสัมพันธ์ %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "พยายามที่จะสร้างองค์กรเป็นกลุ่ม" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "คุณต้องใส่รหัสแพคเกจหรือชื่อ (พารามิเตอร์ \"package\")" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "คุณต้องทำการจัดอันดับ (พารามิเตอร์ \"rating\")" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "การให้คะแนนต้องเป็นค่าตัวเลข" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "การให้คะแนนต้องมีค่าระหว่าง %i ถึง %i" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "คุณต้องเข้าระบบเพื่อติดตามผู้ใช้" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "คุณไม่สามารถทำการติดตามตัวเองได้" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "คุณติดตามแล้ว {0} คน" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "คุณต้องเข้าระบบเพื่อติดตามชุดข้อมูล" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "ยังไม่มีผู้ใช้ชื่อ {username}" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "คุณต้องเข้าระบบเพื่อติดตามกลุ่ม" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: ลบแพกเกจ: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: ลบ %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: ลบผู้ใช้: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "รหัสผู้ใช้ไม่มีในข้อมูล" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "ไม่สามารถหาคำศัพท์ \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "ไม่เจอแท็ค \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "คุณต้องเข้าระบบเพื่อเลิกติดตาม" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "คุณยังไม่ได้ติดตาม {0}" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "ไม่พบทรัพยากร" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "อย่าระบุถ้าใช้พารามิเตอร์ \"query\"" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "ต้องเป็นคู่ : " -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "resource_search ไม่รับรู้ฟิลด์ \"{field}\" ในการสืบค้นข้อมูลทรัพยากร" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "ไม่รู้จักผู้ใช้:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "ไม่พบรายการ" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "ไม่พบแพคเกจ" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: ปรับปรุงวัตถุ %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: ปรับปรุงความสัมพันธ์ของแพคเกจ: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus ไม่พบความคืบหน้าของงาน" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "ไม่พบองค์กร" @@ -1658,7 +1567,7 @@ msgstr "คุณต้องเข้าสู่ระบบในการเ msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "ไม่พบแพคเกจสำหรับทรัพยากรนี้และไม่สามารถตรวจสอบความถูกต้องได้" @@ -1668,94 +1577,98 @@ msgstr "ไม่พบแพคเกจสำหรับทรัพยาก msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขแพคเกจเหล่านี้" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้สร้างกลุ่ม" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้สร้างองค์กร" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "ผู้ใช้ {user} ไม่ได้รับอนุญาตให้สร้างผู้ใช้ผ่านทาง API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "ไม่ได้รับอนุญาตให้สร้างผู้ใช้" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "ไม่พบกลุ่ม" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "ต้องมี API คีย์ที่ถูกต้องสำหรับการสร้างแพคเกจ" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "ต้องมี API คีย์ที่ถูกต้องสำหรับการสร้างกลุ่ม" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เพิ่มสมาชิก" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขกลุ่ม %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบทรัพยากร %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "เฉพาะเจ้าของเท่านั้นที่สามารถลบรายการที่เกี่ยวข้องได้" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบความสัมพันธ์ %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบกลุ่ม" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบกลุ่ม %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบองค์กร" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบองค์กร %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาติให้ลบสถานะของงาน task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "ไม่ได้รับการอนุญาต" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1776,7 +1689,7 @@ msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตใ msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "คุณจะต้องเข้าระบบเพื่อใช้หน้าปัดของคุณ" @@ -1854,63 +1767,63 @@ msgstr "ต้องการกุญแจของ API ที่ถูกต msgid "Valid API key needed to edit a group" msgstr "ต้องการกุญแจของ API ที่ถูกต้องในการแก้ไขกลุ่ม" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "อื่นๆ (เปิด)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "อื่นๆ (สาธารณสมบัติ)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "อื่นๆ (แสดงที่มา)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "ครีเอทีฟคอมมอนส์ ไม่ใช้เพื่อการค้า (ไม่ระบุรุ่น)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "อื่นๆ (ไม่ใช่เพื่อการค้า)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "อื่นๆ (แบบไม่เปิด)" @@ -2017,8 +1930,6 @@ msgstr "ยืนยัน" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "ยกเลิก" @@ -2043,12 +1954,13 @@ msgstr "ลิงก์" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "ถอดถอน" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "รูปภาพ" @@ -2121,7 +2033,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2135,7 +2046,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "แก้ไข" @@ -2174,33 +2084,41 @@ msgstr "Powered by Site Title: This is the title of this CKAN instance It " @@ -2351,7 +2266,6 @@ msgid "" msgstr "Data API สามารถเข้าถึงได้ด้วยการเรียกใช้ CKAN action API" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr " สร้าง" @@ -2503,7 +2417,7 @@ msgstr "เลือก" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2536,8 +2450,6 @@ msgstr "ฟอร์มกลุ่ม" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "ยืนยันการลบ" @@ -2555,7 +2467,7 @@ msgstr "คุณแน่ใจว่าต้องการลบสมาช #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2700,14 +2612,12 @@ msgstr "คุณแน่ใจว่าต้องการลบสมาช #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "ลบ" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "บันทึก" @@ -2795,7 +2705,6 @@ msgstr "my-group" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "รายละเอียด" @@ -2855,7 +2764,7 @@ msgstr "เปรียบเทียบ" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2955,38 +2864,30 @@ msgstr "" msgid "{0} statistics" msgstr "{0} สถิติ" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "ชุดข้อมูล" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "ชุดข้อมูล" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "องค์กร" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "องค์กร" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "กลุ่ม" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "กลุ่ม" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "รายการที่เกี่ยวข้อง" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "รายการที่เกี่ยวข้อง" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3004,7 +2905,6 @@ msgid "Custom" msgstr "กำหนดเอง" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "แบบฟอร์มมีข้อมูลที่กรอกผิด:" @@ -3017,7 +2917,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL ของรูปภาพ" @@ -3062,7 +2961,7 @@ msgstr "ร่าง" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3096,6 +2995,20 @@ msgstr "ค้นหาองค์กร..." msgid "There are currently no organizations for this site" msgstr "ไม่มีองค์กรสำหรับไซต์นี้" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "ชื่อผู้ใช้" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "ปรับปรุงสมาชิก" @@ -3230,7 +3143,6 @@ msgid "Preview" msgstr "ดูตัวอย่าง" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "ปรับปรุง" @@ -3289,7 +3201,7 @@ msgstr "" msgid "Add" msgstr "เพิ่ม" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3321,28 +3233,32 @@ msgstr "มีปัญหาในการอัพโหลด: " msgid "Error:" msgstr "ข้อผิดพลาด:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "สถานะ" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "ปรับปรุงครั้งล่าสุด" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "ไม่เคย" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "บันทึกการอัพโหลด" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "รายละเอียด" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "จบการบันทึก" @@ -3446,7 +3362,7 @@ msgid "unknown" msgstr "ไม่ทราบ" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "สร้างแล้ว" @@ -3482,6 +3398,10 @@ msgid "" "add some?

" msgstr "

ชุดข้อมูลนี้ไม่มีข้อมูล ลองเพิ่มดูไหม?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "คู่มือ API" @@ -3538,7 +3458,7 @@ msgid "Version" msgstr "หมายเลขรุ่น" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "สภาพ" @@ -3553,7 +3473,6 @@ msgstr "Data API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "หัวข้อ" @@ -3573,30 +3492,30 @@ msgstr "ตัวอย่าง: คำบรรยายอื่น ๆ เ msgid "eg. economy, mental health, government" msgstr "ตัวอย่าง เศรษฐกิจ สุขภาพจิต รัฐบาล" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "สามารถดูข้อมูลเกี่ยวกับประเภทลิขสิทธิ์ต่างได้ที่ opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "องค์กร" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "ไม่มีองค์กร" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "ทัศนวิสัย" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "สาธารณะ" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "ทำงาน" @@ -3723,7 +3642,7 @@ msgstr "สำรวจ" msgid "More information" msgstr "ข้อมูลเพิ่มเติม" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "ฝังตัว" @@ -3809,139 +3728,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "แบบฟอร์มที่เกี่ยวข้อง" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "รายการที่เกี่ยวข้อง" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

สื่อที่เกี่ยวข้องกับชุดข้อมูลนี้ทั้งที่เป็นแอพลิเคชั่น บทความ แผนภาพ หรือแนวคิด

ยกตัวอย่างเช่น สามารถที่จะเป็นแผนภาพ กราฟแท่ง และแอพพลิเคชั่นที่ใช้บางส่วนหรือทั้งหมดของข้อมูลหรือกระทั้งเนือหาข่าวที่เกี่ยวข้องกับชุดข้อมูลนี้

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "คุณแน่ใจว่าจะลบรายการที่เกี่ยวข้อง - {name}" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "แอพพลิเคชั่นและแนวคิด" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

แสดงรายการ%(first)s - %(last)sจาก%(item_count)sรายการที่เกี่ยวข้อง

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)sรายการที่พบ

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "ยังไม่มีแอพลิเคชั่นที่ถูกส่ง" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "แอพพลิเคชั่นนี้คืออะไร" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "นี้คือแอพพลิเคชั่นที่สร้างกับชุดข้อมูลนี้รวมถึงแนวคิดของสิ่งที่ทำขึ้นจากชุดข้อมูลนี้" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "กรองผลลัพธ์" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "กรองจากประเภท" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "ทั้งหมด" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "เรียงโดย" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "ค่าโดยปริยาย" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "แสดงเฉพาะรายการที่แนะนำ" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "ใช้งาน" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "แก้ไขรายการที่เกี่ยวข้อง" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "แก้ไขที่เกี่ยวข้อง" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "แก้ไขรายการที่เกี่ยวข้อง" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "สร้างรายการที่เกี่ยวข้อง" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "สร้างรายการที่เกี่ยวข้อง" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "สร้างรายการที่เกี่ยวข้อง" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "รายการที่เกี่ยวข้องของฉัน" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "ข้อมูลคร่าวๆเกี่ยวกับรายการนี้..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "ประเภท" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "คุณแน่ใจหรือไม่ที่จะลบรายการที่เกี่ยวข้องนี้?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "ไปยัง {related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "ความแตกต่าง" @@ -4029,7 +3815,6 @@ msgid "There are no {facet_type} that match this search" msgstr "ไม่พบ {facet_type} ที่ตรงกับที่ค้นหา" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "หน้าหลัก" @@ -4038,7 +3823,7 @@ msgid "Language" msgstr "ภาษา" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4070,21 +3855,25 @@ msgstr "ไม่พบแอพพลิเคชั่น ความคิ msgid "Add Item" msgstr "เพิ่มรายการ" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "ส่ง" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "เรียงโดย" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "กรองผลลัพธ์" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

กรุณาลองค้นหาใหม่

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4153,7 +3942,7 @@ msgid "Subscribe" msgstr "สมัคร" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4172,10 +3961,6 @@ msgstr "การแก้ไข" msgid "Search Tags" msgstr "ค้นหาแท็ค" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "หน้าปัดข้อมูล" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "รายการข่าว" @@ -4239,36 +4024,27 @@ msgstr "ข้อมูลแนะนำตัวของคุณจะทำ msgid "Change details" msgstr "แก้ไขรายละเอียด" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "ชื่อผู้ใช้" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "ชื่อเต็ม" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "ตัวอย่าง: สมชาย ใจกว้าง" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "ตัวอย่าง somchai@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "ข้อมูลเล็กน้อยเกี่ยวกับตัวคุณ" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "สมัครการแจ้งเตือนทางอีเมล" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" @@ -4501,15 +4277,15 @@ msgstr "ยังไม่ได้อัพโหลด" msgid "DataStore resource not found" msgstr "ไม่พบคลังข้อมูลทรัพยากร" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "ไม่พบทรัพยากร \"{0}\" " @@ -4517,6 +4293,14 @@ msgstr "ไม่พบทรัพยากร \"{0}\" " msgid "User {0} not authorized to update resource {1}" msgstr "ผู้ใช้ {0} ไม่ได้รับอนุญาคให้ปรับปรุงทรัพยากร {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4543,6 +4327,10 @@ msgstr "รหัสประเทศ" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4560,65 +4348,25 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "ลิขสิทธิ์ (c) 2010 ไมเคิล ลิบแมน, http://github.com/mleibman/slickgrid\n\nซึ่งอนุญาตไม่มีเสียค่าใช้จ่ายให้กับบุคคลที่ได้รับใด ๆ สำเนาของซอฟต์แวร์นี้และไฟล์เอกสารที่เกี่ยวข้อง (\"ซอฟต์แวร์\"), การจัดการซอฟต์แวร์โดยไม่มีข้อ จำกัด รวมทั้งไม่จำกัดสิทธิ์ในการใช้คัดลอกดัดแปลงแก้ไขรวมเผยแพร่แจกจ่ายใบอนุญาตและ / หรือขายสำเนาของซอฟแวร์และอนุญาตให้บุคคลซึ่งซอฟแวร์ได้รับการตกแต่งให้ทำเช่นนั้นอาจมีการเงื่อนไขต่อไปนี้:\n\nประกาศลิขสิทธิ์ข้างต้นและประกาศการอนุญาตนี้จะเป็นรวมอยู่ในสำเนาทั้งหมดหรือบางส่วนที่สำคัญของซอฟแวร์\n\nซอฟต์แวร์นี้มีให้ \"ตามสภาพ\" โดยไม่มีการรับประกันใด ๆ โดยชัดแจ้งหรือโดยนัย รวมถึงแต่ไม่จำกัด เฉพาะการรับประกันของสินค้าความเหมาะสมสำหรับวัตถุประสงค์และโดยเฉพาะอย่างยิ่งการไม่ละเมิด ไม่มีเหตุการณ์ใดที่ผู้เขียนหรือเจ้าของลิขสิทธิ์ พ.ศ. รับผิดชอบต่อการเรียกร้องใด ๆ ที่จะเกิดความเสียหายหรือความรับผิดอื่น ๆ ไม่ว่าในการดำเนินการของสัญญาการละเมิดหรืออื่น ๆ ที่เกิดจากการ, หมดอายุการใช้งาน หรือเกี่ยวข้องกับซอฟต์แวร์หรือการใช้หรือการติดต่ออื่น ๆ ในซอฟต์แวร์" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "This compiled version of SlickGrid has been obtained with the Google Closure\nCompiler, using the following command:\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nThere are two other files required for the SlickGrid view to work properly:\n\n * jquery-ui-1.8.16.custom.min.js \n * jquery.event.drag-2.0.min.js\n\nThese are included in the Recline source, but have not been included in the\nbuilt file to make easier to handle compatibility problems.\n\nPlease check SlickGrid license in the included MIT-LICENSE.txt file.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4677,7 +4425,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "จำนวนชุดข้อมูลทั้งหมด" @@ -4705,33 +4452,27 @@ msgstr "ชุดข้อมูลใหม่" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "ชุดข้อมูลที่มีอันดับสูงสุด" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "เรตติ้งโดยเฉลี่ย" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "จำนวนเรตติ้ง" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "ไม่มีเรตติ้ง" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "ชุดข้อมูลที่มีการแก้ไขมากที่สุด" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "จำนวนที่แก้ไข" @@ -4741,12 +4482,10 @@ msgstr "ไม่มีชุดข้อมูลที่ถูกแก้ไ #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "กลุ่มล่าสุด" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "จำนวนของชุดข้อมูล" @@ -4756,7 +4495,6 @@ msgstr "ไม่มีกลุ่ม" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "แท็คที่เป็นที่นิยม" @@ -4771,8 +4509,8 @@ msgstr "จำนวนชุดข้อมูล" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "ผู้ใช้ที่มีชุดข้อมูลมากที่สุด" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4782,42 +4520,16 @@ msgstr "เมนูสถิติ" msgid "Total Number of Datasets" msgstr "จำนวนชุดข้อมูลทั้งหมด" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "สถิติ" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "การปรับรุ่นชุดข้อมูลต่อสัปดาห์" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "ผู้ใช้ที่เป็นเจ้าของชุดข้อมูลมากที่สุด" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "หน้าที่ปรับปรุงล่าสุด" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "ลีดเดอร์บอร์ด - สถิติ" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "ชุดข้อมูล ลีดเดอร์บอร์ด" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "เลือกคุณลักษณะของชุดข้อมูล เพื่อค้นหาว่าหมวดหมู่ไหนมีชุดข้อมูลมากที่สุด เช่น แท็ค กลุ่ม ลิขสิทธิ์ รูปแบบ และประเทศ" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "เลือกพื้นที่" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/tr/LC_MESSAGES/ckan.mo b/ckan/i18n/tr/LC_MESSAGES/ckan.mo index d7c4cca04e0..58bf39da768 100644 Binary files a/ckan/i18n/tr/LC_MESSAGES/ckan.mo and b/ckan/i18n/tr/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/tr/LC_MESSAGES/ckan.po b/ckan/i18n/tr/LC_MESSAGES/ckan.po index aa612aaf559..40bfc799c84 100644 --- a/ckan/i18n/tr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/tr/LC_MESSAGES/ckan.po @@ -3,257 +3,258 @@ # This file is distributed under the same license as the ckan project. # # Translators: -# cagdas!123 , 2013 +# cagdas!123 , 2013,2015 +# sercan erhan , 2015 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:20+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Turkish (http://www.transifex.com/projects/p/ckan/language/tr/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:18+0000\n" +"Last-Translator: dread \n" +"Language-Team: Turkish (http://www.transifex.com/okfn/ckan/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" -msgstr "" +msgstr "Yönetici" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" -msgstr "" +msgstr "İçerik Düzenleyici" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Üye" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" -msgstr "" +msgstr "Yönetmek için sistem yöneticisi olmanıza gerek vardır" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" -msgstr "" +msgstr "Site başlığı" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" -msgstr "" +msgstr "Stil" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" -msgstr "" +msgstr "Site logosu" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Hakkında" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" -msgstr "" +msgstr "Hakkında metni" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" -msgstr "" +msgstr "Karşılama metni" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" -msgstr "" +msgstr "Anasayfa" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" -msgstr "" +msgstr "Bu sayfayı görüntüleme izni yoktur" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" -msgstr "" +msgstr "Erişim engellendi" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Bulunamadı" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" -msgstr "" +msgstr "JSON Hatası: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" -msgstr "" +msgstr "Arama index'i güncellenemiyor" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" -msgstr "" +msgstr "Grup bulunamadı" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Organizasyon bulunamadı" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" -msgstr "" +msgstr "Doğru olmayan grup tipi" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -262,420 +263,329 @@ msgstr "" #: ckan/templates/organization/read_base.html:6 #: ckan/templates/package/base.html:14 msgid "Organizations" -msgstr "" +msgstr "Organizasyonlar" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" -msgstr "" +msgstr "Gruplar" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 #: ckan/templates/tag/index.html:12 msgid "Tags" -msgstr "" +msgstr "Etiketler" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" -msgstr "" +msgstr "Formatlar" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" -msgstr "" +msgstr "Lisanslar" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." -msgstr "" +msgstr "Organizasyon silinmiştir." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." +msgstr "Grup silinmiştir." + +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." msgstr "" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." -msgstr "" +msgstr "Grup üyesi silinmiştir." -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " -msgstr "" +msgstr "Günlük mesajı:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "" -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " -msgstr "" +msgstr "Lütfen profilinizi güncelleyin ve e-posta adresinizi ekleyin." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." -msgstr "" +msgstr "Şifrenizi unutursanız, %s e-posta bilgilerinizi kullanacaktır." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Veri kümesi bulunamadı" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Kaynak bulunamadı" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" -msgstr "" +msgstr "Hata" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Veri kümesi silindi" + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Veri kümesi silindi" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Kaynak silindi." -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "En çok görüntülenen" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "En çok görüntülenen" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Son görüntülenen" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "En yeni" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "En eski" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Fikir" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "" @@ -699,14 +609,14 @@ msgstr "Diğer" #: ckan/controllers/tag.py:70 msgid "Tag not found" -msgstr "" +msgstr "Etiket bulunamadı" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" -msgstr "" +msgstr "Kullanıcı bulunamadı" #: ckan/controllers/user.py:149 msgid "Unauthorized to register as a user." @@ -724,15 +634,15 @@ msgstr "" msgid "No user specified" msgstr "" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" -msgstr "" +msgstr "Profil güncellendi" #: ckan/controllers/user.py:232 #, python-format @@ -741,7 +651,7 @@ msgstr "" #: ckan/controllers/user.py:238 msgid "Bad Captcha. Please try again." -msgstr "" +msgstr "Doğrulama kodu hatalı. Lütfen tekrar deneyin." #: ckan/controllers/user.py:255 #, python-format @@ -754,101 +664,113 @@ msgstr "" msgid "Unauthorized to edit a user." msgstr "" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "" -#: ckan/controllers/user.py:383 -msgid "Login failed. Bad username or password." +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" msgstr "" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 +msgid "Login failed. Bad username or password." +msgstr "Giriş hatası. Kullanıcı adı ya da şifre hatalı." + +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Kullanıcı bulunamadı: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." -msgstr "" +msgstr "Şifre sıfırlama konudunuz için lütfen e-posta kurunuzu kontrol edin." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Şifreniz yenilendi." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." -msgstr "" +msgstr "Şifreniz en az 4 karakter veya daha uzun olmalı." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." -msgstr "" +msgstr "Girmiş olduğunuz şifreler uyuşmamaktadır." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" -msgstr "" +msgstr "Bir şifre belirlemelisiniz." -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" -msgstr "" +msgstr "{0} bulunamadı" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" -msgstr "" +msgstr "Herşey" #: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 msgid "Missing Value" -msgstr "" +msgstr "Eksik Değer" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Başka bir siteye yönlendirmeye izin verilmemektedir." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" +msgstr "{actor}, {dataset} verisetine {tag} etiketini ekledi. " #: ckan/lib/activity_streams.py:67 msgid "{actor} updated the group {group}" -msgstr "" +msgstr "{actor}, {group} grubunu güncelledi." #: ckan/lib/activity_streams.py:70 msgid "{actor} updated the organization {organization}" -msgstr "" +msgstr "{actor}, {organization} organizasyonunu güncelledi." #: ckan/lib/activity_streams.py:73 msgid "{actor} updated the dataset {dataset}" -msgstr "" +msgstr "{actor}, {dataset} verisetini güncelledi." #: ckan/lib/activity_streams.py:76 msgid "{actor} changed the extra {extra} of the dataset {dataset}" @@ -860,7 +782,7 @@ msgstr "" #: ckan/lib/activity_streams.py:82 msgid "{actor} updated their profile" -msgstr "" +msgstr "{actor} profilini güncelledi." #: ckan/lib/activity_streams.py:86 msgid "" @@ -873,7 +795,7 @@ msgstr "" #: ckan/lib/activity_streams.py:92 msgid "{actor} deleted the group {group}" -msgstr "" +msgstr "{actor} , {group} grubunu sildi" #: ckan/lib/activity_streams.py:95 msgid "{actor} deleted the organization {organization}" @@ -893,7 +815,7 @@ msgstr "" #: ckan/lib/activity_streams.py:108 msgid "{actor} created the group {group}" -msgstr "" +msgstr "{actor} , {group} grubunu oluşturdu." #: ckan/lib/activity_streams.py:111 msgid "{actor} created the organization {organization}" @@ -944,7 +866,7 @@ msgstr "" msgid "{actor} added the {related_type} {related_item}" msgstr "" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -952,188 +874,188 @@ msgid "View" msgstr "" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" msgstr[0] "" msgstr[1] "" #: ckan/lib/formatters.py:17 msgid "January" -msgstr "" +msgstr "Ocak" #: ckan/lib/formatters.py:21 msgid "February" -msgstr "" +msgstr "Şubat" #: ckan/lib/formatters.py:25 msgid "March" -msgstr "" +msgstr "Mart" #: ckan/lib/formatters.py:29 msgid "April" -msgstr "" +msgstr "Nisan" #: ckan/lib/formatters.py:33 msgid "May" -msgstr "" +msgstr "Mayıs" #: ckan/lib/formatters.py:37 msgid "June" -msgstr "" +msgstr "Haziran" #: ckan/lib/formatters.py:41 msgid "July" -msgstr "" +msgstr "Temmuz" #: ckan/lib/formatters.py:45 msgid "August" -msgstr "" +msgstr "Ağustos" #: ckan/lib/formatters.py:49 msgid "September" -msgstr "" +msgstr "Eylül" #: ckan/lib/formatters.py:53 msgid "October" -msgstr "" +msgstr "Ekim" #: ckan/lib/formatters.py:57 msgid "November" -msgstr "" +msgstr "Kasım" #: ckan/lib/formatters.py:61 msgid "December" -msgstr "" +msgstr "Aralık" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" -msgstr "" +msgstr "Az önce" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "" msgstr[1] "" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" -msgstr "" +msgstr " {day} {month}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" -msgstr "" +msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" -msgstr "" +msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" -msgstr "" +msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" -msgstr "" +msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" -msgstr "" +msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "" msgstr[1] "" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "" @@ -1142,7 +1064,7 @@ msgstr[1] "" #: ckan/lib/mailer.py:25 #, python-format msgid "Dear %s," -msgstr "" +msgstr "Sayın %s," #: ckan/lib/mailer.py:38 #, python-format @@ -1164,7 +1086,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1189,9 +1111,9 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" -msgstr "" +msgstr "Eksik değer" #: ckan/lib/navl/validators.py:64 #, python-format @@ -1202,7 +1124,7 @@ msgstr "" msgid "Please enter an integer value" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1212,11 +1134,11 @@ msgstr "" msgid "Resources" msgstr "" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "" @@ -1226,27 +1148,24 @@ msgstr "" msgid "Tag vocabulary \"%s\" does not exist" msgstr "" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" -msgstr "" +msgstr "Kullanıcı" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" -msgstr "" +msgstr "Veri seti" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" -msgstr "" +msgstr "Grup" #: ckan/logic/converters.py:178 msgid "Could not parse as valid JSON" @@ -1256,378 +1175,369 @@ msgstr "" msgid "A organization must be supplied" msgstr "" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." -msgstr "" +msgstr "Bu URL zaten kullanımda." -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "" @@ -1658,7 +1568,7 @@ msgstr "" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "" @@ -1668,94 +1578,98 @@ msgstr "" msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1776,7 +1690,7 @@ msgstr "" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "" @@ -1854,63 +1768,63 @@ msgstr "" msgid "Valid API key needed to edit a group" msgstr "" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" -msgstr "" +msgstr "Creative Commons - Alıntı (CC BY)" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" -msgstr "" +msgstr "Creative Commons Alıntı-Lisans Devam (CC BY-SA)" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" -msgstr "" +msgstr "Creative Commons Alıntı-Gayriticari (CC BY-NC)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "" @@ -2017,8 +1931,6 @@ msgstr "" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "" @@ -2043,12 +1955,13 @@ msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "" @@ -2121,7 +2034,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "" @@ -2135,7 +2047,6 @@ msgstr "" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "" @@ -2174,34 +2085,42 @@ msgstr "" msgid "Sysadmin settings" msgstr "" -#: ckan/templates/header.html:18 +#: ckan/templates/header.html:19 msgid "View profile" msgstr "" -#: ckan/templates/header.html:25 +#: ckan/templates/header.html:26 #, python-format msgid "Dashboard (%(num)d new item)" msgid_plural "Dashboard (%(num)d new items)" msgstr[0] "" msgstr[1] "" -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +#: ckan/templates/header.html:29 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:35 ckan/templates/user/dashboard.html:16 msgid "Edit settings" msgstr "" -#: ckan/templates/header.html:40 +#: ckan/templates/header.html:37 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:43 ckan/templates/header.html:45 msgid "Log out" msgstr "" -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 +#: ckan/templates/header.html:56 ckan/templates/user/logout_first.html:15 msgid "Log in" msgstr "" -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +#: ckan/templates/header.html:58 ckan/templates/user/new.html:3 msgid "Register" msgstr "" -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 +#: ckan/templates/header.html:103 ckan/templates/group/read_base.html:17 #: ckan/templates/group/snippets/info.html:36 #: ckan/templates/organization/bulk_process.html:20 #: ckan/templates/organization/edit_base.html:23 @@ -2210,7 +2129,6 @@ msgstr "" #: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 #: ckan/templates/package/search.html:7 #: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 #: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 #: ckan/templates/snippets/organization.html:59 #: ckan/templates/snippets/context/group.html:17 @@ -2220,15 +2138,13 @@ msgstr "" msgid "Datasets" msgstr "" -#: ckan/templates/header.html:112 +#: ckan/templates/header.html:116 msgid "Search Datasets" msgstr "" -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/header.html:117 ckan/templates/home/snippets/search.html:11 #: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 #: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 msgid "Search" msgstr "" @@ -2264,24 +2180,24 @@ msgstr "" msgid "Trash" msgstr "" -#: ckan/templates/admin/config.html:11 +#: ckan/templates/admin/config.html:16 #: ckan/templates/admin/confirm_reset.html:7 msgid "Are you sure you want to reset the config?" msgstr "" -#: ckan/templates/admin/config.html:12 +#: ckan/templates/admin/config.html:17 msgid "Reset" msgstr "" -#: ckan/templates/admin/config.html:13 +#: ckan/templates/admin/config.html:18 msgid "Update Config" msgstr "" -#: ckan/templates/admin/config.html:22 +#: ckan/templates/admin/config.html:27 msgid "CKAN config options" msgstr "" -#: ckan/templates/admin/config.html:29 +#: ckan/templates/admin/config.html:34 #, python-format msgid "" "

Site Title: This is the title of this CKAN instance It " @@ -2352,7 +2268,6 @@ msgid "" msgstr "" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "" @@ -2504,7 +2419,7 @@ msgstr "" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2537,8 +2452,6 @@ msgstr "" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "" @@ -2556,7 +2469,7 @@ msgstr "" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2701,14 +2614,12 @@ msgstr "" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "" @@ -2796,7 +2707,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "" @@ -2857,7 +2767,7 @@ msgstr "" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2957,38 +2867,30 @@ msgstr "" msgid "{0} statistics" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3006,7 +2908,6 @@ msgid "Custom" msgstr "" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "" @@ -3019,7 +2920,6 @@ msgid "http://example.com/my-image.jpg" msgstr "" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "" @@ -3064,7 +2964,7 @@ msgstr "" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3098,6 +2998,20 @@ msgstr "" msgid "There are currently no organizations for this site" msgstr "" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "" @@ -3232,7 +3146,6 @@ msgid "Preview" msgstr "" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "" @@ -3291,7 +3204,7 @@ msgstr "" msgid "Add" msgstr "" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3323,28 +3236,32 @@ msgstr "" msgid "Error:" msgstr "" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "" @@ -3448,7 +3365,7 @@ msgid "unknown" msgstr "" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "" @@ -3484,6 +3401,10 @@ msgid "" "add some?

" msgstr "" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "" @@ -3540,7 +3461,7 @@ msgid "Version" msgstr "" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "" @@ -3555,7 +3476,6 @@ msgstr "" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "" @@ -3575,30 +3495,30 @@ msgstr "" msgid "eg. economy, mental health, government" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "" @@ -3725,7 +3645,7 @@ msgstr "" msgid "More information" msgstr "" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "" @@ -3811,139 +3731,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "" @@ -4031,7 +3818,6 @@ msgid "There are no {facet_type} that match this search" msgstr "" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "" @@ -4040,7 +3826,7 @@ msgid "Language" msgstr "" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4072,21 +3858,25 @@ msgstr "" msgid "Add Item" msgstr "" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4161,7 +3951,7 @@ msgid "Subscribe" msgstr "" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4180,10 +3970,6 @@ msgstr "" msgid "Search Tags" msgstr "" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "" @@ -4247,36 +4033,27 @@ msgstr "" msgid "Change details" msgstr "" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "" @@ -4329,19 +4106,19 @@ msgstr "" #: ckan/templates/user/login.html:30 msgid "Create an Account" -msgstr "" +msgstr "Bir hesap oluşturun" #: ckan/templates/user/login.html:42 msgid "Forgotten your password?" -msgstr "" +msgstr "Şifrenizi mi unuttunuz?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." -msgstr "" +msgstr "Sorun yok, şifrenizi sıfırlamak için şifre kurtarma formumuzu kullanabilirsiniz." #: ckan/templates/user/login.html:47 msgid "Forgot your password?" -msgstr "" +msgstr "Şifrenizi mi unuttunuz?" #: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 msgid "Logged Out" @@ -4353,20 +4130,20 @@ msgstr "" #: ckan/templates/user/logout_first.html:9 msgid "You're already logged in as {user}." -msgstr "" +msgstr "{user} olarak giriş yapmış bulunuyorsunuz." #: ckan/templates/user/logout_first.html:9 msgid "Logout" -msgstr "" +msgstr "Oturumu kapat" #: ckan/templates/user/logout_first.html:13 #: ckan/templates/user/snippets/login_form.html:24 msgid "Remember me" -msgstr "" +msgstr "Beni hatırla" #: ckan/templates/user/logout_first.html:22 msgid "You're already logged in" -msgstr "" +msgstr "Zaten giriş yapmış bulunuyorsunuz" #: ckan/templates/user/logout_first.html:24 msgid "You need to log out before you can log in with another account." @@ -4374,7 +4151,7 @@ msgstr "" #: ckan/templates/user/logout_first.html:25 msgid "Log out now" -msgstr "" +msgstr "Oturumumu şimdi kapat" #: ckan/templates/user/new.html:6 msgid "Registration" @@ -4386,7 +4163,7 @@ msgstr "" #: ckan/templates/user/new.html:26 msgid "Why Sign Up?" -msgstr "" +msgstr "Neden kayıt olmalıyım?" #: ckan/templates/user/new.html:28 msgid "Create datasets, groups and other exciting things" @@ -4394,33 +4171,33 @@ msgstr "" #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "Kullanıcı adı" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" -msgstr "" +msgstr "Ad & Soyad" #: ckan/templates/user/new_user_form.html:17 msgid "Create Account" -msgstr "" +msgstr "Hesap oluşturun" #: ckan/templates/user/perform_reset.html:4 #: ckan/templates/user/perform_reset.html:14 msgid "Reset Your Password" -msgstr "" +msgstr "Şifrenizi sıfırlayın" #: ckan/templates/user/perform_reset.html:7 msgid "Password Reset" -msgstr "" +msgstr "Şifreyi sıfırla" #: ckan/templates/user/perform_reset.html:24 msgid "Update Password" -msgstr "" +msgstr "Şifreyi güncelle" #: ckan/templates/user/perform_reset.html:38 #: ckan/templates/user/request_reset.html:32 msgid "How does this work?" -msgstr "" +msgstr "Nasıl çalışır?" #: ckan/templates/user/perform_reset.html:40 msgid "Simply enter a new password and we'll update your account" @@ -4436,7 +4213,7 @@ msgstr "" #: ckan/templates/user/read_base.html:41 msgid "This user has no biography." -msgstr "" +msgstr "Bu kullanıcının bir özgeçmişi bulunmamaktadır." #: ckan/templates/user/read_base.html:73 msgid "Open ID" @@ -4475,7 +4252,7 @@ msgstr "" #: ckan/templates/user/snippets/followee_dropdown.html:23 msgid "Search list..." -msgstr "" +msgstr "Arama listesi..." #: ckan/templates/user/snippets/followee_dropdown.html:44 msgid "You are not following anything" @@ -4487,7 +4264,7 @@ msgstr "" #: ckan/templates/user/snippets/user_search.html:5 msgid "Search Users" -msgstr "" +msgstr "Kullanıcı arama" #: ckanext/datapusher/helpers.py:19 msgid "Complete" @@ -4509,15 +4286,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4525,6 +4302,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4545,16 +4330,20 @@ msgstr "" #: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 msgid "Country Code" -msgstr "" +msgstr "Ülke kodu" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" -msgstr "" +msgstr "Bu grubun bir açıklaması bulunmamaktadır." #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" @@ -4562,70 +4351,30 @@ msgstr "" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "Resim bağlantısı" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4685,14 +4434,13 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:40 msgid "Date" -msgstr "" +msgstr "Tarih" #: ckanext/stats/templates/ckanext/stats/index.html:18 msgid "Total datasets" @@ -4709,37 +4457,31 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:42 msgid "New datasets" -msgstr "" +msgstr "Yeni veriseti" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "" @@ -4749,14 +4491,12 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" -msgstr "" +msgstr "Veriseti sayısı" #: ckanext/stats/templates/ckanext/stats/index.html:127 msgid "No groups" @@ -4764,74 +4504,47 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:136 msgid "Tag Name" -msgstr "" +msgstr "Etiket ismi" #: ckanext/stats/templates/ckanext/stats/index.html:137 #: ckanext/stats/templates/ckanext/stats/index.html:157 msgid "Number of Datasets" -msgstr "" +msgstr "Veriseti sayısı" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" -msgstr "" +msgstr "İstatistik menüsü" #: ckanext/stats/templates/ckanext/stats/index.html:178 msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" +msgstr "Toplam veriseti sayısı" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Web sitesi" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "Web adresi" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" diff --git a/ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo b/ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo index d739b604698..7826ed7ff82 100644 Binary files a/ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo and b/ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po b/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po index f3e88a794ad..3597fa5d3ce 100644 --- a/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po +++ b/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po @@ -4,258 +4,261 @@ # # Translators: # andy_pit , 2013 +# dread , 2015 # Gromislav , 2013 # vanuan , 2015 +# Zoriana Zaiats, 2015 +# Zoriana Zaiats, 2015 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-02-10 11:10+0000\n" -"Last-Translator: vanuan \n" -"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/projects/p/ckan/language/uk_UA/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-07 15:14+0000\n" +"Last-Translator: Zoriana Zaiats\n" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/okfn/ckan/language/uk_UA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: uk_UA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Функція авторизації не знайдена: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Адмін" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Редактор" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Учасник" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Для виконання цієї дії необхідні права системного адміністратора" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Заголовок сайту" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Стиль" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Лінія тегів сайту" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Логотип тега сайту" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Про проект" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Текст сторінки про проект" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Вступний текст" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Текст на домашній сторінці" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Довільний CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "Код сss, інтегрований в головну сторінку" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Головна сторінка" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Неможливо очистити пакет %s, оскільки версія %s містить невидалені пакети %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "При видаленні версії %s виникла помилка: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Очищення завершено" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Дія не вступила в силу." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Недостатньо прав для перегляду цієї сторінки" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "У доступі відмовлено" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Не знайдено" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Неправильний запит" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Назва дії невідома: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Помилка JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Неправильні дані запиту: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Неможливо перелічити об'єкти цього типу: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Неможливо прочитати об'єкт цього типу: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Неможливо створити новий об'єкт цього типу: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Неможливо додати пакет до пошукового індексу" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Неможливо оновити об'єкт такого типу: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Неможливо оновити пошуковий індекс" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Неможливо видалити об'єкт такого типу: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Версію не вказано" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Не існує версії з id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Відсутність пошуку ('since_id=UUID' або 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Неможливо прочитати параметри: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Неправильний параметр пошуку: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Невідомий регістр: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" -msgstr "" +msgstr "Спотворене значення qjson: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Запит повинен бути у вигляді JSON коду." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Групу не знайдено" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "Організація не знайдена" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Невірний тип групи" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Недостатньо прав для читання групи %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -266,23 +269,23 @@ msgstr "Недостатньо прав для читання групи %s" msgid "Organizations" msgstr "Організації " -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Групи" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -290,394 +293,303 @@ msgstr "Групи" msgid "Tags" msgstr "Теги" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Формати" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Ліцензії" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Немає прав на масове оновлення" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Недостатньо прав для створення групи" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Користувач %r не має достатньо прав для редагування %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Помилка цілісності" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Користувач %r не має достатньо прав для редагування прав користувача %s" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Недостатньо прав для видалення групи %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Організація була видалена" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Група була видалена" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s було видалено." + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Недостатньо прав для додавання учасника у групу %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Недостатньо прав для видалення учасників групи %s" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Учасник групи був видалений" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Виберіть дві версії перед порівнянням" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Користувач %r не має достатньо прав для редагування %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Історія попередніх версій групи" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Останні зміни у групі CKAN:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Log message: " -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Недостатньо прав для читання групи {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Тепер ви підписані на {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Ви більше не підписані на {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Недостатньо прав для перегляду підписників %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Сайт зараз перебуває у режимі офлайн. База даних не ініціалізована." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Будь ласка, оновіть Ваш профіль і вкажіть свою електронну пошту та повне ім'я. {site} використовує Вашу електронну пошту, якщо Вам необхідно скинути свій пароль." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Будь ласка, оновіть Ваш профайл і вкажіть свою електронну пошту." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s використовує Вашу електронну пошту, якщо Вам необхідно скинути свій пароль." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Будь ласка, оновіть Ваш профайл і вкажіть своє повне ім'я." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Параметр \"{parameter_name}\" не є цілим числом" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Набір даних не знайдено" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Недостатньо прав для читання пакету %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Неправильний формат перевірки: %r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." -msgstr "" +msgstr "Перегляд {package_type} наборів даних у форматі {format} не підтримується (файл шаблону {file} не знайдений)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Історія попередніх версій набору даних" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Останні зміни у наборі даних CKAN:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Недостатньо прав для створення пакету" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Недостатньо прав для редагування цього ресурсу" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Ресурс не знайдено" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Недостатньо прав для оновлення набору даних" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." -msgstr "" +msgstr "Набір даних {id} не знайдено" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Ви має додати хоча би один ресурс" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Помилка" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "Недостатньо прав для створення ресурсу" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "Недостатньо прав для створення ресурсу у цьому пакеті" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Неможливо додати пакет до пошукового індексу." -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Неможливо оновити пошуковий індекс." -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Набір даних було видалено" + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Недостатньо прав для видалення пакету %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Набір даних було видалено" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Ресурс був видалений" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Недостатньо прав для видалення ресурсу %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Недостатньо прав для читання набору даних %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "Вид ресурсу не знайдено" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Недостатньо прав для читання ресурсу %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" -msgstr "" +msgstr "Дані ресурсу не знайдено" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Не доступно для завантаження" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Недостатньо прав для редагування ресурсу" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "View не знайдено" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "Недостатньо прав для перегляду View %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "Тип представлення не знайдено" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Погані дані про представлення ресурсу" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Недостатньо прав для читання представлення ресурсу %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "Представлення ресурсу не надано" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Попередній перегляд недоступний." -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Найбільше переглядів" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Найбільше переглядів" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Найменше переглядів" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Найновіші" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Найстаріші" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Запитуваний пов'язаний елемент не знайдений" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Пов'язаного елемента не знайдено" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Не авторизований" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Пакет не знайдено" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Пов'язаний елемент був успішно створений" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Пов'язаний елемент був успішно оновлений" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Пов'язаний елемент був видалений" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Недостатньо прав для видалення пов'язаного елемента %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Application" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Ідея" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "News Article" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Папір" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Пост" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Візуалізація" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Історія змін бази CKAN" @@ -703,16 +615,16 @@ msgstr "Інше" msgid "Tag not found" msgstr "Тег не знайдено" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Користувача не знайдено" #: ckan/controllers/user.py:149 msgid "Unauthorized to register as a user." -msgstr "" +msgstr "Недостатньо прав для реєстрації користувачем" #: ckan/controllers/user.py:166 msgid "Unauthorized to create a user" @@ -720,19 +632,19 @@ msgstr "Недостатньо прав для створення користу #: ckan/controllers/user.py:197 msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" +msgstr "Недостатньо прав для видалення користувача з ідентифікатором \"{user_id}\"." #: ckan/controllers/user.py:211 ckan/controllers/user.py:270 msgid "No user specified" msgstr "Не вказано користувача" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Недостатньо прав для редагування користувача %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Профіль оновлено" @@ -754,77 +666,89 @@ msgstr "Користувач \"%s\" тепер зареєстрований, а #: ckan/controllers/user.py:276 msgid "Unauthorized to edit a user." -msgstr "" +msgstr "Недостатньо прав для редагування користувача." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Користувач %s не має достатньо прав для редагування %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "Введений пароль невірний" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "Старий пароль" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "невірний пароль" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Не вдалось увійти. Неправильний логін або пароль." -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." -msgstr "" +msgstr "Недостатньо прав для запиту скидання паролю." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" відповідає кільком користувачам" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Користувача %s немає " -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Будь ласка перевірте вашу електронну пошту – на неї має прийти лист з кодом відновлення." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Не вдалося надіслати посилання на відновлення: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." -msgstr "" +msgstr "Недостатньо прав для скидання паролю." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Неправильний код відновлення. Попробуйте знову." -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Ваш пароль був відновлений." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Пароль повинен мати не менше 4 символів." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Введені паролі не збігаються." -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Ви повинні ввести пароль" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Підписка не була знайдена" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} не знайдено" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Недостатньо прав для читання {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Все" @@ -834,7 +758,7 @@ msgstr "Значення відсутнє" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Перенаправлення на зовнішні сайти не дозволено." #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" @@ -867,11 +791,11 @@ msgstr "{actor} оновив свій профіль" #: ckan/lib/activity_streams.py:86 msgid "" "{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" +msgstr "{actor} оновив(ла) {related_type} {related_item} у наборі даних {dataset}" #: ckan/lib/activity_streams.py:89 msgid "{actor} updated the {related_type} {related_item}" -msgstr "" +msgstr "{actor} оновив(ла) {related_type} {related_item}" #: ckan/lib/activity_streams.py:92 msgid "{actor} deleted the group {group}" @@ -940,13 +864,13 @@ msgstr "{actor} стежить за {group}" #: ckan/lib/activity_streams.py:142 msgid "" "{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" +msgstr "{actor} додав(ла) {related_type} {related_item} до набору даних {dataset}" #: ckan/lib/activity_streams.py:145 msgid "{actor} added the {related_type} {related_item}" -msgstr "" +msgstr "{actor} додав(ла {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -954,9 +878,9 @@ msgid "View" msgstr "Переглянути" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "1 нова активність від {site_title}" +msgstr[0] "{n} нова активність від {site_title}" msgstr[1] "{n} нові активності від {site_title}" msgstr[2] "{n} нових активностей від {site_title}" @@ -1008,141 +932,141 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Щойно" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} хвилину тому" msgstr[1] "{mins} хвилини тому" msgstr[2] "{mins} хвилин тому" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} годину тому" msgstr[1] "{hours} години тому" msgstr[2] "{hours} годин тому" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} день тому" msgstr[1] "{days} дні тому" msgstr[2] "{days} днів тому" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "{months} місяць назад" +msgstr[1] "{months} місяці назад" +msgstr[2] "{months} місяців назад" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "більше {years} року назад" +msgstr[1] "більше {years} років назад" +msgstr[2] "більше {years} років назад" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{day} {month} {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Оновіть свій аватар на gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Невідомий" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" -msgstr "" +msgstr "Ресурс без назви" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Створити новий набір даних." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Відредаговані ресурси." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Відредаговані налаштування." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} перегляд" msgstr[1] "{number} перегляди" msgstr[2] "{number} переглядів" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} недавній перегляд" @@ -1170,16 +1094,16 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Ви зробили запит на скидання паролю на {site_title}.\n\nБудь ласка, перейдіть по даному посиланні, щоб підтвердити цей запит:\n\n{reset_link}\n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Ви були запрошені на {site_title}. Користувач для вас вже був створений з ім'ям {user_name}. Ви можете змінити його пізніше. \n\nЩоб прийняти це запрошення, будь ласка, змініть пароль на сайті: \n\n{reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1188,7 +1112,7 @@ msgstr "Відновити Ваш пароль." #: ckan/lib/mailer.py:151 msgid "Invite for {site_title}" -msgstr "" +msgstr "Запрошення для {site_title}" #: ckan/lib/navl/dictization_functions.py:11 #: ckan/lib/navl/dictization_functions.py:13 @@ -1199,7 +1123,7 @@ msgstr "" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Значення відсутнє" @@ -1212,7 +1136,7 @@ msgstr "Введене поле %(name)s не очікувалося." msgid "Please enter an integer value" msgstr "Будь ласка, введіть ціле число" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1222,11 +1146,11 @@ msgstr "Будь ласка, введіть ціле число" msgid "Resources" msgstr "Ресурси" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Пакет ресурсу(ів) не дійсний" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Додатки" @@ -1236,408 +1160,396 @@ msgstr "Додатки" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Тег словника \"%s\" не існує" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Користувач" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Набір даних" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Група" #: ckan/logic/converters.py:178 msgid "Could not parse as valid JSON" -msgstr "" +msgstr "Не вдалося проаналізувати як дійсний JSON" #: ckan/logic/validators.py:30 ckan/logic/validators.py:39 msgid "A organization must be supplied" msgstr "Вкажіть організацію" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Організації не існує" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Ви не можете додати набір даних до цієї організації" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Неправильне число" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" -msgstr "" +msgstr "Має бути натуральним числом" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" -msgstr "" +msgstr "Має бути додатнім числом" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Формат дати вказаний неправильно" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Посилання в log_message заборонені." -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "Набір даних з таким id вже існує" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Ресурс" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Пов'язане" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Дане ім'я групи або ID не існує" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Тип процесу" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" -msgstr "" +msgstr "Назви повинні бути рядками" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Це ім'я не може бути використане" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" -msgstr "" +msgstr "Має мати не менше %s символів" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Ім'я має мати не більше %i символів" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" -msgstr "" +msgstr "може містити лише символи нижнього регістру (ascii), а також символи - (дефіс) та _ (підкреслення)" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Дане URL уже зайняте" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Назва \"%s\" є коротшою за встановлений мінімум у %s символи" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Назва \"%s\" є довшою за встановлений максимум у %s символи" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Версія повинна містити максимум %i символів" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Створити дублікат ключа \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Група з такою назвою уже існує" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Тег \"%s\" коротший за мінімальне значення %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Тег \"%s\" довший за максимальне значення %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Тег \"%s\" може містити лише числа, літери, а також символи - (дефіс) та _ (підкреслення)." -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Тег \"%s\" не може містити літер у верхньому регістрі" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" -msgstr "" +msgstr "Імена користувачів мають бути рядками" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Цей логін уже використовується." -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Будь ласка, введіть обидва паролі" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" -msgstr "" +msgstr "Паролі мають бути рядками" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Ваш пароль має мати не менше 4 символів" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Введені паролі не збігаються" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Редагування не дозволено, оскільки текст схожий на спам. Будь ласка, уникайте посилань у описі." -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Ім'я має мати не менше %s символів" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Ця назва словника уже використовується." -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Неможливо змінити значення ключа з %s на %s. Цей ключ доступний лише для читання" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Тег словника не знайдено" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Тег %s не належить словнику %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Немає назви тегу" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Тег %s уже існує в словнику %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Вкажіть дійсний URL" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "роль не існує" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." -msgstr "" +msgstr "Набори даних, що не належать організації, не можуть бути приватними." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" -msgstr "" +msgstr "Не список" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" -msgstr "" +msgstr "Не рядок" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" -msgstr "" +msgstr "Цей батьківський елемент може створити петлю в ієрархії" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" +msgstr "параметри \"filter_fields\" та \"filter_values\" повинні бути однакової довжини" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" +msgstr "параметр \"filter_fields\" необхідний, якщо \"filter_values\" заповнений" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" +msgstr "параметр \"filter_values\" необхідний, якщо \"filter_fields\" заповнений" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" -msgstr "" +msgstr "Вже існує поле схеми з таким же ім’ям" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Створити об'єкт %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Зв'язати пакети: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Створення об'єкту %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Ви пробували створити організацію як групу" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Введіть ідентифікатор пакету або його ім'я (параметр \"пакет\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Задайте рейтинг (параметр \"рейтинг\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Значення рейтингу має бути цілим числом." -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Значення рейтингу має бути між %i та %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Увійдіть, щоб мати можливість стежити за користувачами" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Ви не можете стежити за собою" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Ви уже стежите за {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Увійдіть, щоб мати можливість стежити за набором даних" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." -msgstr "" +msgstr "Користувача {username} не існує." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Увійдіть, щоб мати можливість стежити за групою" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Видалити пакет: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Видалити %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Видалити учасника: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "id немає в даних" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Не вдалося знайти словник \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Не вдалося знайти тег \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Увійдіть, щоб мати можливість відписатись від чогось." -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Ви не стежите за {0}." -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Ресурс не знайдено." -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Не вказуйте, якщо вже використовуєте параметр запиту" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Мають бути пара (пари) :" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Поле \"{field}\" не кваліфікується в resource_search." -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "невідомий користувач:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Елемент не знайдено." -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Пакет не знайдено." -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: Оновити об'єкт %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Обновити зв'язок пакетів: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "TaskStatus не знайдено." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Організацію не знайдено." @@ -1654,7 +1566,7 @@ msgstr "Користувач %s не має достатньо прав для #: ckan/logic/auth/create.py:36 #, python-format msgid "User %s not authorized to add dataset to this organization" -msgstr "" +msgstr "Користувач %s не має достатньо прав для додавання набору даних до цієї організації" #: ckan/logic/auth/create.py:58 msgid "You must be a sysadmin to create a featured related item" @@ -1666,9 +1578,9 @@ msgstr "Увійдіть, щоб мати можливість створюва #: ckan/logic/auth/create.py:77 msgid "No dataset id provided, cannot check auth." -msgstr "" +msgstr "Не надано id ресурсу, неможливо підтвердити достовірність." -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Не знайдено пакетів для цього ресурсу. Неможливо підтвердити достовірність." @@ -1676,96 +1588,100 @@ msgstr "Не знайдено пакетів для цього ресурсу. #: ckan/logic/auth/create.py:92 #, python-format msgid "User %s not authorized to create resources on dataset %s" -msgstr "" +msgstr "Користувач %s не має достатньо прав для створення ресурсів у наборі даних %s" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Користувач %s не має достатньо прав для редагування цих пакетів" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Користувач %s не має достатньо прав для створення груп" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Користувач %s не має достатньо прав для створення організацій" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" -msgstr "" +msgstr "Користувач {user} не має достатньо прав для створення користувачів через API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" -msgstr "" +msgstr "Не має достатньо прав для створення користувачів" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Групу не знайдено" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Для створення пакету необхідний дійсний ключ API" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Для створення групи необхідний дійсний ключ API" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Користувач %s не має достатньо прав для додавання учасників" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Користувач %s не має достатньо прав для редагування групи %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Користувач %s не має достатньо прав для видалення ресурсу %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." -msgstr "" +msgstr "Представлення ресурсу не знайдено, неможливо підтвердити достовірність." -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Тільки власник може видалити цей елемент" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Користувач %s не має достатньо прав для видалення зв'язку %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Користувач %s не має достатньо прав для видалення груп" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Користувач %s не має достатньо прав для видалення групи %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Користувач %s не має достатньо прав для видалення організацій" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Користувач %s не має достатньо прав для видалення організації %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Користувач %s не має достатньо прав для видалення task_status" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Не авторизований" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1784,9 +1700,9 @@ msgstr "Користувач %s не має достатньо прав для #: ckan/logic/auth/get.py:166 #, python-format msgid "User %s not authorized to read group %s" -msgstr "" +msgstr "Користувач %s не має достатньо прав для читання групи %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Увійдіть, щоб отримати доступ до панелі управління." @@ -1830,7 +1746,7 @@ msgstr "Користувач %s не має достатньо прав для #: ckan/logic/auth/update.py:209 msgid "Have to be logged in to edit user" -msgstr "" +msgstr "Ви повинні бути авторизовані для редагування користувача" #: ckan/logic/auth/update.py:217 #, python-format @@ -1839,7 +1755,7 @@ msgstr "Користувач %s не має достатньо прав для #: ckan/logic/auth/update.py:228 msgid "User {0} not authorized to update user {1}" -msgstr "" +msgstr "Користувач {0} не має достатньо прав для оновлення користувача {1}" #: ckan/logic/auth/update.py:236 #, python-format @@ -1864,63 +1780,63 @@ msgstr "Для редагування пакету необхідний дійс msgid "Valid API key needed to edit a group" msgstr "Для редагування групи необхідний дійсний ключ API" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "Ліцензію не вказано" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Інші (Open)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Інші (Public Domain)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Інші (Attribution)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Інші (Non-Commercial)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Інші (Not Open)" @@ -2027,8 +1943,6 @@ msgstr "Підтвердити" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Скасувати" @@ -2048,27 +1962,28 @@ msgstr "Вивантажити" #: ckan/public/base/javascript/modules/image-upload.js:16 msgid "Link" -msgstr "" +msgstr "Посилання" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Видалити" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Зображення" #: ckan/public/base/javascript/modules/image-upload.js:19 msgid "Upload a file on your computer" -msgstr "" +msgstr "Вкласти файл з комп’ютера" #: ckan/public/base/javascript/modules/image-upload.js:20 msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" +msgstr "Додати посилання на адресу в інтернеті (або посилання на API)" #: ckan/public/base/javascript/modules/related-item.js:25 msgid "show more" @@ -2080,17 +1995,17 @@ msgstr "показати менше" #: ckan/public/base/javascript/modules/resource-reorder.js:8 msgid "Reorder resources" -msgstr "" +msgstr "Змінити порядок ресурсів" #: ckan/public/base/javascript/modules/resource-reorder.js:9 #: ckan/public/base/javascript/modules/resource-view-reorder.js:9 msgid "Save order" -msgstr "" +msgstr "Зберегти порядок" #: ckan/public/base/javascript/modules/resource-reorder.js:10 #: ckan/public/base/javascript/modules/resource-view-reorder.js:10 msgid "Saving..." -msgstr "" +msgstr "Збереження..." #: ckan/public/base/javascript/modules/resource-upload-field.js:25 msgid "Upload a file" @@ -2120,18 +2035,17 @@ msgstr "Не вдалось отримати дані з вивантажено msgid "" "You are uploading a file. Are you sure you want to navigate away and stop " "this upload?" -msgstr "" +msgstr "Ви вкладаєте файл. Ви впевнені, що хочете перейти на іншу сторінку і припинити вкладення?" #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Змінити порядок представлення ресурсу" #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "URL" @@ -2145,7 +2059,6 @@ msgstr "URL" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Редагувати" @@ -2184,11 +2097,11 @@ msgstr "Створено за допомогою Site Title: This is the title of this CKAN instance It " @@ -2310,7 +2228,7 @@ msgid "" "target=\"_blank\">reading the documentation.

" "

Homepage: This is for choosing a predefined layout for " "the modules that appear on your homepage.

" -msgstr "" +msgstr "

Назва сайту: Це назва цього примірника CKAN.

Стиль: Виберіть зі списку простих варіацій головної кольорової схеми, щоб швидко отримати працюючу тему.

Логотип сайту: Це логотип, що відображається у заголовку усіх шаблонів примірника CKAN.

Про нас: Цей текст буде відображатись на сторінці з інформацією про сайт цього примірника CKAN.

Вступний текст: \nЦей текст буде відображатись на головній сторінці цього примірника CKAN як привітання для відвідувачів.

Користувацький CSS: Це блок CSS, що з’явиться у <head> тегу кожної сторінки. Якщо ви хочете змінити шаблон більше, ми рекомендуємо читати документацію.

Головна сторінка: Тут можна вибрати наперед визначене розташування модулів, що будуть відображатись на головній сторінці.

" #: ckan/templates/admin/confirm_reset.html:3 #: ckan/templates/admin/confirm_reset.html:10 @@ -2319,7 +2237,7 @@ msgstr "Скинути пароль" #: ckan/templates/admin/index.html:15 msgid "Administer CKAN" -msgstr "" +msgstr "Адмініструвати CKAN" #: ckan/templates/admin/index.html:20 #, python-format @@ -2327,85 +2245,84 @@ msgid "" "

As a sysadmin user you have full control over this CKAN instance. " "Proceed with care!

For guidance on using sysadmin features, see the " "CKAN sysadmin guide

" -msgstr "" +msgstr "

Як користувач з правами системного адміністратора ви маєте повний контроль над цим примірником CKAN. \nПрацюйте обережно!

Для детальніших пояснень роботи з функціональністю CKAN, дивіться документацію для сисадмінів.

" #: ckan/templates/admin/trash.html:20 msgid "Purge" -msgstr "" +msgstr "Чистка" #: ckan/templates/admin/trash.html:32 msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" +msgstr "

Чистка видаляє всі набори даних назавжди і безповоротно.

" #: ckan/templates/ajax_snippets/api_info.html:19 msgid "CKAN Data API" -msgstr "" +msgstr "CKAN Data API" #: ckan/templates/ajax_snippets/api_info.html:23 msgid "Access resource data via a web API with powerful query support" -msgstr "" +msgstr "Доступ до даних ресурсу через веб API із потужною підтримкою запитів" #: ckan/templates/ajax_snippets/api_info.html:24 msgid "" " Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" +msgstr "Більше інформаціі в головні документації по CKAN Data API та DataStore.

" #: ckan/templates/ajax_snippets/api_info.html:33 msgid "Endpoints" -msgstr "" +msgstr "Точки входу" #: ckan/templates/ajax_snippets/api_info.html:37 msgid "" "The Data API can be accessed via the following actions of the CKAN action " "API." -msgstr "" +msgstr "Доступ до API даних можна отримати через такі дії за допомогою API дій CKAN." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Створити" #: ckan/templates/ajax_snippets/api_info.html:46 msgid "Update / Insert" -msgstr "" +msgstr "Оновити / Вставити" #: ckan/templates/ajax_snippets/api_info.html:50 msgid "Query" -msgstr "" +msgstr "Запит" #: ckan/templates/ajax_snippets/api_info.html:54 msgid "Query (via SQL)" -msgstr "" +msgstr "Запит (через SQL)" #: ckan/templates/ajax_snippets/api_info.html:66 msgid "Querying" -msgstr "" +msgstr "Запит" #: ckan/templates/ajax_snippets/api_info.html:70 msgid "Query example (first 5 results)" -msgstr "" +msgstr "Приклад запиту (перші 5 результатів)" #: ckan/templates/ajax_snippets/api_info.html:75 msgid "Query example (results containing 'jones')" -msgstr "" +msgstr "Приклад запиту (результати, що містять 'jones')" #: ckan/templates/ajax_snippets/api_info.html:81 msgid "Query example (via SQL statement)" -msgstr "" +msgstr "Приклад запиту (за допомогою SQL)" #: ckan/templates/ajax_snippets/api_info.html:93 msgid "Example: Javascript" -msgstr "" +msgstr "Приклад: Javascript" #: ckan/templates/ajax_snippets/api_info.html:97 msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" +msgstr "Простий ajax (JSONP) запрос до API даних з використанням jQuery." #: ckan/templates/ajax_snippets/api_info.html:118 msgid "Example: Python" -msgstr "" +msgstr "Приклад: Python" #: ckan/templates/dataviewer/snippets/data_preview.html:9 msgid "This resource can not be previewed at the moment." @@ -2430,7 +2347,7 @@ msgstr "Ваш браузер не підтримує фрейми." #: ckan/templates/dataviewer/snippets/no_preview.html:3 msgid "No preview available." -msgstr "" +msgstr "Попередній перегляд недоступний." #: ckan/templates/dataviewer/snippets/no_preview.html:5 msgid "More details..." @@ -2515,7 +2432,7 @@ msgstr "Select" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2548,8 +2465,6 @@ msgstr "Форма групи" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Підтвердіть видалення" @@ -2567,12 +2482,12 @@ msgstr "Ви впевнені, що хочете видалити учасник #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 msgid "Manage" -msgstr "" +msgstr "Управління" #: ckan/templates/group/edit.html:12 msgid "Edit Group" @@ -2610,7 +2525,7 @@ msgstr "Додати групу" #: ckan/templates/group/index.html:20 msgid "Search groups..." -msgstr "" +msgstr "Пошук груп..." #: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 #: ckan/templates/organization/bulk_process.html:97 @@ -2666,27 +2581,27 @@ msgstr "Додати учасника" #: ckan/templates/group/member_new.html:18 #: ckan/templates/organization/member_new.html:20 msgid "Existing User" -msgstr "" +msgstr "Існуючий користувач" #: ckan/templates/group/member_new.html:21 #: ckan/templates/organization/member_new.html:23 msgid "If you wish to add an existing user, search for their username below." -msgstr "" +msgstr "Якщо ви хочете додати існуючого користувача, знайдіть його ім’я внизу." #: ckan/templates/group/member_new.html:38 #: ckan/templates/organization/member_new.html:40 msgid "or" -msgstr "" +msgstr "або" #: ckan/templates/group/member_new.html:42 #: ckan/templates/organization/member_new.html:44 msgid "New User" -msgstr "" +msgstr "Новий користувач" #: ckan/templates/group/member_new.html:45 #: ckan/templates/organization/member_new.html:47 msgid "If you wish to invite a new user, enter their email address." -msgstr "" +msgstr "Якщо ви хочете запровити нового користувача, введіть їхню адресу електронної пошти тут." #: ckan/templates/group/member_new.html:55 #: ckan/templates/group/members.html:18 @@ -2712,14 +2627,12 @@ msgstr "Ви впевнені, що хочете видалити цього у #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Видалити" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Зберегти" @@ -2733,7 +2646,7 @@ msgid "" "

Admin: Can edit group information, as well as manage " "organization members.

Member: Can add/remove " "datasets from groups

" -msgstr "" +msgstr "

Адміністратор: Може редагувати інформацію про групи, а також управляти членами організації.

Член: Може додавати/видаляти набори даних з груп.

" #: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 #: ckan/templates/group/new.html:7 @@ -2777,7 +2690,7 @@ msgstr "Популярне" #: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 #: ckan/templates/snippets/search_form.html:3 msgid "Search datasets..." -msgstr "" +msgstr "Пошук по наборах даних..." #: ckan/templates/group/snippets/feeds.html:3 msgid "Datasets in group: {group}" @@ -2807,7 +2720,6 @@ msgstr "моя-група" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Опис" @@ -2847,7 +2759,7 @@ msgstr "Переглянути {name}" #: ckan/templates/group/snippets/group_item.html:43 msgid "Remove dataset from this group" -msgstr "" +msgstr "Видалити набір даних з цієї групи" #: ckan/templates/group/snippets/helper.html:4 msgid "What are Groups?" @@ -2859,17 +2771,17 @@ msgid "" "could be to catalogue datasets for a particular project or team, or on a " "particular theme, or as a very simple way to help people find and search " "your own published datasets. " -msgstr "" +msgstr "Ви можете використовувати групи CKAN для створення та управління наборами даних. Використовуйте їх для каталогізування наборів даних для конкретного проекту чи команди, на певну тему або як найпростіший спосіб допомогти людям шукати та знаходити ваші власні опубліковані набори даних." #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 msgid "Compare" -msgstr "" +msgstr "Порівняти" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2911,7 +2823,7 @@ msgstr "Автор" #: ckan/templates/revision/read.html:56 #: ckan/templates/revision/snippets/revisions_list.html:8 msgid "Log Message" -msgstr "" +msgstr "Повідомлення журналу" #: ckan/templates/home/index.html:4 msgid "Welcome" @@ -2937,7 +2849,7 @@ msgid "" "href=\"http://ckan.org/tour/\">http://ckan.org/tour/
Features " "overview: http://ckan.org/features/

" -msgstr "" +msgstr "

CKAN є провідною платформою інформаційних порталів з відкритим кодом.

CKAN це повністю завершене програмне рішення, що дозволяє доступ та використання даних за допомогою інструментів для швидкої публікації, поширення, пошуку та будь-якої іншої роботи з даними (включно зі зберіганням даних та забезпечення потужних API). CKAN корисний тим, хто займається публікацєю даних (національні та регіональні уряди, компанії та організації) та хоче зробити ці дані відкритими та доступними.

CKAN використовується урядами та користувацькими групами по всьому світу та є основою різноманітних офіційних та громадських порталів, включаючи портали для місцевих, національних та міжнародних урядів, таких як британський data.gov.uk та publicdata.eu ЄС, бразильський dados.gov.br, голандський та нідерландський урядові портали, а також міські та муніципальні сайти в США, Великобританії, Аргентині, Фінляндії та ін.

CKAN: http://ckan.org/
CKAN тур: http://ckan.org/tour/
Огляд можливостей: http://ckan.org/features/

" #: ckan/templates/home/snippets/promoted.html:8 msgid "Welcome to CKAN" @@ -2947,7 +2859,7 @@ msgstr "Вітаємо у CKAN" msgid "" "This is a nice introductory paragraph about CKAN or the site in general. We " "don't have any copy to go here yet but soon we will " -msgstr "" +msgstr "Це вступний абзац про CKAN або сайт загалом." #: ckan/templates/home/snippets/promoted.html:19 msgid "This is a featured section" @@ -2955,51 +2867,43 @@ msgstr "Це вибраний розділ" #: ckan/templates/home/snippets/search.html:2 msgid "E.g. environment" -msgstr "" +msgstr "Наприклад, довкілля" #: ckan/templates/home/snippets/search.html:6 msgid "Search data" -msgstr "" +msgstr "Пошук даних" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Популярні теги" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" -msgstr "" +msgstr "{0} статистика" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "набір даних" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "набори даних" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" -msgstr "" +msgstr "організація" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" -msgstr "" +msgstr "організації" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" -msgstr "" +msgstr "група" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" +msgstr "групи" #: ckan/templates/macros/form.html:126 #, python-format @@ -3007,37 +2911,35 @@ msgid "" "You can use Markdown formatting here" -msgstr "" +msgstr "Тут ви можете використовувати Markdown форматування " #: ckan/templates/macros/form.html:265 msgid "This field is required" -msgstr "" +msgstr "Це поле обов’язкове" #: ckan/templates/macros/form.html:265 msgid "Custom" msgstr "Звичайний" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Форма містить неправильні значення:" #: ckan/templates/macros/form.html:395 msgid "Required field" -msgstr "" +msgstr "Обов’язкове поле" #: ckan/templates/macros/form.html:410 msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "URL зображення" #: ckan/templates/macros/form.html:424 msgid "Clear Upload" -msgstr "" +msgstr "Очистити вкладення" #: ckan/templates/organization/base_form_page.html:5 msgid "Organization Form" @@ -3046,15 +2948,15 @@ msgstr "Форма організації" #: ckan/templates/organization/bulk_process.html:3 #: ckan/templates/organization/bulk_process.html:11 msgid "Edit datasets" -msgstr "" +msgstr "Редагувати набори даних" #: ckan/templates/organization/bulk_process.html:6 msgid "Add dataset" -msgstr "" +msgstr "Додати набори даних" #: ckan/templates/organization/bulk_process.html:16 msgid " found for \"{query}\"" -msgstr "" +msgstr "знайдено для \"{query}\"" #: ckan/templates/organization/bulk_process.html:18 msgid "Sorry no datasets found for \"{query}\"" @@ -3062,11 +2964,11 @@ msgstr "Вибачте, не знайдено жодного набору дан #: ckan/templates/organization/bulk_process.html:37 msgid "Make public" -msgstr "" +msgstr "Зробити публічним" #: ckan/templates/organization/bulk_process.html:41 msgid "Make private" -msgstr "" +msgstr "Зробити приватним" #: ckan/templates/organization/bulk_process.html:70 #: ckan/templates/package/read.html:18 @@ -3076,16 +2978,16 @@ msgstr "Чернетка" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 msgid "Private" -msgstr "Особистий" +msgstr "Приватний" #: ckan/templates/organization/bulk_process.html:88 msgid "This organization has no datasets associated to it" -msgstr "" +msgstr "Ця організація не має наборів даних" #: ckan/templates/organization/confirm_delete.html:11 msgid "Are you sure you want to delete organization - {name}?" @@ -3104,15 +3006,29 @@ msgstr "Додати організацію" #: ckan/templates/organization/index.html:20 msgid "Search organizations..." -msgstr "" +msgstr "Пошук організацій..." #: ckan/templates/organization/index.html:29 msgid "There are currently no organizations for this site" msgstr "На даний момент немає організацій для цього сайту" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Ім'я користувача" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "Email адреса" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" -msgstr "" +msgstr "Оновити члена" #: ckan/templates/organization/member_new.html:82 msgid "" @@ -3121,7 +3037,7 @@ msgid "" "edit datasets, but not manage organization members.

" "

Member: Can view the organization's private datasets, " "but not add new datasets.

" -msgstr "" +msgstr "

Адміністратор: Може додавати/редагувати та видаляти набори даних, а також управляти членами організації.

Редактор: Може додавати та редагувати набори даних, але не може управляти членами організації.

Член: Може переглядати приватні набори даних організації, але не може додавати нові.

" #: ckan/templates/organization/new.html:3 #: ckan/templates/organization/new.html:5 @@ -3146,7 +3062,7 @@ msgstr "Додати набір даних" #: ckan/templates/organization/snippets/feeds.html:3 msgid "Datasets in organization: {group}" -msgstr "" +msgstr "Набори даних в організації: {group}" #: ckan/templates/organization/snippets/help.html:4 #: ckan/templates/organization/snippets/helper.html:4 @@ -3161,14 +3077,14 @@ msgid "" "organizations, admins can assign roles and authorise its members, giving " "individual users the right to publish datasets from that particular " "organisation (e.g. Office of National Statistics).

" -msgstr "" +msgstr "

Організації діють як видавничі відділи для наборів даних (наприклад, Міністерство охорони здоров'я). Це означає, що набори даних можуть бути опубліковані і належати відділу, а не окремому користувачеві.

В організаціях адміністратори можуть призначати ролі і надавати права її членам, даючи окремим користувачам право публікувати даних від імені конкретної організації (наприклад, Управління національної статистики).

" #: ckan/templates/organization/snippets/helper.html:8 msgid "" " CKAN Organizations are used to create, manage and publish collections of " "datasets. Users can have different roles within an Organization, depending " "on their level of authorisation to create, edit and publish. " -msgstr "" +msgstr "Організації в CKAN використовуються для створення, управління і публікації колекцій наборів даних. Користувачі можуть мати різні ролі в рамках організації, залежно від рівня їх прав на створення, зміну та публікацію." #: ckan/templates/organization/snippets/organization_form.html:10 msgid "My Organization" @@ -3186,7 +3102,7 @@ msgstr "Коротко про мою організацію..." msgid "" "Are you sure you want to delete this Organization? This will delete all the " "public and private datasets belonging to this organization." -msgstr "" +msgstr "Ви впевнені, що хочете видалити цю Організацію? Це призведе до видалення всіх публічних і приватних наборів даних, що належать до цієї організації." #: ckan/templates/organization/snippets/organization_form.html:64 msgid "Save Organization" @@ -3195,7 +3111,7 @@ msgstr "Зберегти організацію" #: ckan/templates/organization/snippets/organization_item.html:37 #: ckan/templates/organization/snippets/organization_item.html:38 msgid "View {organization_name}" -msgstr "" +msgstr "Переглянути {organization_name}" #: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 #: ckan/templates/package/snippets/new_package_breadcrumb.html:2 @@ -3211,7 +3127,7 @@ msgid "" " A CKAN Dataset is a collection of data resources (such as files), together " "with a description and other information, at a fixed URL. Datasets are what " "users see when searching for data. " -msgstr "" +msgstr "Набір даних CKAN це колекція інформаційних ресурсів (таких як файли), разом з описом та іншою інформацією, що доступні за фіксованою URL-адресою. Набори даних - це те, що користувачі бачать при пошуку даних." #: ckan/templates/package/confirm_delete.html:11 msgid "Are you sure you want to delete dataset - {name}?" @@ -3227,14 +3143,14 @@ msgstr "Переглянути набір даних" #: ckan/templates/package/edit_base.html:20 msgid "Edit metadata" -msgstr "" +msgstr "Редагувати метадані" #: ckan/templates/package/edit_view.html:3 #: ckan/templates/package/edit_view.html:4 #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Редагувати представлення" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3244,21 +3160,20 @@ msgid "Preview" msgstr "Попередній перегляд" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Оновити" #: ckan/templates/package/group_list.html:14 msgid "Associate this group with this dataset" -msgstr "" +msgstr "Пов’язати цю групу з цим набором даних" #: ckan/templates/package/group_list.html:14 msgid "Add to group" -msgstr "" +msgstr "Додати до групи" #: ckan/templates/package/group_list.html:23 msgid "There are no groups associated with this dataset" -msgstr "" +msgstr "Немає груп пов’язаних з цим набором даних" #: ckan/templates/package/new_package_form.html:15 msgid "Update Dataset" @@ -3276,18 +3191,18 @@ msgstr "Додати новий ресурс" #: ckan/templates/package/new_resource_not_draft.html:3 #: ckan/templates/package/new_resource_not_draft.html:4 msgid "Add resource" -msgstr "" +msgstr "Додати ресурс" #: ckan/templates/package/new_resource_not_draft.html:16 msgid "New resource" -msgstr "" +msgstr "Новий ресурс" #: ckan/templates/package/new_view.html:3 #: ckan/templates/package/new_view.html:4 #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Додати представлення" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3296,14 +3211,14 @@ msgid "" "href='http://docs.ckan.org/en/latest/maintaining/data-viewer.html#viewing-" "structured-data-the-data-explorer' target='_blank'>Data Explorer " "documentation. " -msgstr "" +msgstr "Представлення провідника даних можуть бути повільними і ненадійними, якщо розширення DataStore не включене. Для отримання більш детальної інформації, будь ласка, читайте документацію провідника даних." #: ckan/templates/package/new_view.html:29 #: ckan/templates/package/snippets/resource_form.html:82 msgid "Add" msgstr "Додати" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3324,45 +3239,49 @@ msgstr "Додати пов'язаний елемент" #: ckan/templates/package/resource_data.html:12 msgid "Upload to DataStore" -msgstr "" +msgstr "Вкласти до DataStore" #: ckan/templates/package/resource_data.html:19 msgid "Upload error:" -msgstr "" +msgstr "Помилка вкладення" #: ckan/templates/package/resource_data.html:25 #: ckan/templates/package/resource_data.html:27 msgid "Error:" msgstr "Помилка:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "Відстеження помилки:" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" -msgstr "" +msgstr "Статус" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Останнє оновлення" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" -msgstr "" +msgstr "Ніколи" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" -msgstr "" +msgstr "Журнал вкладень" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" -msgstr "" +msgstr "Подробиці" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" -msgstr "" +msgstr "Кінець повідомлення журналу" #: ckan/templates/package/resource_edit_base.html:17 msgid "All resources" -msgstr "" +msgstr "Усі ресурси" #: ckan/templates/package/resource_edit_base.html:19 msgid "View resource" @@ -3371,15 +3290,15 @@ msgstr "Переглянути ресурс" #: ckan/templates/package/resource_edit_base.html:24 #: ckan/templates/package/resource_edit_base.html:32 msgid "Edit resource" -msgstr "" +msgstr "Редагувати ресурс" #: ckan/templates/package/resource_edit_base.html:26 msgid "DataStore" -msgstr "" +msgstr "DataStore" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Представлення" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" @@ -3388,7 +3307,7 @@ msgstr "API Endpoint" #: ckan/templates/package/resource_read.html:41 #: ckan/templates/package/snippets/resource_item.html:48 msgid "Go to resource" -msgstr "" +msgstr "Перейти до ресурсу" #: ckan/templates/package/resource_read.html:43 #: ckan/templates/package/snippets/resource_item.html:45 @@ -3411,30 +3330,30 @@ msgstr "Джерело: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "Для цього ресурсу поки що немає жодного представлення." #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "Бачите не ті представлення, які очікували?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" +msgstr "Ось можливі причини, чому ви не бачите очікуваних представлень:" #: ckan/templates/package/resource_read.html:123 msgid "No view has been created that is suitable for this resource" -msgstr "" +msgstr "Немає представлення, яке б підходило цьому ресурсу" #: ckan/templates/package/resource_read.html:124 msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" +msgstr "Адміністратори сайту можливо не увімкнули плагіни представлення" #: ckan/templates/package/resource_read.html:125 msgid "" "If a view requires the DataStore, the DataStore plugin may not be enabled, " "or the data may not have been pushed to the DataStore, or the DataStore " "hasn't finished processing the data yet" -msgstr "" +msgstr "Якщо представлення вимагає DataStore, можливо плагін DataStore не включений, або дані не переміщені в DataStore, або DataStore ще не встиг завершити обробку даних." #: ckan/templates/package/resource_read.html:147 msgid "Additional Information" @@ -3460,7 +3379,7 @@ msgid "unknown" msgstr "невідомо" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Створено" @@ -3478,15 +3397,15 @@ msgstr "Ліцензія" #: ckan/templates/package/resource_views.html:10 msgid "New view" -msgstr "" +msgstr "Нове представлення" #: ckan/templates/package/resource_views.html:28 msgid "This resource has no views" -msgstr "" +msgstr "Цей ресурс немає представлень" #: ckan/templates/package/resources.html:8 msgid "Add new resource" -msgstr "" +msgstr "Додати новий ресурс" #: ckan/templates/package/resources.html:19 #: ckan/templates/package/snippets/resources_list.html:25 @@ -3494,7 +3413,11 @@ msgstr "" msgid "" "

This dataset has no data, why not " "add some?

" -msgstr "" +msgstr "

Цей набір даних пустий, чому б не додати даних?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" #: ckan/templates/package/search.html:53 msgid "API Docs" @@ -3520,15 +3443,15 @@ msgstr " Ви можете отримати доступ до цього реє #: ckan/templates/package/view_edit_base.html:9 msgid "All views" -msgstr "" +msgstr "Всі представлення" #: ckan/templates/package/view_edit_base.html:12 msgid "View view" -msgstr "" +msgstr "Переглянути представлення" #: ckan/templates/package/view_edit_base.html:37 msgid "View preview" -msgstr "" +msgstr "Переглянути попередній перегляд" #: ckan/templates/package/snippets/additional_info.html:2 #: ckan/templates/snippets/additional_info.html:7 @@ -3552,22 +3475,21 @@ msgid "Version" msgstr "Версія" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" -msgstr "Країна" +msgstr "Стан" #: ckan/templates/package/snippets/additional_info.html:62 msgid "Last Updated" -msgstr "" +msgstr "Останнє оновлення" #: ckan/templates/package/snippets/data_api_button.html:10 msgid "Data API" -msgstr "Дані API" +msgstr "API даних" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Заголовок" @@ -3587,32 +3509,32 @@ msgstr "Деякі корисні замітки про дані" msgid "eg. economy, mental health, government" msgstr "наприклад економіка, психічне здоров'я, уряд" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Визначення ліцензії та додаткова інформація може бути знайдена на opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Організація" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" -msgstr "" +msgstr "Немає організації" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Видимість" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Загальнодоступний" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" -msgstr "" +msgstr "Активний" #: ckan/templates/package/snippets/package_form.html:28 msgid "" @@ -3621,7 +3543,7 @@ msgid "" "agree to release the metadata values that you enter into the form " "under the Open " "Database License." -msgstr "" +msgstr "Ліцензія даних, яку ви вибрали вище стосується лише змісту будь-яких файлів ресурсів, які ви додаєте до цього набору даних. Відправляючи цю форму, ви погоджуєтеся випускати значення метаданих, які ви вводите у форму під ліцензією відкритої бази даних (Open Database License)." #: ckan/templates/package/snippets/package_form.html:39 msgid "Are you sure you want to delete this dataset?" @@ -3633,11 +3555,11 @@ msgstr "Далі: Додати дані" #: ckan/templates/package/snippets/package_metadata_fields.html:6 msgid "http://example.com/dataset.json" -msgstr "" +msgstr "http://example.com/dataset.json" #: ckan/templates/package/snippets/package_metadata_fields.html:10 msgid "1.0" -msgstr "" +msgstr "1.0" #: ckan/templates/package/snippets/package_metadata_fields.html:14 #: ckan/templates/package/snippets/package_metadata_fields.html:20 @@ -3665,7 +3587,7 @@ msgstr "Оновити ресурс" #: ckan/templates/package/snippets/resource_form.html:24 msgid "File" -msgstr "" +msgstr "Файл" #: ckan/templates/package/snippets/resource_form.html:28 msgid "eg. January 2011 Gold Prices" @@ -3681,7 +3603,7 @@ msgstr "наприклад CSV, XML або JSON" #: ckan/templates/package/snippets/resource_form.html:40 msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" +msgstr "Це буде додано автоматично, можете залишити пустим" #: ckan/templates/package/snippets/resource_form.html:51 msgid "eg. 2012-06-05" @@ -3735,33 +3657,33 @@ msgstr "Дослідити" #: ckan/templates/package/snippets/resource_item.html:36 msgid "More information" -msgstr "" +msgstr "Детальніша інформація" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Вставити" #: ckan/templates/package/snippets/resource_view.html:24 msgid "This resource view is not available at the moment." -msgstr "" +msgstr "Це представлення ресурсу недоступне на даний момент." #: ckan/templates/package/snippets/resource_view.html:63 msgid "Embed resource view" -msgstr "" +msgstr "Приєднати представлення ресурсу" #: ckan/templates/package/snippets/resource_view.html:66 msgid "" "You can copy and paste the embed code into a CMS or blog software that " "supports raw HTML" -msgstr "" +msgstr "Ви можете скопіювати і вставити embed код в CMS або програмне забезпечення для блогу, що підтримує чистий HTML" #: ckan/templates/package/snippets/resource_view.html:69 msgid "Width" -msgstr "" +msgstr "Ширина" #: ckan/templates/package/snippets/resource_view.html:72 msgid "Height" -msgstr "" +msgstr "Висота" #: ckan/templates/package/snippets/resource_view.html:75 msgid "Code" @@ -3769,7 +3691,7 @@ msgstr "Код" #: ckan/templates/package/snippets/resource_views_list.html:8 msgid "Resource Preview" -msgstr "" +msgstr "Попередній перегляд ресурсу" #: ckan/templates/package/snippets/resources_list.html:13 msgid "Data and Resources" @@ -3777,7 +3699,7 @@ msgstr "Дані та ресурси" #: ckan/templates/package/snippets/resources_list.html:29 msgid "This dataset has no data" -msgstr "" +msgstr "Цей набір даних пустий" #: ckan/templates/package/snippets/revisions_table.html:24 #, python-format @@ -3797,173 +3719,40 @@ msgstr "Додати дані" #: ckan/templates/package/snippets/view_form.html:8 msgid "eg. My View" -msgstr "" +msgstr "наприклад, Моє представлення" #: ckan/templates/package/snippets/view_form.html:9 msgid "eg. Information about my view" -msgstr "" +msgstr "наприклад, Інформація про моє представлення" #: ckan/templates/package/snippets/view_form_filters.html:16 msgid "Add Filter" -msgstr "" +msgstr "Додати фільтр" #: ckan/templates/package/snippets/view_form_filters.html:28 msgid "Remove Filter" -msgstr "" +msgstr "Видалити фільтр" #: ckan/templates/package/snippets/view_form_filters.html:46 msgid "Filters" -msgstr "" +msgstr "Фільтри" #: ckan/templates/package/snippets/view_help.html:2 msgid "What's a view?" -msgstr "" +msgstr "Що таке представлення?" #: ckan/templates/package/snippets/view_help.html:4 msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Пов'язана форма" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Що таке пов'язаний елемент?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Ви впевнені, що хочете видалити пов'язаний елемент - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Застосунки та Ідеї" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Поки немає жодного застосунку." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Що таке застосунок?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Фільтрувати результати" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Фільтрувати за типом" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Всі" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Сортувати по" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "По замовчуванню" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Показати тільки ознаки предметів" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Застосувати" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Редагувати пов'язаний елемент" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Редагувати пов'язане" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Редагувати пов'язаний елемент" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Створити пов'язаний елемент" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Створити пов'язане" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Створити пов'язаний елемент" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Мій пов'язаний елемент" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Коротко про елемент..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Тип" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Ви впевнені, що хочете видалити цей пов'язаний елемент?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" +msgstr "Представлення це відображення даних ресурсу" #: ckan/templates/revision/diff.html:6 msgid "Differences" -msgstr "" +msgstr "Відмінності" #: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 #: ckan/templates/revision/diff.html:23 msgid "Revision Differences" -msgstr "" +msgstr "Історія відмінностей" #: ckan/templates/revision/diff.html:44 msgid "Difference" @@ -3971,7 +3760,7 @@ msgstr "Різниця" #: ckan/templates/revision/diff.html:54 msgid "No Differences" -msgstr "" +msgstr "Відмінностей немає" #: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 #: ckan/templates/revision/list.html:10 @@ -4008,7 +3797,7 @@ msgstr "Код візуалізації даних" #: ckan/templates/snippets/datapreview_embed_dialog.html:8 msgid "Embed this view by copying this into your webpage:" -msgstr "" +msgstr "Приєднайте це представлення, скопіювавши це у свою сторінку:" #: ckan/templates/snippets/datapreview_embed_dialog.html:10 msgid "Choose width and height in pixels:" @@ -4024,26 +3813,25 @@ msgstr "Висота:" #: ckan/templates/snippets/datapusher_status.html:8 msgid "Datapusher status: {status}." -msgstr "" +msgstr "Статус Datapusher: {status}." #: ckan/templates/snippets/disqus_trackback.html:2 msgid "Trackback URL" -msgstr "" +msgstr "Трекбек URL (зворотні посилання)" #: ckan/templates/snippets/facet_list.html:80 msgid "Show More {facet_type}" -msgstr "" +msgstr "Показати більше {facet_type}" #: ckan/templates/snippets/facet_list.html:83 msgid "Show Only Popular {facet_type}" -msgstr "" +msgstr "Показати лише популярні {facet_type}" #: ckan/templates/snippets/facet_list.html:87 msgid "There are no {facet_type} that match this search" -msgstr "" +msgstr "Немає {facet_type}, які б підходили пошуковому запиту" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Головна" @@ -4052,7 +3840,7 @@ msgid "Language" msgstr "Мова" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4078,27 +3866,31 @@ msgstr "Цей набір даних не має опису" msgid "" "No apps, ideas, news stories or images have been related to this dataset " "yet." -msgstr "" +msgstr "Поки що з цим набором даних не було пов’язано жодних додатків, ідей, новин чи зображень." #: ckan/templates/snippets/related.html:18 msgid "Add Item" msgstr "Додати елемент" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Підтвердити" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Впорядкувати по " -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Фільтрувати результати" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Попробуйте пошукати ще.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4113,7 +3905,7 @@ msgstr[2] "{number} наборів даних знайдено за запито #: ckan/templates/snippets/search_result_text.html:16 msgid "No datasets found for \"{query}\"" -msgstr "" +msgstr "Не було знайдено жодного набору даних для \"{query}\"" #: ckan/templates/snippets/search_result_text.html:17 msgid "{number} dataset found" @@ -4124,7 +3916,7 @@ msgstr[2] "{number} наборів даних знайдено" #: ckan/templates/snippets/search_result_text.html:18 msgid "No datasets found" -msgstr "" +msgstr "Не було знайдено жодного набору даних " #: ckan/templates/snippets/search_result_text.html:21 msgid "{number} group found for \"{query}\"" @@ -4135,7 +3927,7 @@ msgstr[2] "{number} груп знайдено за запитом \"{query}\"" #: ckan/templates/snippets/search_result_text.html:22 msgid "No groups found for \"{query}\"" -msgstr "" +msgstr "Не було знайдено жодної групи для \"{query}\"" #: ckan/templates/snippets/search_result_text.html:23 msgid "{number} group found" @@ -4146,7 +3938,7 @@ msgstr[2] "{number} груп знайдено" #: ckan/templates/snippets/search_result_text.html:24 msgid "No groups found" -msgstr "" +msgstr "Не було знайдено жодної групи" #: ckan/templates/snippets/search_result_text.html:27 msgid "{number} organization found for \"{query}\"" @@ -4157,7 +3949,7 @@ msgstr[2] "{number} організацій знайдено за запитом #: ckan/templates/snippets/search_result_text.html:28 msgid "No organizations found for \"{query}\"" -msgstr "" +msgstr "Не було знайдено жодної організації для \"{query}\"" #: ckan/templates/snippets/search_result_text.html:29 msgid "{number} organization found" @@ -4168,7 +3960,7 @@ msgstr[2] "{number} організацій знайдено" #: ckan/templates/snippets/search_result_text.html:30 msgid "No organizations found" -msgstr "" +msgstr "Не було знайдено жодної організації" #: ckan/templates/snippets/social.html:5 msgid "Social" @@ -4179,7 +3971,7 @@ msgid "Subscribe" msgstr "Підписатися" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4196,11 +3988,7 @@ msgstr "Редагування" #: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Панель приладів" +msgstr "Пошук тегів" #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" @@ -4214,16 +4002,16 @@ msgstr "Мої набори даних" #: ckan/templates/user/dashboard.html:21 #: ckan/templates/user/dashboard_organizations.html:12 msgid "My Organizations" -msgstr "" +msgstr "Мої Організації" #: ckan/templates/user/dashboard.html:22 #: ckan/templates/user/dashboard_groups.html:12 msgid "My Groups" -msgstr "" +msgstr "Мої Групи" #: ckan/templates/user/dashboard.html:39 msgid "Activity from items that I'm following" -msgstr "" +msgstr "Активність елементів, на які я підписаний(а)" #: ckan/templates/user/dashboard_datasets.html:17 #: ckan/templates/user/read.html:14 @@ -4239,11 +4027,11 @@ msgstr "Створити один зараз?" #: ckan/templates/user/dashboard_groups.html:20 msgid "You are not a member of any groups." -msgstr "" +msgstr "Ви не є членом жодної групи." #: ckan/templates/user/dashboard_organizations.html:20 msgid "You are not a member of any organizations." -msgstr "" +msgstr "Ви не є членом жодної організації." #: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 @@ -4259,44 +4047,35 @@ msgstr "Інформація про акаунт" #: ckan/templates/user/edit.html:19 msgid "" " Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" +msgstr "Ваш профіль дозволяє іншим користувачам CKAN дізнатись про те, хто ви і чим займаєтесь." #: ckan/templates/user/edit_user_form.html:7 msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Ім'я користувача" +msgstr "Деталі змін" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Повне ім'я" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "наприклад Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "наприклад joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Коротко про себе" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Отримувати сповіщення на електронну пошту" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" -msgstr "" +msgstr "Змінити пароль" #: ckan/templates/user/edit_user_form.html:29 #: ckan/templates/user/logout_first.html:12 @@ -4312,15 +4091,15 @@ msgstr "Підтвердіть пароль" #: ckan/templates/user/edit_user_form.html:37 msgid "Are you sure you want to delete this User?" -msgstr "" +msgstr "Ви впевнені, що хочете видалити цього користувача?" #: ckan/templates/user/edit_user_form.html:43 msgid "Are you sure you want to regenerate the API key?" -msgstr "" +msgstr "Ви впевнені, що хочете згенерувати новий ключ API?" #: ckan/templates/user/edit_user_form.html:44 msgid "Regenerate API Key" -msgstr "" +msgstr "Перегенерувати ключ API" #: ckan/templates/user/edit_user_form.html:48 msgid "Update Profile" @@ -4351,7 +4130,7 @@ msgstr "Створити акаунт" #: ckan/templates/user/login.html:42 msgid "Forgotten your password?" -msgstr "" +msgstr "Забули свій пароль?" #: ckan/templates/user/login.html:44 msgid "No problem, use our password recovery form to reset it." @@ -4412,7 +4191,7 @@ msgstr "Щоб мати можливість створювати набори #: ckan/templates/user/new_user_form.html:5 msgid "username" -msgstr "" +msgstr "ім'я користувача" #: ckan/templates/user/new_user_form.html:6 msgid "Full Name" @@ -4474,11 +4253,11 @@ msgstr "Ключ API" #: ckan/templates/user/request_reset.html:6 msgid "Password reset" -msgstr "" +msgstr "Скидання пароля" #: ckan/templates/user/request_reset.html:19 msgid "Request reset" -msgstr "" +msgstr "Подати запит на скидання" #: ckan/templates/user/request_reset.html:34 msgid "" @@ -4509,33 +4288,33 @@ msgstr "Шукати користувача" #: ckanext/datapusher/helpers.py:19 msgid "Complete" -msgstr "" +msgstr "Завершено" #: ckanext/datapusher/helpers.py:20 msgid "Pending" -msgstr "" +msgstr "Обробка" #: ckanext/datapusher/helpers.py:21 msgid "Submitting" -msgstr "" +msgstr "Підтведження" #: ckanext/datapusher/helpers.py:27 msgid "Not Uploaded Yet" -msgstr "" +msgstr "Ще не вкладено" #: ckanext/datastore/controller.py:31 msgid "DataStore resource not found" -msgstr "" +msgstr "Ресурс DataStore не знайдено" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." -msgstr "" +msgstr "Дані були недійсними (наприклад, числове значення завелике або вставлене у текстове поле)" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Ресурс \"{0}\" не знайдено." @@ -4543,13 +4322,21 @@ msgstr "Ресурс \"{0}\" не знайдено." msgid "User {0} not authorized to update resource {1}" msgstr "Користувач {0} не має достатньо прав для оновлення ресурсу {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Наборів даних на сторінку" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Тестові налаштування" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" -msgstr "" +msgstr "Користувацьке поле (по зростанню)" #: ckanext/example_idatasetform/templates/package/search.html:17 msgid "Custom Field Descending" -msgstr "" +msgstr "Користувацьке поле (по спаданню)" #: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 #: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 @@ -4567,7 +4354,11 @@ msgstr "Код країни" #: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 msgid "custom resource text" -msgstr "" +msgstr "користувацький текст ресурсу" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Це неперекладений рядок" #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 @@ -4576,134 +4367,93 @@ msgstr "Ця група не має опису" #: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 msgid "CKAN's data previewing tool has many powerful features" -msgstr "" +msgstr "Інструмент CKAN для попереднього перегляду є потужним і багатофункціональним" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "Image url" -msgstr "" +msgstr "URL-адреса зображення" #: ckanext/imageview/theme/templates/image_form.html:3 msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" +msgstr "наприклад, http://example.com/image.jpg (якщо пусто, використовується адреса ресурсу)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" -msgstr "" +msgstr "Провідник даних" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" -msgstr "" +msgstr "Таблиця" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" -msgstr "" +msgstr "Графік" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" +msgstr "Карта" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "помилка при завантаженні представлення" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "Row offset" -msgstr "" +msgstr "Зміщення ряду" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 msgid "eg: 0" -msgstr "" +msgstr "наприклад, 0" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "Number of rows" -msgstr "" +msgstr "Кількість рядів" #: ckanext/reclineview/theme/templates/recline_graph_form.html:4 #: ckanext/reclineview/theme/templates/recline_map_form.html:4 msgid "eg: 100" -msgstr "" +msgstr "наприклад: 100" #: ckanext/reclineview/theme/templates/recline_graph_form.html:6 msgid "Graph type" -msgstr "" +msgstr "Тип графіка" #: ckanext/reclineview/theme/templates/recline_graph_form.html:7 msgid "Group (Axis 1)" -msgstr "" +msgstr "Група (Вісь 1)" #: ckanext/reclineview/theme/templates/recline_graph_form.html:8 msgid "Series (Axis 2)" -msgstr "" +msgstr "Серії (Вісь 2)" #: ckanext/reclineview/theme/templates/recline_map_form.html:6 msgid "Field type" -msgstr "" +msgstr "Тип поля" #: ckanext/reclineview/theme/templates/recline_map_form.html:7 msgid "Latitude field" -msgstr "" +msgstr "Поле широти" #: ckanext/reclineview/theme/templates/recline_map_form.html:8 msgid "Longitude field" -msgstr "" +msgstr "Поле довготи" #: ckanext/reclineview/theme/templates/recline_map_form.html:9 msgid "GeoJSON field" -msgstr "" +msgstr "Поле GeoJSON" #: ckanext/reclineview/theme/templates/recline_map_form.html:10 msgid "Auto zoom to features" -msgstr "" +msgstr "Автоматичне збільшення до можливостей" #: ckanext/reclineview/theme/templates/recline_map_form.html:11 msgid "Cluster markers" -msgstr "" +msgstr "Кластерні маркери" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Всього наборів даних" @@ -4719,11 +4469,11 @@ msgstr "Всього наборів даних" #: ckanext/stats/templates/ckanext/stats/index.html:33 #: ckanext/stats/templates/ckanext/stats/index.html:179 msgid "Dataset Revisions per Week" -msgstr "" +msgstr "Версії набору даних за тиждень" #: ckanext/stats/templates/ckanext/stats/index.html:41 msgid "All dataset revisions" -msgstr "" +msgstr "Усі версії набору даних" #: ckanext/stats/templates/ckanext/stats/index.html:42 msgid "New datasets" @@ -4731,48 +4481,40 @@ msgstr "Нові набори даних" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Найрейтинговіші набори даних" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Середня оцінка" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Кількість оцінок" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" -msgstr "" +msgstr "Немає оцінок" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Найчастіше редаговані набори даних" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Кількість редагувань" #: ckanext/stats/templates/ckanext/stats/index.html:103 msgid "No edited datasets" -msgstr "" +msgstr "Немає редагованих наборів даних" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Найбільші групи" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Кількість наборів даних" @@ -4782,7 +4524,6 @@ msgstr "Немає груп" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Найпопулярніші теги" @@ -4797,8 +4538,8 @@ msgstr "Кількість наборів даних" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Користувачі з найбільшою кількістю наборів даних" +msgid "Users Creating Most Datasets" +msgstr "Користувачі, що створили найбільшу кількість наборів даних" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4808,49 +4549,23 @@ msgstr "Меню статистики" msgid "Total Number of Datasets" msgstr "Всього наборів даних" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Статистика" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Користувачі з найбільшою кількістю наборів даних" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Остання зміна сторінки:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Лідери - Статистика" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Лідери серед наборів даних" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "Текст" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Виберіть область" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "Виникла помилка: %(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" -msgstr "" +msgstr "Вебсайт" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "Web Page url" -msgstr "" +msgstr "Адреса веб сторінки" #: ckanext/webpageview/theme/templates/webpage_form.html:3 msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" +msgstr "наприклад, http://example.com (якщо пусто, використовується адреса ресурсу)" diff --git a/ckan/i18n/vi/LC_MESSAGES/ckan.mo b/ckan/i18n/vi/LC_MESSAGES/ckan.mo index 77a500ab305..245503365e5 100644 Binary files a/ckan/i18n/vi/LC_MESSAGES/ckan.mo and b/ckan/i18n/vi/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/vi/LC_MESSAGES/ckan.po b/ckan/i18n/vi/LC_MESSAGES/ckan.po index fb01fb95f6e..9d3c45d97af 100644 --- a/ckan/i18n/vi/LC_MESSAGES/ckan.po +++ b/ckan/i18n/vi/LC_MESSAGES/ckan.po @@ -5,256 +5,258 @@ # Translators: # Alex Corbi , 2015 # Anh Phan , 2014 +# dread , 2015 +# ODM Vietnam , 2015 msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Vietnamese (http://www.transifex.com/projects/p/ckan/language/vi/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:11+0000\n" +"Last-Translator: dread \n" +"Language-Team: Vietnamese (http://www.transifex.com/okfn/ckan/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "Không tìm thấy tính năng xác nhận: %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "Quản trị viên" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "Biên tập viên" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "Thành viên" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "Cần là quản trị viên hệ thống để thực hiện việc quản trị" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "Tiêu đề trang" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "Kiểu trang trí" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "Đặt thẻ đánh dấu dòng" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "Thẻ biểu tượng trang" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "Thông tin" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "Thông tin về trang" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "Đoạn văn bản giới thiệu" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "Văn bản trên trang chủ" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "Chỉnh sửa CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "CSS cho phép chỉnh sửa được chèn vào đầu trang" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "Trang chủ" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "Không thể xóa gói %s do mục đang xem lại %s bao gồm những gói không xóa được %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "Vấn đề xóa chỉnh sửa %s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "Xóa thành công" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "Hoạt động chưa hoàn thành" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "Không được phép truy cập trang này" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "Không được phép truy cập" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "Không tìm thấy" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "Yêu cầu bị lỗi" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "Tên hành động không biết: %s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "Lỗi JSON: %s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "Dữ liệu yêu cầu tồi: %s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "Không thể liệt kê được loại đối tượng này: %s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "Không thể đọc được loại đối tượng này: %s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "Không thể tạo mới đối tượng loại này: %s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "Không thể thêm dữ liệu vào mục lục tìm kiếm" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "Không thể cập nhật được loại đối tượng này: %s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "Không thể cập nhật mục lục tìm kiếm" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "Không thể xóa được loại đối tượng này: %s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "Không xác định được sửa đổi" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "Không có sửa đổi với id: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "Mất giới hạn tìm kiếm ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "Không thể đọc thông số: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "Lựa chọn tìm kiếm lỗi: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "Đăng ký không xác định: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "Giá trị qjson biến dạng: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "Đòi hỏi các thông số phải dưới dạng một định nghĩa được mã hóa json" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "Không tìm thấy nhóm" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" -msgstr "" +msgstr "Không tìm thấy tổ chức" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "Loại nhóm không đúng" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "Không được quyền đọc nhóm %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -265,23 +267,23 @@ msgstr "Không được quyền đọc nhóm %s" msgid "Organizations" msgstr "Tổ chức" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "Nhóm" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -289,394 +291,303 @@ msgstr "Nhóm" msgid "Tags" msgstr "Từ khóa" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "Định dạng" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "Giấy phép" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "Không được phép thực hiện cập nhật số lượng lớn" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "Không được phép tạo nhóm" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "Người dùng %r không được phép sửa %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "Lỗi tích hợp" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "Người dùng %r không được quyền sửa %s quyền cấp phép" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "Không được quyền xóa nhóm %s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "Tổ chức bị xóa" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "Nhóm bị xóa" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "Không được phép thêm thành viên nhóm %s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "Không được xóa thành viên %s nhóm" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "Thành viên nhóm bị xóa" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "Chọn hiệu chỉnh trước khi so sánh" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "Người dùng %r không được phép hiệu chỉnh %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "Lịch sử sửa đổi nhóm CKAN" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "Thay đổi gần đây của nhóm CKAN" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "Nhật kí tin nhắn" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "Không được phép tìm hiểu nhóm {group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "Bạn đang theo dõi {0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "Bạn đang không theo dõi {0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "Không được phép xem người theo dõi %s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "Trang này hiện ngừng kết nối. Dữ liệu không được thiết lập" -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "Vui lòng cập nhật hồ sơ cá nhân và thêm email, tên đầy đủ. {site} dùng email của bạn trong trường hợp bạn thiết lập lại mật mã." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "Vui lòng cập nhập thông tin và địa chỉ email của bạn." -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s dùng địa chỉ email của bạn nếu bạn cần đặt lại mật khẩu." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "Vui lòng cập nhập thông tin và họ tên của bạn." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "Thông số \"{parameter_name}\" không phải là số nguyên" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "Dữ liệu không tìm thấy" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "Không được phép đọc dữ liệu %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "Định dạng hiệu chỉnh không hợp lệ: %r " -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "Rà soát {package_type} các bộ dữ liệu trong {format} định dạng không được hỗ trợ (tệp mẫu {file} không tìm thấy)." -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "Lịch sử sửa đổi bộ dữ liệu CKAN" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "Những thay đổi gần đây của bộ dữ liệu CKAN" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "Không cấp phép tạo dữ liệu" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "Không cấp phép hiệu chỉnh nguồn này" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "Nguồn không tìm thấy" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "Không cấp phép cập nhật dữ liệu" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "Dữ liệu {id} không tìm thấy" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "Bạn phải thêm ít nhất một nguồn dữ liệu" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "Lỗi" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" -msgstr "Không cấp phép đọc nguồn này" +msgstr "Không được phép tạo mới tài liệu" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" -msgstr "" +msgstr "Không được phép tạo mới dữ liệu tại đây" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "Không thể thêm dữ liệu vào mục lục tìm kiếm" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "Không thể cập nhật mục lục tìm kiếm" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "Dữ liệu đã được xóa." + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "Không được phép xóa dữ liệu %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "Dữ liệu đã được xóa." - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "Nguồn không tìm thấy" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "Không được phép xóa nguồn %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "Không được phép đọc bộ dữ liệu %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" -msgstr "" +msgstr "Không tìm thấy chức năng đọc dữ liệu" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "Không được phép tìm hiểu nguồn %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "Dữ liệu nguồn không tìm thấy" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "Không thể tải về" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" -msgstr "" +msgstr "Không được phép sửa dữ liệu" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" -msgstr "" +msgstr "Không thấy chức năng đọc" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" -msgstr "" +msgstr "Không cho phép đọc %s" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" -msgstr "" +msgstr "Không tìm thấy định dạng đọc" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" -msgstr "" +msgstr "Thông tin về dữ liệu kém " -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" -msgstr "" +msgstr "Không cho phép đọc dữ liệu %s" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" -msgstr "" +msgstr "Không có chức năng đọc dữ liệu" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "Không được xem trước" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "Nhiều lượt xem" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "Nhiều lượt xem" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "Ít lượt xem" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "Mới nhất" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "Cũ nhất" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "Mục tin liên quan đến đề xuất không được tìm thấy" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "Mục tin liên quan không tìm thấy" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "Không cấp phép" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "Dữ liệu không tìm thấy" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "Mục tin liên quan được tạo không thành công" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "Mục tin liên quan cập nhật không thành công" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "Mục tin liên quan bị xóa" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "Không có quyền xóa các mục liên quan %s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "Giao diện lập trình ứng dụng" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "Ứng dụng" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "Ý tưởng" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "Tiêu đề tin tức" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "Giấy" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "Bưu kiện" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "Hiển thị" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "Lịch sử sửa đổi kho CKAN" @@ -702,10 +613,10 @@ msgstr "Khác" msgid "Tag not found" msgstr "Không tìm thấy từ khóa" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "Người sử dụng không tìm thấy" @@ -725,13 +636,13 @@ msgstr "Không cấp phép xóa địa chỉ người sử dụng với id \"{us msgid "No user specified" msgstr "Người sử dụng không được xác nhận" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "Không được phép sửa người dùng %s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "Cập nhật lí lịch" @@ -755,75 +666,87 @@ msgstr "Người dùng \"%s\" đã đăng ký nhưng hiện đang đăng nhập msgid "Unauthorized to edit a user." msgstr "Không cấp phép hiệu chỉnh người sử dụng" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "Người dùng %s không được phép sửa %s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "Không thể đăng nhập. Tên đăng nhập hoặc mật khẩu sai" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "Không cấp phép đề nghị cài lại mật khẩu" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" gắn với một số người dùng" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "Không có người dùng này: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "Kiểm tra hòm thư email để tái lập mã." -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "Không thể gửi kết nối được tái lập: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "Không cấp phép cài lại mật khẩu" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "Từ khóa không hợp lệ. Thử lại" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "Mật khẩu của bạn đã được cài đặt lại" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "Mật khẩu của bạn phải có từ 4 kí tự trở lên" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "Mật khẩu bạn nhập không đúng" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "Bạn phải nhập mật khẩu" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "Không tìm thấy mục tin tiếp theo" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} Không tìm thấy" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "Không được phép đọc {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "Tất cả" @@ -833,7 +756,7 @@ msgstr "Giá trị bị mất" #: ckan/controllers/util.py:21 msgid "Redirecting to external site is not allowed." -msgstr "" +msgstr "Không cho phép chuyển hướng trang " #: ckan/lib/activity_streams.py:64 msgid "{actor} added the tag {tag} to the dataset {dataset}" @@ -945,7 +868,7 @@ msgstr "{actor} thêm {related_type}{related_item} vào bộ dữ liệu {datase msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} Thêm mục tin liên quan {related_type} {related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -953,9 +876,9 @@ msgid "View" msgstr "Xem" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{n} các hoạt động mới từ {site_title}" +msgstr[0] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1005,129 +928,129 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "Ngay bây giờ" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} Vài phút trước" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} Vài giờ trước" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} Vài ngày trước" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} Vài tháng trước" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "Hơn {years} vài năm trước" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "Cập nhật ảnh đại diện của bạn trên gravatar.com" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "Không biết" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "Nguồn không tên" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "Dữ liệu mới tạo" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "Nguồn đã hiệu chỉnh" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "Cài đặt hiệu chỉnh" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} xem" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number} Số lượng xem gần đây" @@ -1153,11 +1076,11 @@ msgid "" "Please click the following link to confirm this request:\n" "\n" " {reset_link}\n" -msgstr "" +msgstr "Bạn vừa yêu cầu thay đổi mật mã.{site_title} cho trang \n\nHãy bấm vào đường link sau để xác nhận\n\n{reset_link}\n \n" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1182,7 +1105,7 @@ msgstr "Mời thăm {site_title}" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "Giá trị bị mất" @@ -1195,7 +1118,7 @@ msgstr "Trường đầu vào %(name)s không được tiếp nhận" msgid "Please enter an integer value" msgstr "Nhập giá trị số nguyên" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1205,11 +1128,11 @@ msgstr "Nhập giá trị số nguyên" msgid "Resources" msgstr "Nguồn" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "Nguồn dữ liệu không hợp lệ" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "Phần thêm" @@ -1219,25 +1142,22 @@ msgstr "Phần thêm" msgid "Tag vocabulary \"%s\" does not exist" msgstr "Từ khóa \"%s\" không tồn tại" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "Người sử dụng" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "Dữ liệu" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "Nhóm" @@ -1249,378 +1169,369 @@ msgstr "Không thể phân tích JSON hợp lệ" msgid "A organization must be supplied" msgstr "Phải phục vụ một tổ chức" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "Bạn không thể xóa dữ liệu khỏi tổ chức hiện có" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "Tổ chức không tồn tại" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "Bạn không thể thêm dữ liệu vào tổ chức này" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "Số nguyên không hợp lệ" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "Phải là một số tự nhiên" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "Phải là số nguyên dương" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "Định dạng dữ liệu không đúng" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "Liên kết không được phép vào nhật kí tin nhắn" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" -msgstr "" +msgstr "Bộ dữ liệu đã có sẵn" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "Nguồn" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "Liên quan" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "Tên nhóm hoặc địa chỉ không tồn tại" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "Hình thức hoạt động" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "Tên phải là một chuỗi" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "Tên không được sử dụng" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "Tên dài tối đa %i ký tự" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "Địa chỉ đã được sử dụng" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "Độ dài tên \"%s\" dưới mức tối thiểu %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "Độ dài tên \"%s\" trên mức tối đa %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "Phiên bản không vượt quá %i ký tự " -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "Từ khóa bị trùng lặp \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "Tên nhóm đã tồn tại trên dữ liệu" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "Độ dài thẻ \"%s\" ngắn hơn quy định tối thiểu %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "Độ dài thẻ %s lớn hơn quy định tối đa %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "Thẻ \"%s\" chỉ chấp nhận các ký tự chữ số hoặc các biểu tượng:-_" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "Thẻ \"%s\" không chấp nhận ký tự viết hoa" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "Tên người sử dụng phải là một chuỗi" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "Không có tên đăng nhập" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "Nhập mật khẩu" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "Mật khẩu phải là một chuỗi" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "Mật khẩu phải có ít nhất 4 kí tự" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "Mật khẩu bạn nhập không đúng" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "Không được phép hiệu chỉnh thư rác. Tránh các liên kết trong phần mô tả của bạn" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "Tên gồm tối thiểu %s ký tự" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "Từ vựng đã được sử dụng" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "Không thể thay đổi giá trị của chỉ dẫn từ %s thành %s. Chỉ dẫn này ở chế độ không chỉnh sửa" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "Từ vựng đi kèm không tìm thấy" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "Thẻ %s không nằm trong kho từ vựng %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "Không có từ khóa" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "Thẻ %s đã có trong kho từ vựng %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "Cung cấp địa chỉ hợp lệ" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "không tồn tại vai trò này" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "Bộ dữ liệu thiếu dữ liệu tổ chức không thể đặt chế độ bảo mật" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "Không có danh sách" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "Không phải là một chuỗi" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "có thể tạo vòng lặp trong hệ thống" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: Tạo đối tượng %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: Tạo mối liên kết gói dữ liệu: %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: Tạo đối tượng thành viên %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "Thử thiết lập tổ chức dạng nhóm" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "Bạn phải cung cấp địa chỉ hoặc tên gói dữ liệu (thông số\"gói dữ liệu\")." -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "Bạn phải cung cấp một trị số (thông số \"trị số\")." -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "Trị số phải là số nguyên" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "Trị số trong khoảng %i và %i." -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "Bạn phải đăng nhập để theo dõi người sử dụng" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "Bạn không thể tự theo dõi chính mình" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "Bạn đang theo dõi {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "Bạn phải đăng nhập để theo dõi dữ liệu" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "Tên người sử dụng {username} không tồn tại" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "Bạn phải đăng nhập để theo dõi nhóm" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: Xóa dữ liệu %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: Xóa %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: Xóa thành viên:%s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "Địa chỉ không có trong dữ liệu" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "Không thể tìm từ vựng \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "Không thể tìm từ khóa \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "Bạn phải được đăng nhập để tránh theo dõi một số thứ" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "Bạn đang không theo dõi {0}" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "Không tìm thấy nguồn" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "Không xác định nếu sử dụng tham số \"truy vấn\"" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "Phải là : cặp(s)" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "Miền \"{field}\" không được công nhận trong Nguồn_Tìm kiếm" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "Không biết người sử dụng" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "Không tìm thấy mục tin " -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "Không tìm thấy dữ liệu" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "Giao diện người sử dụng REST: Đối tượng cập nhật %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: Cập nhập package liên quan: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "Trạng thái công việc không tìm thấy." -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "Không tìm thấy tổ chức" @@ -1651,7 +1562,7 @@ msgstr "Bạn phải đăng nhập để thêm mục tin liên quan" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "Nguồn này không tìm thấy dữ liệu" @@ -1661,94 +1572,98 @@ msgstr "Nguồn này không tìm thấy dữ liệu" msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "Người dùng %s không được quyền sửa các gói gói" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "Người dùng %s không được quyền tạo nhóm" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "Người dùng %s không được quyền tạo tổ chức" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "Người dùng {user} không được quyền tạo người dùng thông qua API" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "Không cấp phép tạo người sử dụng" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "Không tìm thấy nhóm" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "Cần API key hợp lệ để tạo package." -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "Cần API key hợp lệ để tạo tạo nhóm." -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "Người dùng %s không được quyền thêm thành viên" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "Người dùng %s không được quyền sửa nhóm %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "Người dùng %s không được xác thực để xóa tài nguyên %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "Chỉ người tạo mới có thể xóa mục tin liên quan" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "Người dùng %s không được quyền xóa mối liên kết %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "Người dùng %s không được quyền xóa nhóm" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "Người dùng %s không được quyền xóa nhóm %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "Người dùng %s không được quyền xóa tổ chức" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "Người dùng %s không được quyền xóa tổ chức %s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "Người dùng %s không được quyền xóa trạng thái công việc" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "Không cấp phép" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1769,7 +1684,7 @@ msgstr "Người dùng %s không được quyền xem tài nguyên %s" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "Bạn phải đăng nhập để truy cập bảng điều khiển" @@ -1847,63 +1762,63 @@ msgstr "Cần API key hợp lệ để chỉnh sửa package" msgid "Valid API key needed to edit a group" msgstr "Cần API key hợp lệ để chỉnh sửa nhóm" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" -msgstr "" +msgstr "Không xác định được giấy phép" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Tổ chức Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Tổ chức Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Tổ chức Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Giấy phép bản quyền mở" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "Tổ chức GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "Khác (Mở)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "Khác (Khu vực công cộng)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "Khác (Quyền)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "Tổ chức UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Bản quyền mở phi thương mại (bất kỳ)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "Khác (phi thương mại)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "Khác (Không mở)" @@ -2010,8 +1925,6 @@ msgstr "Xác nhận" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "Hủy" @@ -2036,12 +1949,13 @@ msgstr "Liên kết" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "Xóa" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "Hình ảnh" @@ -2107,14 +2021,13 @@ msgstr "Bạn đang tải tệp. Bạn muốn chuyển hướng và ngừng tả #: ckan/public/base/javascript/modules/resource-view-reorder.js:8 msgid "Reorder resource view" -msgstr "" +msgstr "Sắp xép lại dữ liệu." #: ckan/public/base/javascript/modules/slug-preview.js:35 #: ckan/templates/group/snippets/group_form.html:18 #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "Địa chỉ" @@ -2128,7 +2041,6 @@ msgstr "Địa chỉ" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "Hiệu chỉnh" @@ -2167,33 +2079,41 @@ msgstr "Được phát triển bởi Site Title: This is the title of this CKAN instance It " @@ -2344,7 +2261,6 @@ msgid "" msgstr "Giao diện người sử dụng dữ liệu có thể truy cập thông qua hoạt động theo dõi giao diện người sử dụng CKAN" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "Tạo" @@ -2496,7 +2412,7 @@ msgstr "Chọn" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2529,8 +2445,6 @@ msgstr "Hình thức nhóm" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "Xác nhận xóa" @@ -2548,7 +2462,7 @@ msgstr "Bạn có muốn xóa tên thành viên nhóm không - {name}?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2693,14 +2607,12 @@ msgstr "Bạn có muốn xóa thành viên này không?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "Xóa" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "Lưu" @@ -2788,7 +2700,6 @@ msgstr "Nhóm của tôi" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "Mô tả" @@ -2848,7 +2759,7 @@ msgstr "So sánh" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2942,44 +2853,36 @@ msgstr "" #: ckan/templates/home/snippets/search.html:16 msgid "Popular tags" -msgstr "" +msgstr "Các thẻ phổ biến" #: ckan/templates/home/snippets/stats.html:5 msgid "{0} statistics" msgstr "{0} Thống kê" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "Bộ dữ liệu" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "Các bộ dữ liệu" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "Tổ chức" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "Các tổ chức" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "Nhóm" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "Các nhóm" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "Mục tin liên quan" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "Các mục tin liên quan" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2997,7 +2900,6 @@ msgid "Custom" msgstr "Chỉnh sửa" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "Mẫu gồm các đầu vào vô hiệu" @@ -3010,7 +2912,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "hình ảnh URL" @@ -3055,7 +2956,7 @@ msgstr "Nháp" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3089,6 +2990,20 @@ msgstr "Tìm kiếm tổ chức..." msgid "There are currently no organizations for this site" msgstr "Hiện tại không có tổ chức nào cho trang web này" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Tên người sử dụng" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "Cập nhật thành viên" @@ -3213,7 +3128,7 @@ msgstr "Chỉnh sửa lý lịch dữ liệu" #: ckan/templates/package/edit_view.html:8 #: ckan/templates/package/edit_view.html:12 msgid "Edit view" -msgstr "" +msgstr "Chỉnh sửa chức năng xem" #: ckan/templates/package/edit_view.html:20 #: ckan/templates/package/new_view.html:28 @@ -3223,7 +3138,6 @@ msgid "Preview" msgstr "Xem trước" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "Cập nhật" @@ -3266,7 +3180,7 @@ msgstr "Nguồn mới" #: ckan/templates/package/new_view.html:8 #: ckan/templates/package/new_view.html:12 msgid "Add view" -msgstr "" +msgstr "Thêm chức năng xem" #: ckan/templates/package/new_view.html:19 msgid "" @@ -3282,7 +3196,7 @@ msgstr "" msgid "Add" msgstr "Thêm" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3314,28 +3228,32 @@ msgstr "Lỗi tải:" msgid "Error:" msgstr "Lỗi:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "Tình trạng" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "Cập nhật lần cuối" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "Không bao giờ" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "Nhật ký đăng tải" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "Chi tiết" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "Kết thúc nhật ký" @@ -3358,7 +3276,7 @@ msgstr "Kho dữ liệu" #: ckan/templates/package/resource_edit_base.html:28 msgid "Views" -msgstr "" +msgstr "Các lượt xem" #: ckan/templates/package/resource_read.html:39 msgid "API Endpoint" @@ -3390,11 +3308,11 @@ msgstr "Nguồn: %(dataset)s" #: ckan/templates/package/resource_read.html:112 msgid "There are no views created for this resource yet." -msgstr "" +msgstr "Không có chế độ xem đối với dữ liệu này" #: ckan/templates/package/resource_read.html:116 msgid "Not seeing the views you were expecting?" -msgstr "" +msgstr "Không thấy chế độ xem dữ liệu bạn yêu cầu?" #: ckan/templates/package/resource_read.html:121 msgid "Here are some reasons you may not be seeing expected views:" @@ -3439,7 +3357,7 @@ msgid "unknown" msgstr "Không biết" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "Được tạo ra" @@ -3475,6 +3393,10 @@ msgid "" "add some?

" msgstr "

Bộ dữ liệu này trống, bạn có muốn thêm vào không?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "Giao diện lập trình ứng dụng" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "Văn bản API" @@ -3531,7 +3453,7 @@ msgid "Version" msgstr "Phiên bản" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "Tình trạng" @@ -3546,7 +3468,6 @@ msgstr "Dữ liệu API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "Tiêu đề" @@ -3566,30 +3487,30 @@ msgstr "Ví dụ: Những ghi chú hữu ích về dữ liệu" msgid "eg. economy, mental health, government" msgstr "Ví dụ: kinh tế, sức khỏe tinh thần, chính phủ" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "Bạn có thể tìm định nghĩa giấy phép và thông tin khác tại đây opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "Tổ chức" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "Không có tổ chức nào" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "Tầm nhìn" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "Công khai" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "Hoạt động" @@ -3716,7 +3637,7 @@ msgstr "Tìm hiểu" msgid "More information" msgstr "Thông tin thêm" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "Đã được gắn" @@ -3802,139 +3723,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "Mẫu biểu liên quan" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "Các mục tin liên quan là gì?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Phương tiện truyền thông liên quan là bất kỳ ứng dụng, bài viết, hình ảnh hoặc ý tưởng liên quan đến bộ dữ liệu này.

Ví dụ, nó có thể là một hình ảnh trực quan, chữ tượng hình hoặc biểu đồ, một ứng dụng sử dụng tất cả hoặc một phần của dữ liệu hoặc thậm chí một câu chuyện tin tức dẫn nguồn từ bộ dữ liệu này. " - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "Bạn có chắc muốn xóa mục liên quan - {name}?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "Ứng dụng & Ý tưởng" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Hiển thị mục %(first)s - %(last)s của %(item_count)s mục liên quan tìm thấy

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s mục liên quan tìm thấy

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "Chưa có ứng dụng nào được đưa ra." - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "Ứng dụng là gì?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "Những ứng dụng này được xây dựng với bộ dữ liệu cũng như những ý tưởng dành cho chúng." - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "Kết quả lọc" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "Lọc theo loại" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "Tất cả" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "Phân loại bởi" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "Mặc định" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "Chỉ hiển thị những mục đặc sắc" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "Ứng dụng" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "Sửa mục liên quan" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "Sửa liên quan" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "Sửa mục liên quan" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "Tạo một mục liên quan" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "Tạo liên hệ" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "Tạo mục liên quan" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "Mục liên quan của tôi" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "Một vài thông tin về mục..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "Loại" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "Bạn có chắc muốn xóa mục liên quan này?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "Đến {related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "Khác" @@ -4022,7 +3810,6 @@ msgid "There are no {facet_type} that match this search" msgstr "Không có {facet_type} khớp với tìm kiếm này" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "Trang chủ" @@ -4031,7 +3818,7 @@ msgid "Language" msgstr "Ngôn ngữ" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4063,21 +3850,25 @@ msgstr "Không có ứng dụng, ý tưởng, tin tức hay hình ảnh liên qu msgid "Add Item" msgstr "Thêm mục" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "Đăng kí" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "Sắp xếp thành" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "Kết quả lọc" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

Thử tìm kiếm khác

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4146,7 +3937,7 @@ msgid "Subscribe" msgstr "Đăng kí" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4165,10 +3956,6 @@ msgstr "Biên tập" msgid "Search Tags" msgstr "Từ khóa tìm kiếm" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "Bảng điều khiển" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "Cung cấp tin tức" @@ -4232,36 +4019,27 @@ msgstr "Lí lịch của bạn cho phép những người sử dụng CKAN khác msgid "Change details" msgstr "Thay đổi chi tiết" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "Tên người sử dụng" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "Tên" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "VD: Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "VD: joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "Thông tin bản thân" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "Đăng kí không cần email" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "Đổi mật khẩu" @@ -4494,15 +4272,15 @@ msgstr "Chưa tải lên được" msgid "DataStore resource not found" msgstr "Không tìm thấy nguồn kho dữ liệu" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "Tài nguyên \"{0}\" không tìm thấy." @@ -4510,6 +4288,14 @@ msgstr "Tài nguyên \"{0}\" không tìm thấy." msgid "User {0} not authorized to update resource {1}" msgstr "Người dùng {0} không có quyền cập nhật nguồn {1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4536,6 +4322,10 @@ msgstr "Mã quốc gia" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4553,65 +4343,25 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Bản quyền (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nGiấy phép được cấp, hoàn toàn miễn phí, đến mọi người \nmột bản sao của phần mềm này và tài liệu liên kết (\"Software\"), để giải quyết trong phần mềm mà không hạn chế, bao gồm không giới hạn quyền sử dụng, sao chép, chỉnh sửa, sáp nhập, xuất bản, phân phối, cấp phép, và/hoặc bán các bản sao của phần mềm, và cho phép cá nhân được phần mềm cho phép để làm, chủ đề theo các điều kiện: \n\nCác thông báo bản quyền ở trên và thông báo cho phép này sẽ được bao gồm trong tất cả các bản sao hoặc phần lớn của phần mềm:\n\nPHẦN MỀM ĐƯỢC CUNG CẤP \"AS IS\", KHÔNG CÓ BẤT KỲ ĐẢM BẢO NÀO,\nRÕ RÀNG HAY ÁM CHỈ, BAO HÀM NHƯNG KHÔNG ĐƯỢC GIỚI HẠN ĐỂ ĐẢM BẢO \nBÁN ĐƯỢC, PHÙ HỢP CHO MỘT MỤC ĐÍCH CỤ THỂ VÀ\nKHÔNG VI PHẠM. TRONG BẤT CỨ TRƯỜNG HỢP TÁC GIẢ HOẶC CÁC NGƯỜI GIỮ BẢN QUYỀN LÀ CHỊU TRÁCH NHIỆM CHO BẤT CỨ YÊU CẦU, THIỆT HẠI HOẶC TRÁCH NHIỆM KHÁC, DÙ TRONG MỘT HÀNH ĐỘNG CỦA HỢP ĐỒNG, SAI LẦM HOẶC VẤN ĐỂ KHÁC , PHÁT SINH TỪ, BÊN NGOÀI HOẶC TRONG KẾT NỐI VỚI PHẦN MỀM HOẶC SỬ DỤNG HAY CHO GIAO DỊCH KHÁC TRONG PHẦN MỀM." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "Đây là phiên bản được biên dịch của SlickGrid đã đạt được với Google Closure\ncompiler, sử dụng theo những lệnh sau:\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nCó 2 tập tin khác được yêu cầu cho SlickGrid:\n\n * jquery-ui-1.8.16.custom.min.js \n * jquery.event.drag-2.0.min.js\n\nChúng được bao gồm trong nguồn Recline, nhưng không được bao gồm trong\ntập tin được xây dựng để làm dễ dàng hơn để xử lý các vấn đề tương thích.\n\nVui lòng kiểm tra bản quyền SlickGrid trong tập tin đi kèm MIT-LICENSE.txt.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4670,7 +4420,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "Tổng số bộ dữ liệu" @@ -4698,33 +4447,27 @@ msgstr "Bộ dữ liệu mới" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "Bộ dữ liệu được đánh giá cao nhất" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "Đánh giá trung bình" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "Số lần đánh giá" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "Không có đánh giá" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "Bộ dữ liệu được sửa nhiều nhất" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "Số lần sửa" @@ -4734,12 +4477,10 @@ msgstr "Những bộ dữ liệu không được chỉnh sửa" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "Các nhóm lớn nhất" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "Số bộ dữ liệu" @@ -4749,7 +4490,6 @@ msgstr "Không có nhóm" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "Các nhãn đứng đầu" @@ -4764,8 +4504,8 @@ msgstr "Số bộ dữ liệu" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "Những người dùng sở hữu nhiều bộ dữ liệu nhất" +msgid "Users Creating Most Datasets" +msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4775,42 +4515,16 @@ msgstr "Bảng chọn thống kê" msgid "Total Number of Datasets" msgstr "Tổng số bộ dữ liệu" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "Thông kê" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "Kiểm tra bộ dữ liệu hàng tuần" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "Những người dùng sở hữu nhiều bộ dữ liệu nhất" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "Trang được cập nhật lần cuối:" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "Đầu bảng - Thống kê" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "Bộ dữ liệu đầu bảng" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "Chọn một thuộc tính bộ dữ liệu và tìm ra loại nào trong khu vực đó có nhiều bộ dữ liệu nhất. Ví dụ: nhãn, nhóm, giấy phép, res_format, quốc gia." +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "Chọn vùng" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/vi_VN/LC_MESSAGES/ckan.mo b/ckan/i18n/vi_VN/LC_MESSAGES/ckan.mo deleted file mode 100644 index 2f3fbecba56..00000000000 Binary files a/ckan/i18n/vi_VN/LC_MESSAGES/ckan.mo and /dev/null differ diff --git a/ckan/i18n/vi_VN/LC_MESSAGES/ckan.po b/ckan/i18n/vi_VN/LC_MESSAGES/ckan.po deleted file mode 100644 index 10cde1e4fea..00000000000 --- a/ckan/i18n/vi_VN/LC_MESSAGES/ckan.po +++ /dev/null @@ -1,4821 +0,0 @@ -# Translations template for ckan. -# Copyright (C) 2015 ORGANIZATION -# This file is distributed under the same license as the ckan project. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: CKAN\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:19+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/ckan/language/vi_VN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" -"Language: vi_VN\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ckan/new_authz.py:178 -#, python-format -msgid "Authorization function not found: %s" -msgstr "" - -#: ckan/new_authz.py:190 -msgid "Admin" -msgstr "" - -#: ckan/new_authz.py:194 -msgid "Editor" -msgstr "" - -#: ckan/new_authz.py:198 -msgid "Member" -msgstr "" - -#: ckan/controllers/admin.py:27 -msgid "Need to be system administrator to administer" -msgstr "" - -#: ckan/controllers/admin.py:43 -msgid "Site Title" -msgstr "" - -#: ckan/controllers/admin.py:44 -msgid "Style" -msgstr "" - -#: ckan/controllers/admin.py:45 -msgid "Site Tag Line" -msgstr "" - -#: ckan/controllers/admin.py:46 -msgid "Site Tag Logo" -msgstr "" - -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 -#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 -#: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 -#: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 -#: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 -msgid "About" -msgstr "" - -#: ckan/controllers/admin.py:47 -msgid "About page text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Intro Text" -msgstr "" - -#: ckan/controllers/admin.py:48 -msgid "Text on home page" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Custom CSS" -msgstr "" - -#: ckan/controllers/admin.py:49 -msgid "Customisable css inserted into the page header" -msgstr "" - -#: ckan/controllers/admin.py:50 -msgid "Homepage" -msgstr "" - -#: ckan/controllers/admin.py:131 -#, python-format -msgid "" -"Cannot purge package %s as associated revision %s includes non-deleted " -"packages %s" -msgstr "" - -#: ckan/controllers/admin.py:153 -#, python-format -msgid "Problem purging revision %s: %s" -msgstr "" - -#: ckan/controllers/admin.py:155 -msgid "Purge complete" -msgstr "" - -#: ckan/controllers/admin.py:157 -msgid "Action not implemented." -msgstr "" - -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 -#: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 -msgid "Not authorized to see this page" -msgstr "" - -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 -msgid "Access denied" -msgstr "" - -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 -#: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 -msgid "Not found" -msgstr "" - -#: ckan/controllers/api.py:130 -msgid "Bad request" -msgstr "" - -#: ckan/controllers/api.py:164 -#, python-format -msgid "Action name not known: %s" -msgstr "" - -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 -#, python-format -msgid "JSON Error: %s" -msgstr "" - -#: ckan/controllers/api.py:190 -#, python-format -msgid "Bad request data: %s" -msgstr "" - -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 -#, python-format -msgid "Cannot list entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:318 -#, python-format -msgid "Cannot read entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:357 -#, python-format -msgid "Cannot create new entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:389 -msgid "Unable to add package to search index" -msgstr "" - -#: ckan/controllers/api.py:419 -#, python-format -msgid "Cannot update entity of this type: %s" -msgstr "" - -#: ckan/controllers/api.py:442 -msgid "Unable to update search index" -msgstr "" - -#: ckan/controllers/api.py:466 -#, python-format -msgid "Cannot delete entity of this type: %s %s" -msgstr "" - -#: ckan/controllers/api.py:489 -msgid "No revision specified" -msgstr "" - -#: ckan/controllers/api.py:493 -#, python-format -msgid "There is no revision with id: %s" -msgstr "" - -#: ckan/controllers/api.py:503 -msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" -msgstr "" - -#: ckan/controllers/api.py:513 -#, python-format -msgid "Could not read parameters: %r" -msgstr "" - -#: ckan/controllers/api.py:574 -#, python-format -msgid "Bad search option: %s" -msgstr "" - -#: ckan/controllers/api.py:577 -#, python-format -msgid "Unknown register: %s" -msgstr "" - -#: ckan/controllers/api.py:586 -#, python-format -msgid "Malformed qjson value: %r" -msgstr "" - -#: ckan/controllers/api.py:596 -msgid "Request params must be in form of a json encoded dictionary." -msgstr "" - -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 -msgid "Group not found" -msgstr "" - -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 -msgid "Organization not found" -msgstr "" - -#: ckan/controllers/group.py:172 -msgid "Incorrect group type" -msgstr "" - -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 -#, python-format -msgid "Unauthorized to read group %s" -msgstr "" - -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 -#: ckan/templates/organization/edit_base.html:8 -#: ckan/templates/organization/index.html:3 -#: ckan/templates/organization/index.html:6 -#: ckan/templates/organization/index.html:18 -#: ckan/templates/organization/read_base.html:3 -#: ckan/templates/organization/read_base.html:6 -#: ckan/templates/package/base.html:14 -msgid "Organizations" -msgstr "" - -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 -#: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 -#: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 -#: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 -#: ckan/templates/group/read_base.html:6 -#: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 -#: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 -msgid "Groups" -msgstr "" - -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 -#: ckan/templates/package/snippets/package_basic_fields.html:24 -#: ckan/templates/snippets/context/dataset.html:17 -#: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 -#: ckan/templates/tag/index.html:12 -msgid "Tags" -msgstr "" - -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 -msgid "Formats" -msgstr "" - -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 -msgid "Licenses" -msgstr "" - -#: ckan/controllers/group.py:429 -msgid "Not authorized to perform bulk update" -msgstr "" - -#: ckan/controllers/group.py:446 -msgid "Unauthorized to create a group" -msgstr "" - -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 -#, python-format -msgid "User %r not authorized to edit %s" -msgstr "" - -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 -msgid "Integrity Error" -msgstr "" - -#: ckan/controllers/group.py:586 -#, python-format -msgid "User %r not authorized to edit %s authorizations" -msgstr "" - -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 -#, python-format -msgid "Unauthorized to delete group %s" -msgstr "" - -#: ckan/controllers/group.py:609 -msgid "Organization has been deleted." -msgstr "" - -#: ckan/controllers/group.py:611 -msgid "Group has been deleted." -msgstr "" - -#: ckan/controllers/group.py:677 -#, python-format -msgid "Unauthorized to add member to group %s" -msgstr "" - -#: ckan/controllers/group.py:694 -#, python-format -msgid "Unauthorized to delete group %s members" -msgstr "" - -#: ckan/controllers/group.py:700 -msgid "Group member has been deleted." -msgstr "" - -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 -msgid "Select two revisions before doing the comparison." -msgstr "" - -#: ckan/controllers/group.py:741 -#, python-format -msgid "User %r not authorized to edit %r" -msgstr "" - -#: ckan/controllers/group.py:748 -msgid "CKAN Group Revision History" -msgstr "" - -#: ckan/controllers/group.py:751 -msgid "Recent changes to CKAN Group: " -msgstr "" - -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 -msgid "Log message: " -msgstr "" - -#: ckan/controllers/group.py:798 -msgid "Unauthorized to read group {group_id}" -msgstr "" - -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 -msgid "You are now following {0}" -msgstr "" - -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 -msgid "You are no longer following {0}" -msgstr "" - -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 -#, python-format -msgid "Unauthorized to view followers %s" -msgstr "" - -#: ckan/controllers/home.py:37 -msgid "This site is currently off-line. Database is not initialised." -msgstr "" - -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "" - -#: ckan/controllers/home.py:103 -#, python-format -msgid "Please update your profile and add your email address. " -msgstr "" - -#: ckan/controllers/home.py:105 -#, python-format -msgid "%s uses your email address if you need to reset your password." -msgstr "" - -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "" - -#: ckan/controllers/package.py:295 -msgid "Parameter \"{parameter_name}\" is not an integer" -msgstr "" - -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 -msgid "Dataset not found" -msgstr "" - -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 -#, python-format -msgid "Unauthorized to read package %s" -msgstr "" - -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 -#, python-format -msgid "Invalid revision format: %r" -msgstr "" - -#: ckan/controllers/package.py:427 -msgid "" -"Viewing {package_type} datasets in {format} format is not supported " -"(template file {file} not found)." -msgstr "" - -#: ckan/controllers/package.py:472 -msgid "CKAN Dataset Revision History" -msgstr "" - -#: ckan/controllers/package.py:475 -msgid "Recent changes to CKAN Dataset: " -msgstr "" - -#: ckan/controllers/package.py:532 -msgid "Unauthorized to create a package" -msgstr "" - -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 -msgid "Unauthorized to edit this resource" -msgstr "" - -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 -msgid "Resource not found" -msgstr "" - -#: ckan/controllers/package.py:682 -msgid "Unauthorized to update dataset" -msgstr "" - -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 -msgid "The dataset {id} could not be found." -msgstr "" - -#: ckan/controllers/package.py:688 -msgid "You must add at least one data resource" -msgstr "" - -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 -msgid "Error" -msgstr "" - -#: ckan/controllers/package.py:714 -msgid "Unauthorized to create a resource" -msgstr "" - -#: ckan/controllers/package.py:750 -msgid "Unauthorized to create a resource for this package" -msgstr "" - -#: ckan/controllers/package.py:973 -msgid "Unable to add package to search index." -msgstr "" - -#: ckan/controllers/package.py:1020 -msgid "Unable to update search index." -msgstr "" - -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 -#, python-format -msgid "Unauthorized to delete package %s" -msgstr "" - -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1088 -msgid "Resource has been deleted." -msgstr "" - -#: ckan/controllers/package.py:1093 -#, python-format -msgid "Unauthorized to delete resource %s" -msgstr "" - -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 -#, python-format -msgid "Unauthorized to read dataset %s" -msgstr "" - -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 -msgid "Resource view not found" -msgstr "" - -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 -#, python-format -msgid "Unauthorized to read resource %s" -msgstr "" - -#: ckan/controllers/package.py:1193 -msgid "Resource data not found" -msgstr "" - -#: ckan/controllers/package.py:1201 -msgid "No download is available" -msgstr "" - -#: ckan/controllers/package.py:1523 -msgid "Unauthorized to edit resource" -msgstr "" - -#: ckan/controllers/package.py:1541 -msgid "View not found" -msgstr "" - -#: ckan/controllers/package.py:1543 -#, python-format -msgid "Unauthorized to view View %s" -msgstr "" - -#: ckan/controllers/package.py:1549 -msgid "View Type Not found" -msgstr "" - -#: ckan/controllers/package.py:1609 -msgid "Bad resource view data" -msgstr "" - -#: ckan/controllers/package.py:1618 -#, python-format -msgid "Unauthorized to read resource view %s" -msgstr "" - -#: ckan/controllers/package.py:1621 -msgid "Resource view not supplied" -msgstr "" - -#: ckan/controllers/package.py:1650 -msgid "No preview has been defined." -msgstr "" - -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "" - -#: ckan/controllers/revision.py:42 -msgid "CKAN Repository Revision History" -msgstr "" - -#: ckan/controllers/revision.py:44 -msgid "Recent changes to the CKAN repository." -msgstr "" - -#: ckan/controllers/revision.py:108 -#, python-format -msgid "Datasets affected: %s.\n" -msgstr "" - -#: ckan/controllers/revision.py:188 -msgid "Revision updated" -msgstr "" - -#: ckan/controllers/tag.py:56 -msgid "Other" -msgstr "" - -#: ckan/controllers/tag.py:70 -msgid "Tag not found" -msgstr "" - -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 -msgid "User not found" -msgstr "" - -#: ckan/controllers/user.py:149 -msgid "Unauthorized to register as a user." -msgstr "" - -#: ckan/controllers/user.py:166 -msgid "Unauthorized to create a user" -msgstr "" - -#: ckan/controllers/user.py:197 -msgid "Unauthorized to delete user with id \"{user_id}\"." -msgstr "" - -#: ckan/controllers/user.py:211 ckan/controllers/user.py:270 -msgid "No user specified" -msgstr "" - -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 -#, python-format -msgid "Unauthorized to edit user %s" -msgstr "" - -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 -msgid "Profile updated" -msgstr "" - -#: ckan/controllers/user.py:232 -#, python-format -msgid "Unauthorized to create user %s" -msgstr "" - -#: ckan/controllers/user.py:238 -msgid "Bad Captcha. Please try again." -msgstr "" - -#: ckan/controllers/user.py:255 -#, python-format -msgid "" -"User \"%s\" is now registered but you are still logged in as \"%s\" from " -"before" -msgstr "" - -#: ckan/controllers/user.py:276 -msgid "Unauthorized to edit a user." -msgstr "" - -#: ckan/controllers/user.py:302 -#, python-format -msgid "User %s not authorized to edit %s" -msgstr "" - -#: ckan/controllers/user.py:383 -msgid "Login failed. Bad username or password." -msgstr "" - -#: ckan/controllers/user.py:417 -msgid "Unauthorized to request reset password." -msgstr "" - -#: ckan/controllers/user.py:446 -#, python-format -msgid "\"%s\" matched several users" -msgstr "" - -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 -#, python-format -msgid "No such user: %s" -msgstr "" - -#: ckan/controllers/user.py:455 -msgid "Please check your inbox for a reset code." -msgstr "" - -#: ckan/controllers/user.py:459 -#, python-format -msgid "Could not send reset link: %s" -msgstr "" - -#: ckan/controllers/user.py:474 -msgid "Unauthorized to reset password." -msgstr "" - -#: ckan/controllers/user.py:486 -msgid "Invalid reset key. Please try again." -msgstr "" - -#: ckan/controllers/user.py:498 -msgid "Your password has been reset." -msgstr "" - -#: ckan/controllers/user.py:519 -msgid "Your password must be 4 characters or longer." -msgstr "" - -#: ckan/controllers/user.py:522 -msgid "The passwords you entered do not match." -msgstr "" - -#: ckan/controllers/user.py:525 -msgid "You must provide a password" -msgstr "" - -#: ckan/controllers/user.py:589 -msgid "Follow item not found" -msgstr "" - -#: ckan/controllers/user.py:593 -msgid "{0} not found" -msgstr "" - -#: ckan/controllers/user.py:595 -msgid "Unauthorized to read {0} {1}" -msgstr "" - -#: ckan/controllers/user.py:610 -msgid "Everything" -msgstr "" - -#: ckan/controllers/util.py:16 ckan/logic/action/__init__.py:60 -msgid "Missing Value" -msgstr "" - -#: ckan/controllers/util.py:21 -msgid "Redirecting to external site is not allowed." -msgstr "" - -#: ckan/lib/activity_streams.py:64 -msgid "{actor} added the tag {tag} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:67 -msgid "{actor} updated the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:70 -msgid "{actor} updated the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:73 -msgid "{actor} updated the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:76 -msgid "{actor} changed the extra {extra} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:79 -msgid "{actor} updated the resource {resource} in the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:82 -msgid "{actor} updated their profile" -msgstr "" - -#: ckan/lib/activity_streams.py:86 -msgid "" -"{actor} updated the {related_type} {related_item} of the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:89 -msgid "{actor} updated the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:92 -msgid "{actor} deleted the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:95 -msgid "{actor} deleted the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:98 -msgid "{actor} deleted the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:101 -msgid "{actor} deleted the extra {extra} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:104 -msgid "{actor} deleted the resource {resource} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:108 -msgid "{actor} created the group {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:111 -msgid "{actor} created the organization {organization}" -msgstr "" - -#: ckan/lib/activity_streams.py:114 -msgid "{actor} created the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:117 -msgid "{actor} added the extra {extra} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:120 -msgid "{actor} added the resource {resource} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:123 -msgid "{actor} signed up" -msgstr "" - -#: ckan/lib/activity_streams.py:126 -msgid "{actor} removed the tag {tag} from the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:129 -msgid "{actor} deleted the related item {related_item}" -msgstr "" - -#: ckan/lib/activity_streams.py:132 -msgid "{actor} started following {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:135 -msgid "{actor} started following {user}" -msgstr "" - -#: ckan/lib/activity_streams.py:138 -msgid "{actor} started following {group}" -msgstr "" - -#: ckan/lib/activity_streams.py:142 -msgid "" -"{actor} added the {related_type} {related_item} to the dataset {dataset}" -msgstr "" - -#: ckan/lib/activity_streams.py:145 -msgid "{actor} added the {related_type} {related_item}" -msgstr "" - -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 -#: ckan/templates/organization/edit_base.html:17 -#: ckan/templates/package/resource_read.html:37 -#: ckan/templates/package/resource_views.html:4 -msgid "View" -msgstr "" - -#: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" -msgid_plural "{n} new activities from {site_title}" -msgstr[0] "" - -#: ckan/lib/formatters.py:17 -msgid "January" -msgstr "" - -#: ckan/lib/formatters.py:21 -msgid "February" -msgstr "" - -#: ckan/lib/formatters.py:25 -msgid "March" -msgstr "" - -#: ckan/lib/formatters.py:29 -msgid "April" -msgstr "" - -#: ckan/lib/formatters.py:33 -msgid "May" -msgstr "" - -#: ckan/lib/formatters.py:37 -msgid "June" -msgstr "" - -#: ckan/lib/formatters.py:41 -msgid "July" -msgstr "" - -#: ckan/lib/formatters.py:45 -msgid "August" -msgstr "" - -#: ckan/lib/formatters.py:49 -msgid "September" -msgstr "" - -#: ckan/lib/formatters.py:53 -msgid "October" -msgstr "" - -#: ckan/lib/formatters.py:57 -msgid "November" -msgstr "" - -#: ckan/lib/formatters.py:61 -msgid "December" -msgstr "" - -#: ckan/lib/formatters.py:109 -msgid "Just now" -msgstr "" - -#: ckan/lib/formatters.py:111 -msgid "{mins} minute ago" -msgid_plural "{mins} minutes ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:114 -msgid "{hours} hour ago" -msgid_plural "{hours} hours ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:120 -msgid "{days} day ago" -msgid_plural "{days} days ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:123 -msgid "{months} month ago" -msgid_plural "{months} months ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:125 -msgid "over {years} year ago" -msgid_plural "over {years} years ago" -msgstr[0] "" - -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "" - -#: ckan/lib/formatters.py:142 -msgid "{month} {day}, {year}" -msgstr "" - -#: ckan/lib/formatters.py:158 -msgid "{bytes} bytes" -msgstr "" - -#: ckan/lib/formatters.py:160 -msgid "{kibibytes} KiB" -msgstr "" - -#: ckan/lib/formatters.py:162 -msgid "{mebibytes} MiB" -msgstr "" - -#: ckan/lib/formatters.py:164 -msgid "{gibibytes} GiB" -msgstr "" - -#: ckan/lib/formatters.py:166 -msgid "{tebibytes} TiB" -msgstr "" - -#: ckan/lib/formatters.py:178 -msgid "{n}" -msgstr "" - -#: ckan/lib/formatters.py:180 -msgid "{k}k" -msgstr "" - -#: ckan/lib/formatters.py:182 -msgid "{m}M" -msgstr "" - -#: ckan/lib/formatters.py:184 -msgid "{g}G" -msgstr "" - -#: ckan/lib/formatters.py:186 -msgid "{t}T" -msgstr "" - -#: ckan/lib/formatters.py:188 -msgid "{p}P" -msgstr "" - -#: ckan/lib/formatters.py:190 -msgid "{e}E" -msgstr "" - -#: ckan/lib/formatters.py:192 -msgid "{z}Z" -msgstr "" - -#: ckan/lib/formatters.py:194 -msgid "{y}Y" -msgstr "" - -#: ckan/lib/helpers.py:858 -msgid "Update your avatar at gravatar.com" -msgstr "" - -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 -msgid "Unknown" -msgstr "" - -#: ckan/lib/helpers.py:1117 -msgid "Unnamed resource" -msgstr "" - -#: ckan/lib/helpers.py:1164 -msgid "Created new dataset." -msgstr "" - -#: ckan/lib/helpers.py:1166 -msgid "Edited resources." -msgstr "" - -#: ckan/lib/helpers.py:1168 -msgid "Edited settings." -msgstr "" - -#: ckan/lib/helpers.py:1431 -msgid "{number} view" -msgid_plural "{number} views" -msgstr[0] "" - -#: ckan/lib/helpers.py:1433 -msgid "{number} recent view" -msgid_plural "{number} recent views" -msgstr[0] "" - -#: ckan/lib/mailer.py:25 -#, python-format -msgid "Dear %s," -msgstr "" - -#: ckan/lib/mailer.py:38 -#, python-format -msgid "%s <%s>" -msgstr "" - -#: ckan/lib/mailer.py:99 -msgid "No recipient email address available!" -msgstr "" - -#: ckan/lib/mailer.py:104 -msgid "" -"You have requested your password on {site_title} to be reset.\n" -"\n" -"Please click the following link to confirm this request:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:119 -msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" -"\n" -"To accept this invite, please reset your password at:\n" -"\n" -" {reset_link}\n" -msgstr "" - -#: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 -#: ckan/templates/user/request_reset.html:13 -msgid "Reset your password" -msgstr "" - -#: ckan/lib/mailer.py:151 -msgid "Invite for {site_title}" -msgstr "" - -#: ckan/lib/navl/dictization_functions.py:11 -#: ckan/lib/navl/dictization_functions.py:13 -#: ckan/lib/navl/dictization_functions.py:15 -#: ckan/lib/navl/dictization_functions.py:17 -#: ckan/lib/navl/dictization_functions.py:19 -#: ckan/lib/navl/dictization_functions.py:21 -#: ckan/lib/navl/dictization_functions.py:23 -#: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 -#: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 -msgid "Missing value" -msgstr "" - -#: ckan/lib/navl/validators.py:64 -#, python-format -msgid "The input field %(name)s was not expected." -msgstr "" - -#: ckan/lib/navl/validators.py:116 -msgid "Please enter an integer value" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -#: ckan/templates/package/edit_base.html:21 -#: ckan/templates/package/resources.html:5 -#: ckan/templates/package/snippets/package_context.html:12 -#: ckan/templates/package/snippets/resources.html:20 -#: ckan/templates/snippets/context/dataset.html:13 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 -msgid "Resources" -msgstr "" - -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 -msgid "Package resource(s) invalid" -msgstr "" - -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 -#: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 -msgid "Extras" -msgstr "" - -#: ckan/logic/converters.py:72 ckan/logic/converters.py:87 -#, python-format -msgid "Tag vocabulary \"%s\" does not exist" -msgstr "" - -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 -#: ckan/templates/group/members.html:17 -#: ckan/templates/organization/members.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:156 -msgid "User" -msgstr "" - -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 -#: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Dataset" -msgstr "" - -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 -#: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Group" -msgstr "" - -#: ckan/logic/converters.py:178 -msgid "Could not parse as valid JSON" -msgstr "" - -#: ckan/logic/validators.py:30 ckan/logic/validators.py:39 -msgid "A organization must be supplied" -msgstr "" - -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "" - -#: ckan/logic/validators.py:48 -msgid "Organization does not exist" -msgstr "" - -#: ckan/logic/validators.py:53 -msgid "You cannot add a dataset to this organization" -msgstr "" - -#: ckan/logic/validators.py:93 -msgid "Invalid integer" -msgstr "" - -#: ckan/logic/validators.py:98 -msgid "Must be a natural number" -msgstr "" - -#: ckan/logic/validators.py:104 -msgid "Must be a postive integer" -msgstr "" - -#: ckan/logic/validators.py:122 -msgid "Date format incorrect" -msgstr "" - -#: ckan/logic/validators.py:131 -msgid "No links are allowed in the log_message." -msgstr "" - -#: ckan/logic/validators.py:151 -msgid "Dataset id already exists" -msgstr "" - -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 -msgid "Resource" -msgstr "" - -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 -#: ckan/templates/snippets/related.html:2 -msgid "Related" -msgstr "" - -#: ckan/logic/validators.py:260 -msgid "That group name or ID does not exist." -msgstr "" - -#: ckan/logic/validators.py:274 -msgid "Activity type" -msgstr "" - -#: ckan/logic/validators.py:349 -msgid "Names must be strings" -msgstr "" - -#: ckan/logic/validators.py:353 -msgid "That name cannot be used" -msgstr "" - -#: ckan/logic/validators.py:356 -#, python-format -msgid "Must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 -#, python-format -msgid "Name must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:361 -msgid "" -"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " -"-_" -msgstr "" - -#: ckan/logic/validators.py:379 -msgid "That URL is already in use." -msgstr "" - -#: ckan/logic/validators.py:384 -#, python-format -msgid "Name \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:388 -#, python-format -msgid "Name \"%s\" length is more than maximum %s" -msgstr "" - -#: ckan/logic/validators.py:394 -#, python-format -msgid "Version must be a maximum of %i characters long" -msgstr "" - -#: ckan/logic/validators.py:412 -#, python-format -msgid "Duplicate key \"%s\"" -msgstr "" - -#: ckan/logic/validators.py:428 -msgid "Group name already exists in database" -msgstr "" - -#: ckan/logic/validators.py:434 -#, python-format -msgid "Tag \"%s\" length is less than minimum %s" -msgstr "" - -#: ckan/logic/validators.py:438 -#, python-format -msgid "Tag \"%s\" length is more than maximum %i" -msgstr "" - -#: ckan/logic/validators.py:446 -#, python-format -msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." -msgstr "" - -#: ckan/logic/validators.py:454 -#, python-format -msgid "Tag \"%s\" must not be uppercase" -msgstr "" - -#: ckan/logic/validators.py:563 -msgid "User names must be strings" -msgstr "" - -#: ckan/logic/validators.py:579 -msgid "That login name is not available." -msgstr "" - -#: ckan/logic/validators.py:588 -msgid "Please enter both passwords" -msgstr "" - -#: ckan/logic/validators.py:596 -msgid "Passwords must be strings" -msgstr "" - -#: ckan/logic/validators.py:600 -msgid "Your password must be 4 characters or longer" -msgstr "" - -#: ckan/logic/validators.py:608 -msgid "The passwords you entered do not match" -msgstr "" - -#: ckan/logic/validators.py:624 -msgid "" -"Edit not allowed as it looks like spam. Please avoid links in your " -"description." -msgstr "" - -#: ckan/logic/validators.py:633 -#, python-format -msgid "Name must be at least %s characters long" -msgstr "" - -#: ckan/logic/validators.py:641 -msgid "That vocabulary name is already in use." -msgstr "" - -#: ckan/logic/validators.py:647 -#, python-format -msgid "Cannot change value of key from %s to %s. This key is read-only" -msgstr "" - -#: ckan/logic/validators.py:656 -msgid "Tag vocabulary was not found." -msgstr "" - -#: ckan/logic/validators.py:669 -#, python-format -msgid "Tag %s does not belong to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:675 -msgid "No tag name" -msgstr "" - -#: ckan/logic/validators.py:688 -#, python-format -msgid "Tag %s already belongs to vocabulary %s" -msgstr "" - -#: ckan/logic/validators.py:711 -msgid "Please provide a valid URL" -msgstr "" - -#: ckan/logic/validators.py:725 -msgid "role does not exist." -msgstr "" - -#: ckan/logic/validators.py:754 -msgid "Datasets with no organization can't be private." -msgstr "" - -#: ckan/logic/validators.py:760 -msgid "Not a list" -msgstr "" - -#: ckan/logic/validators.py:763 -msgid "Not a string" -msgstr "" - -#: ckan/logic/validators.py:795 -msgid "This parent would create a loop in the hierarchy" -msgstr "" - -#: ckan/logic/validators.py:805 -msgid "\"filter_fields\" and \"filter_values\" should have the same length" -msgstr "" - -#: ckan/logic/validators.py:816 -msgid "\"filter_fields\" is required when \"filter_values\" is filled" -msgstr "" - -#: ckan/logic/validators.py:819 -msgid "\"filter_values\" is required when \"filter_fields\" is filled" -msgstr "" - -#: ckan/logic/validators.py:833 -msgid "There is a schema field with the same name" -msgstr "" - -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 -#, python-format -msgid "REST API: Create object %s" -msgstr "" - -#: ckan/logic/action/create.py:517 -#, python-format -msgid "REST API: Create package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/create.py:558 -#, python-format -msgid "REST API: Create member object %s" -msgstr "" - -#: ckan/logic/action/create.py:772 -msgid "Trying to create an organization as a group" -msgstr "" - -#: ckan/logic/action/create.py:859 -msgid "You must supply a package id or name (parameter \"package\")." -msgstr "" - -#: ckan/logic/action/create.py:862 -msgid "You must supply a rating (parameter \"rating\")." -msgstr "" - -#: ckan/logic/action/create.py:867 -msgid "Rating must be an integer value." -msgstr "" - -#: ckan/logic/action/create.py:871 -#, python-format -msgid "Rating must be between %i and %i." -msgstr "" - -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 -msgid "You must be logged in to follow users" -msgstr "" - -#: ckan/logic/action/create.py:1236 -msgid "You cannot follow yourself" -msgstr "" - -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 -msgid "You are already following {0}" -msgstr "" - -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 -msgid "You must be logged in to follow a dataset." -msgstr "" - -#: ckan/logic/action/create.py:1335 -msgid "User {username} does not exist." -msgstr "" - -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 -msgid "You must be logged in to follow a group." -msgstr "" - -#: ckan/logic/action/delete.py:68 -#, python-format -msgid "REST API: Delete Package: %s" -msgstr "" - -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 -#, python-format -msgid "REST API: Delete %s" -msgstr "" - -#: ckan/logic/action/delete.py:270 -#, python-format -msgid "REST API: Delete Member: %s" -msgstr "" - -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 -msgid "id not in data" -msgstr "" - -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 -#, python-format -msgid "Could not find vocabulary \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:501 -#, python-format -msgid "Could not find tag \"%s\"" -msgstr "" - -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 -msgid "You must be logged in to unfollow something." -msgstr "" - -#: ckan/logic/action/delete.py:542 -msgid "You are not following {0}." -msgstr "" - -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 -msgid "Resource was not found." -msgstr "" - -#: ckan/logic/action/get.py:1851 -msgid "Do not specify if using \"query\" parameter" -msgstr "" - -#: ckan/logic/action/get.py:1860 -msgid "Must be : pair(s)" -msgstr "" - -#: ckan/logic/action/get.py:1892 -msgid "Field \"{field}\" not recognised in resource_search." -msgstr "" - -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "" - -#: ckan/logic/action/update.py:65 -msgid "Item was not found." -msgstr "" - -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 -msgid "Package was not found." -msgstr "" - -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 -#, python-format -msgid "REST API: Update object %s" -msgstr "" - -#: ckan/logic/action/update.py:437 -#, python-format -msgid "REST API: Update package relationship: %s %s %s" -msgstr "" - -#: ckan/logic/action/update.py:789 -msgid "TaskStatus was not found." -msgstr "" - -#: ckan/logic/action/update.py:1180 -msgid "Organization was not found." -msgstr "" - -#: ckan/logic/auth/create.py:25 ckan/logic/auth/create.py:43 -#, python-format -msgid "User %s not authorized to create packages" -msgstr "" - -#: ckan/logic/auth/create.py:29 ckan/logic/auth/update.py:43 -#, python-format -msgid "User %s not authorized to edit these groups" -msgstr "" - -#: ckan/logic/auth/create.py:36 -#, python-format -msgid "User %s not authorized to add dataset to this organization" -msgstr "" - -#: ckan/logic/auth/create.py:58 -msgid "You must be a sysadmin to create a featured related item" -msgstr "" - -#: ckan/logic/auth/create.py:62 -msgid "You must be logged in to add a related item" -msgstr "" - -#: ckan/logic/auth/create.py:77 -msgid "No dataset id provided, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 -#: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 -msgid "No package found for this resource, cannot check auth." -msgstr "" - -#: ckan/logic/auth/create.py:92 -#, python-format -msgid "User %s not authorized to create resources on dataset %s" -msgstr "" - -#: ckan/logic/auth/create.py:115 -#, python-format -msgid "User %s not authorized to edit these packages" -msgstr "" - -#: ckan/logic/auth/create.py:126 -#, python-format -msgid "User %s not authorized to create groups" -msgstr "" - -#: ckan/logic/auth/create.py:136 -#, python-format -msgid "User %s not authorized to create organizations" -msgstr "" - -#: ckan/logic/auth/create.py:152 -msgid "User {user} not authorized to create users via the API" -msgstr "" - -#: ckan/logic/auth/create.py:155 -msgid "Not authorized to create users" -msgstr "" - -#: ckan/logic/auth/create.py:198 -msgid "Group was not found." -msgstr "" - -#: ckan/logic/auth/create.py:218 -msgid "Valid API key needed to create a package" -msgstr "" - -#: ckan/logic/auth/create.py:226 -msgid "Valid API key needed to create a group" -msgstr "" - -#: ckan/logic/auth/create.py:246 -#, python-format -msgid "User %s not authorized to add members" -msgstr "" - -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 -#, python-format -msgid "User %s not authorized to edit group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:34 -#, python-format -msgid "User %s not authorized to delete resource %s" -msgstr "" - -#: ckan/logic/auth/delete.py:50 -msgid "Resource view not found, cannot check auth." -msgstr "" - -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 -msgid "Only the owner can delete a related item" -msgstr "" - -#: ckan/logic/auth/delete.py:86 -#, python-format -msgid "User %s not authorized to delete relationship %s" -msgstr "" - -#: ckan/logic/auth/delete.py:95 -#, python-format -msgid "User %s not authorized to delete groups" -msgstr "" - -#: ckan/logic/auth/delete.py:99 -#, python-format -msgid "User %s not authorized to delete group %s" -msgstr "" - -#: ckan/logic/auth/delete.py:116 -#, python-format -msgid "User %s not authorized to delete organizations" -msgstr "" - -#: ckan/logic/auth/delete.py:120 -#, python-format -msgid "User %s not authorized to delete organization %s" -msgstr "" - -#: ckan/logic/auth/delete.py:133 -#, python-format -msgid "User %s not authorized to delete task_status" -msgstr "" - -#: ckan/logic/auth/get.py:97 -#, python-format -msgid "User %s not authorized to read these packages" -msgstr "" - -#: ckan/logic/auth/get.py:119 -#, python-format -msgid "User %s not authorized to read package %s" -msgstr "" - -#: ckan/logic/auth/get.py:141 -#, python-format -msgid "User %s not authorized to read resource %s" -msgstr "" - -#: ckan/logic/auth/get.py:166 -#, python-format -msgid "User %s not authorized to read group %s" -msgstr "" - -#: ckan/logic/auth/get.py:234 -msgid "You must be logged in to access your dashboard." -msgstr "" - -#: ckan/logic/auth/update.py:37 -#, python-format -msgid "User %s not authorized to edit package %s" -msgstr "" - -#: ckan/logic/auth/update.py:69 -#, python-format -msgid "User %s not authorized to edit resource %s" -msgstr "" - -#: ckan/logic/auth/update.py:98 -#, python-format -msgid "User %s not authorized to change state of package %s" -msgstr "" - -#: ckan/logic/auth/update.py:126 -#, python-format -msgid "User %s not authorized to edit organization %s" -msgstr "" - -#: ckan/logic/auth/update.py:137 ckan/logic/auth/update.py:143 -msgid "Only the owner can update a related item" -msgstr "" - -#: ckan/logic/auth/update.py:148 -msgid "You must be a sysadmin to change a related item's featured field." -msgstr "" - -#: ckan/logic/auth/update.py:165 -#, python-format -msgid "User %s not authorized to change state of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:182 -#, python-format -msgid "User %s not authorized to edit permissions of group %s" -msgstr "" - -#: ckan/logic/auth/update.py:209 -msgid "Have to be logged in to edit user" -msgstr "" - -#: ckan/logic/auth/update.py:217 -#, python-format -msgid "User %s not authorized to edit user %s" -msgstr "" - -#: ckan/logic/auth/update.py:228 -msgid "User {0} not authorized to update user {1}" -msgstr "" - -#: ckan/logic/auth/update.py:236 -#, python-format -msgid "User %s not authorized to change state of revision" -msgstr "" - -#: ckan/logic/auth/update.py:245 -#, python-format -msgid "User %s not authorized to update task_status table" -msgstr "" - -#: ckan/logic/auth/update.py:259 -#, python-format -msgid "User %s not authorized to update term_translation table" -msgstr "" - -#: ckan/logic/auth/update.py:281 -msgid "Valid API key needed to edit a package" -msgstr "" - -#: ckan/logic/auth/update.py:291 -msgid "Valid API key needed to edit a group" -msgstr "" - -#: ckan/model/license.py:177 -msgid "License not specified" -msgstr "" - -#: ckan/model/license.py:187 -msgid "Open Data Commons Public Domain Dedication and License (PDDL)" -msgstr "" - -#: ckan/model/license.py:197 -msgid "Open Data Commons Open Database License (ODbL)" -msgstr "" - -#: ckan/model/license.py:207 -msgid "Open Data Commons Attribution License" -msgstr "" - -#: ckan/model/license.py:218 -msgid "Creative Commons CCZero" -msgstr "" - -#: ckan/model/license.py:227 -msgid "Creative Commons Attribution" -msgstr "" - -#: ckan/model/license.py:237 -msgid "Creative Commons Attribution Share-Alike" -msgstr "" - -#: ckan/model/license.py:246 -msgid "GNU Free Documentation License" -msgstr "" - -#: ckan/model/license.py:256 -msgid "Other (Open)" -msgstr "" - -#: ckan/model/license.py:266 -msgid "Other (Public Domain)" -msgstr "" - -#: ckan/model/license.py:276 -msgid "Other (Attribution)" -msgstr "" - -#: ckan/model/license.py:288 -msgid "UK Open Government Licence (OGL)" -msgstr "" - -#: ckan/model/license.py:296 -msgid "Creative Commons Non-Commercial (Any)" -msgstr "" - -#: ckan/model/license.py:304 -msgid "Other (Non-Commercial)" -msgstr "" - -#: ckan/model/license.py:312 -msgid "Other (Not Open)" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "depends on %s" -msgstr "" - -#: ckan/model/package_relationship.py:52 -#, python-format -msgid "is a dependency of %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "derives from %s" -msgstr "" - -#: ckan/model/package_relationship.py:53 -#, python-format -msgid "has derivation %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "links to %s" -msgstr "" - -#: ckan/model/package_relationship.py:54 -#, python-format -msgid "is linked from %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a child of %s" -msgstr "" - -#: ckan/model/package_relationship.py:55 -#, python-format -msgid "is a parent of %s" -msgstr "" - -#: ckan/model/package_relationship.py:59 -#, python-format -msgid "has sibling %s" -msgstr "" - -#: ckan/public/base/javascript/modules/activity-stream.js:20 -#: ckan/public/base/javascript/modules/popover-context.js:45 -#: ckan/templates/package/snippets/data_api_button.html:8 -#: ckan/templates/tests/mock_json_resource_preview_template.html:7 -#: ckan/templates/tests/mock_resource_preview_template.html:7 -#: ckanext/reclineview/theme/templates/recline_view.html:12 -#: ckanext/textview/theme/templates/text_view.html:9 -msgid "Loading..." -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:20 -msgid "There is no API data to load for this resource" -msgstr "" - -#: ckan/public/base/javascript/modules/api-info.js:21 -msgid "Failed to load data API information" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:31 -msgid "No matches found" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:32 -msgid "Start typing…" -msgstr "" - -#: ckan/public/base/javascript/modules/autocomplete.js:34 -msgid "Input is too short, must be at least one character" -msgstr "" - -#: ckan/public/base/javascript/modules/basic-form.js:4 -msgid "There are unsaved modifications to this form" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:7 -msgid "Please Confirm Action" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:8 -msgid "Are you sure you want to perform this action?" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:9 -#: ckan/templates/user/new_user_form.html:9 -#: ckan/templates/user/perform_reset.html:21 -msgid "Confirm" -msgstr "" - -#: ckan/public/base/javascript/modules/confirm-action.js:10 -#: ckan/public/base/javascript/modules/resource-reorder.js:11 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:11 -#: ckan/templates/admin/confirm_reset.html:9 -#: ckan/templates/group/confirm_delete.html:14 -#: ckan/templates/group/confirm_delete_member.html:15 -#: ckan/templates/organization/confirm_delete.html:14 -#: ckan/templates/organization/confirm_delete_member.html:15 -#: ckan/templates/package/confirm_delete.html:14 -#: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 -msgid "Cancel" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:23 -#: ckan/templates/snippets/follow_button.html:14 -msgid "Follow" -msgstr "" - -#: ckan/public/base/javascript/modules/follow.js:24 -#: ckan/templates/snippets/follow_button.html:9 -msgid "Unfollow" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:15 -msgid "Upload" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:16 -msgid "Link" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:17 -#: ckan/templates/group/snippets/group_item.html:43 -#: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 -msgid "Remove" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 -msgid "Image" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:19 -msgid "Upload a file on your computer" -msgstr "" - -#: ckan/public/base/javascript/modules/image-upload.js:20 -msgid "Link to a URL on the internet (you can also link to an API)" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:25 -msgid "show more" -msgstr "" - -#: ckan/public/base/javascript/modules/related-item.js:26 -msgid "show less" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:8 -msgid "Reorder resources" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:9 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:9 -msgid "Save order" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-reorder.js:10 -#: ckan/public/base/javascript/modules/resource-view-reorder.js:10 -msgid "Saving..." -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:25 -msgid "Upload a file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:26 -msgid "An Error Occurred" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:27 -msgid "Resource uploaded" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:28 -msgid "Unable to upload file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:29 -msgid "Unable to authenticate upload" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:30 -msgid "Unable to get data for uploaded file" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-upload-field.js:31 -msgid "" -"You are uploading a file. Are you sure you want to navigate away and stop " -"this upload?" -msgstr "" - -#: ckan/public/base/javascript/modules/resource-view-reorder.js:8 -msgid "Reorder resource view" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:35 -#: ckan/templates/group/snippets/group_form.html:18 -#: ckan/templates/organization/snippets/organization_form.html:18 -#: ckan/templates/package/snippets/package_basic_fields.html:13 -#: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 -msgid "URL" -msgstr "" - -#: ckan/public/base/javascript/modules/slug-preview.js:36 -#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:32 -#: ckan/templates/organization/bulk_process.html:65 -#: ckan/templates/organization/edit.html:3 -#: ckan/templates/organization/edit_base.html:22 -#: ckan/templates/organization/members.html:32 -#: ckan/templates/package/edit_base.html:11 -#: ckan/templates/package/resource_edit.html:3 -#: ckan/templates/package/resource_edit_base.html:12 -#: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 -msgid "Edit" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:9 -msgid "Show more" -msgstr "" - -#: ckan/public/base/javascript/modules/table-toggle-more.js:10 -msgid "Hide" -msgstr "" - -#: ckan/templates/error_document_template.html:3 -#, python-format -msgid "Error %(error_code)s" -msgstr "" - -#: ckan/templates/footer.html:9 -msgid "About {0}" -msgstr "" - -#: ckan/templates/footer.html:15 -msgid "CKAN API" -msgstr "" - -#: ckan/templates/footer.html:16 -msgid "Open Knowledge Foundation" -msgstr "" - -#: ckan/templates/footer.html:24 -msgid "" -"Powered by CKAN" -msgstr "" - -#: ckan/templates/header.html:12 -msgid "Sysadmin settings" -msgstr "" - -#: ckan/templates/header.html:18 -msgid "View profile" -msgstr "" - -#: ckan/templates/header.html:25 -#, python-format -msgid "Dashboard (%(num)d new item)" -msgid_plural "Dashboard (%(num)d new items)" -msgstr[0] "" - -#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 -msgid "Edit settings" -msgstr "" - -#: ckan/templates/header.html:40 -msgid "Log out" -msgstr "" - -#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:15 -msgid "Log in" -msgstr "" - -#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 -msgid "Register" -msgstr "" - -#: ckan/templates/header.html:99 ckan/templates/group/read_base.html:17 -#: ckan/templates/group/snippets/info.html:36 -#: ckan/templates/organization/bulk_process.html:20 -#: ckan/templates/organization/edit_base.html:23 -#: ckan/templates/organization/read_base.html:17 -#: ckan/templates/package/base.html:7 ckan/templates/package/base.html:17 -#: ckan/templates/package/base.html:21 ckan/templates/package/search.html:4 -#: ckan/templates/package/search.html:7 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 -#: ckan/templates/related/base_form_page.html:4 -#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 -#: ckan/templates/snippets/organization.html:59 -#: ckan/templates/snippets/context/group.html:17 -#: ckan/templates/snippets/context/user.html:19 -#: ckan/templates/user/read.html:5 ckan/templates/user/read_base.html:19 -#: ckan/templates/user/read_base.html:53 -msgid "Datasets" -msgstr "" - -#: ckan/templates/header.html:112 -msgid "Search Datasets" -msgstr "" - -#: ckan/templates/header.html:113 ckan/templates/home/snippets/search.html:11 -#: ckan/templates/snippets/simple_search.html:5 -#: ckan/templates/tag/index.html:35 -#: ckan/templates/user/snippets/user_search.html:6 -#: ckan/templates/user/snippets/user_search.html:7 -msgid "Search" -msgstr "" - -#: ckan/templates/page.html:6 -msgid "Skip to content" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:9 -msgid "Load less" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:17 -msgid "Load more" -msgstr "" - -#: ckan/templates/activity_streams/activity_stream_items.html:23 -msgid "No activities are within this activity stream" -msgstr "" - -#: ckan/templates/admin/base.html:3 -msgid "Administration" -msgstr "" - -#: ckan/templates/admin/base.html:8 -msgid "Sysadmins" -msgstr "" - -#: ckan/templates/admin/base.html:9 -msgid "Config" -msgstr "" - -#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 -msgid "Trash" -msgstr "" - -#: ckan/templates/admin/config.html:11 -#: ckan/templates/admin/confirm_reset.html:7 -msgid "Are you sure you want to reset the config?" -msgstr "" - -#: ckan/templates/admin/config.html:12 -msgid "Reset" -msgstr "" - -#: ckan/templates/admin/config.html:13 -msgid "Update Config" -msgstr "" - -#: ckan/templates/admin/config.html:22 -msgid "CKAN config options" -msgstr "" - -#: ckan/templates/admin/config.html:29 -#, python-format -msgid "" -"

Site Title: This is the title of this CKAN instance It " -"appears in various places throughout CKAN.

Style: " -"Choose from a list of simple variations of the main colour scheme to get a " -"very quick custom theme working.

Site Tag Logo: This" -" is the logo that appears in the header of all the CKAN instance " -"templates.

About: This text will appear on this CKAN" -" instances about page.

Intro " -"Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" -"

Custom CSS: This is a block of CSS that appears in " -"<head> tag of every page. If you wish to customize the " -"templates more fully we recommend reading the documentation.

" -"

Homepage: This is for choosing a predefined layout for " -"the modules that appear on your homepage.

" -msgstr "" - -#: ckan/templates/admin/confirm_reset.html:3 -#: ckan/templates/admin/confirm_reset.html:10 -msgid "Confirm Reset" -msgstr "" - -#: ckan/templates/admin/index.html:15 -msgid "Administer CKAN" -msgstr "" - -#: ckan/templates/admin/index.html:20 -#, python-format -msgid "" -"

As a sysadmin user you have full control over this CKAN instance. " -"Proceed with care!

For guidance on using sysadmin features, see the " -"CKAN sysadmin guide

" -msgstr "" - -#: ckan/templates/admin/trash.html:20 -msgid "Purge" -msgstr "" - -#: ckan/templates/admin/trash.html:32 -msgid "

Purge deleted datasets forever and irreversibly.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:19 -msgid "CKAN Data API" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:23 -msgid "Access resource data via a web API with powerful query support" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:24 -msgid "" -" Further information in the main CKAN Data API and DataStore documentation.

" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:33 -msgid "Endpoints" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:37 -msgid "" -"The Data API can be accessed via the following actions of the CKAN action " -"API." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 -msgid "Create" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:46 -msgid "Update / Insert" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:50 -msgid "Query" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:54 -msgid "Query (via SQL)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:66 -msgid "Querying" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:70 -msgid "Query example (first 5 results)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:75 -msgid "Query example (results containing 'jones')" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:81 -msgid "Query example (via SQL statement)" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:93 -msgid "Example: Javascript" -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:97 -msgid "A simple ajax (JSONP) request to the data API using jQuery." -msgstr "" - -#: ckan/templates/ajax_snippets/api_info.html:118 -msgid "Example: Python" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:9 -msgid "This resource can not be previewed at the moment." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:11 -#: ckan/templates/package/resource_read.html:118 -#: ckan/templates/package/snippets/resource_view.html:26 -msgid "Click here for more information." -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:18 -#: ckan/templates/package/snippets/resource_view.html:33 -msgid "Download resource" -msgstr "" - -#: ckan/templates/dataviewer/snippets/data_preview.html:23 -#: ckan/templates/package/snippets/resource_view.html:56 -#: ckanext/webpageview/theme/templates/webpage_view.html:2 -msgid "Your browser does not support iframes." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:3 -msgid "No preview available." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:5 -msgid "More details..." -msgstr "" - -#: ckan/templates/dataviewer/snippets/no_preview.html:12 -#, python-format -msgid "No handler defined for data type: %(type)s." -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard" -msgstr "" - -#: ckan/templates/development/snippets/form.html:5 -msgid "Standard Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium" -msgstr "" - -#: ckan/templates/development/snippets/form.html:6 -msgid "Medium Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full" -msgstr "" - -#: ckan/templates/development/snippets/form.html:7 -msgid "Full Width Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large" -msgstr "" - -#: ckan/templates/development/snippets/form.html:8 -msgid "Large Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend" -msgstr "" - -#: ckan/templates/development/snippets/form.html:9 -msgid "Prepend Input" -msgstr "" - -#: ckan/templates/development/snippets/form.html:13 -msgid "Custom Field (empty)" -msgstr "" - -#: ckan/templates/development/snippets/form.html:19 -#: ckan/templates/group/snippets/group_form.html:35 -#: ckan/templates/group/snippets/group_form.html:48 -#: ckan/templates/organization/snippets/organization_form.html:35 -#: ckan/templates/organization/snippets/organization_form.html:48 -#: ckan/templates/snippets/custom_form_fields.html:20 -#: ckan/templates/snippets/custom_form_fields.html:37 -msgid "Custom Field" -msgstr "" - -#: ckan/templates/development/snippets/form.html:22 -msgid "Markdown" -msgstr "" - -#: ckan/templates/development/snippets/form.html:23 -msgid "Textarea" -msgstr "" - -#: ckan/templates/development/snippets/form.html:24 -msgid "Select" -msgstr "" - -#: ckan/templates/group/activity_stream.html:3 -#: ckan/templates/group/activity_stream.html:6 -#: ckan/templates/group/read_base.html:18 -#: ckan/templates/organization/activity_stream.html:3 -#: ckan/templates/organization/activity_stream.html:6 -#: ckan/templates/organization/read_base.html:18 -#: ckan/templates/package/activity.html:3 -#: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 -#: ckan/templates/user/activity_stream.html:3 -#: ckan/templates/user/activity_stream.html:6 -#: ckan/templates/user/read_base.html:20 -msgid "Activity Stream" -msgstr "" - -#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 -#: ckan/templates/organization/admins.html:3 -#: ckan/templates/organization/admins.html:6 -msgid "Administrators" -msgstr "" - -#: ckan/templates/group/base_form_page.html:7 -msgid "Add a Group" -msgstr "" - -#: ckan/templates/group/base_form_page.html:11 -msgid "Group Form" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:3 -#: ckan/templates/group/confirm_delete.html:15 -#: ckan/templates/group/confirm_delete_member.html:3 -#: ckan/templates/group/confirm_delete_member.html:16 -#: ckan/templates/organization/confirm_delete.html:3 -#: ckan/templates/organization/confirm_delete.html:15 -#: ckan/templates/organization/confirm_delete_member.html:3 -#: ckan/templates/organization/confirm_delete_member.html:16 -#: ckan/templates/package/confirm_delete.html:3 -#: ckan/templates/package/confirm_delete.html:15 -#: ckan/templates/package/confirm_delete_resource.html:3 -#: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 -msgid "Confirm Delete" -msgstr "" - -#: ckan/templates/group/confirm_delete.html:11 -msgid "Are you sure you want to delete group - {name}?" -msgstr "" - -#: ckan/templates/group/confirm_delete_member.html:11 -#: ckan/templates/organization/confirm_delete_member.html:11 -msgid "Are you sure you want to delete member - {name}?" -msgstr "" - -#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 -#: ckan/templates/group/edit_base.html:11 -#: ckan/templates/group/read_base.html:12 -#: ckan/templates/organization/edit_base.html:11 -#: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 -#: ckan/templates/package/resource_read.html:31 -#: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/read_base.html:14 -msgid "Manage" -msgstr "" - -#: ckan/templates/group/edit.html:12 -msgid "Edit Group" -msgstr "" - -#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 -#: ckan/templates/organization/edit_base.html:24 -#: ckan/templates/organization/members.html:3 -msgid "Members" -msgstr "" - -#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 -#: ckan/templates/group/snippets/info.html:32 -#: ckan/templates/package/followers.html:3 -#: ckan/templates/package/followers.html:6 -#: ckan/templates/package/snippets/info.html:23 -#: ckan/templates/snippets/organization.html:55 -#: ckan/templates/snippets/context/group.html:13 -#: ckan/templates/snippets/context/user.html:15 -#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 -#: ckan/templates/user/read_base.html:49 -#: ckanext/example_theme/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 -msgid "Followers" -msgstr "" - -#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 -#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 -msgid "History" -msgstr "" - -#: ckan/templates/group/index.html:13 -#: ckan/templates/user/dashboard_groups.html:7 -msgid "Add Group" -msgstr "" - -#: ckan/templates/group/index.html:20 -msgid "Search groups..." -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:16 -#: ckan/templates/organization/bulk_process.html:97 -#: ckan/templates/organization/read.html:20 -#: ckan/templates/package/search.html:30 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:15 -#: ckanext/example_idatasetform/templates/package/search.html:13 -msgid "Name Ascending" -msgstr "" - -#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:17 -#: ckan/templates/organization/bulk_process.html:98 -#: ckan/templates/organization/read.html:21 -#: ckan/templates/package/search.html:31 -#: ckan/templates/snippets/search_form.html:4 -#: ckan/templates/snippets/simple_search.html:10 -#: ckan/templates/snippets/sort_by.html:16 -#: ckanext/example_idatasetform/templates/package/search.html:14 -msgid "Name Descending" -msgstr "" - -#: ckan/templates/group/index.html:29 -msgid "There are currently no groups for this site" -msgstr "" - -#: ckan/templates/group/index.html:31 -#: ckan/templates/organization/index.html:31 -msgid "How about creating one?" -msgstr "" - -#: ckan/templates/group/member_new.html:8 -#: ckan/templates/organization/member_new.html:10 -msgid "Back to all members" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -msgid "Edit Member" -msgstr "" - -#: ckan/templates/group/member_new.html:10 -#: ckan/templates/group/member_new.html:65 ckan/templates/group/members.html:6 -#: ckan/templates/organization/member_new.html:7 -#: ckan/templates/organization/member_new.html:12 -#: ckan/templates/organization/member_new.html:66 -#: ckan/templates/organization/members.html:6 -msgid "Add Member" -msgstr "" - -#: ckan/templates/group/member_new.html:18 -#: ckan/templates/organization/member_new.html:20 -msgid "Existing User" -msgstr "" - -#: ckan/templates/group/member_new.html:21 -#: ckan/templates/organization/member_new.html:23 -msgid "If you wish to add an existing user, search for their username below." -msgstr "" - -#: ckan/templates/group/member_new.html:38 -#: ckan/templates/organization/member_new.html:40 -msgid "or" -msgstr "" - -#: ckan/templates/group/member_new.html:42 -#: ckan/templates/organization/member_new.html:44 -msgid "New User" -msgstr "" - -#: ckan/templates/group/member_new.html:45 -#: ckan/templates/organization/member_new.html:47 -msgid "If you wish to invite a new user, enter their email address." -msgstr "" - -#: ckan/templates/group/member_new.html:55 -#: ckan/templates/group/members.html:18 -#: ckan/templates/organization/member_new.html:56 -#: ckan/templates/organization/members.html:18 -msgid "Role" -msgstr "" - -#: ckan/templates/group/member_new.html:58 -#: ckan/templates/group/members.html:30 -#: ckan/templates/organization/member_new.html:59 -#: ckan/templates/organization/members.html:30 -msgid "Are you sure you want to delete this member?" -msgstr "" - -#: ckan/templates/group/member_new.html:59 -#: ckan/templates/group/members.html:35 -#: ckan/templates/group/snippets/group_form.html:61 -#: ckan/templates/organization/bulk_process.html:47 -#: ckan/templates/organization/member_new.html:60 -#: ckan/templates/organization/members.html:35 -#: ckan/templates/organization/snippets/organization_form.html:61 -#: ckan/templates/package/edit_view.html:19 -#: ckan/templates/package/snippets/package_form.html:40 -#: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 -#: ckan/templates/revision/read.html:24 -#: ckan/templates/user/edit_user_form.html:38 -msgid "Delete" -msgstr "" - -#: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 -msgid "Save" -msgstr "" - -#: ckan/templates/group/member_new.html:78 -#: ckan/templates/organization/member_new.html:79 -msgid "What are roles?" -msgstr "" - -#: ckan/templates/group/member_new.html:81 -msgid "" -"

Admin: Can edit group information, as well as manage " -"organization members.

Member: Can add/remove " -"datasets from groups

" -msgstr "" - -#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 -#: ckan/templates/group/new.html:7 -msgid "Create a Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:17 -msgid "Update Group" -msgstr "" - -#: ckan/templates/group/new_group_form.html:19 -msgid "Create Group" -msgstr "" - -#: ckan/templates/group/read.html:15 ckan/templates/organization/read.html:19 -#: ckan/templates/package/search.html:29 -#: ckan/templates/snippets/sort_by.html:14 -#: ckanext/example_idatasetform/templates/package/search.html:12 -msgid "Relevance" -msgstr "" - -#: ckan/templates/group/read.html:18 -#: ckan/templates/organization/bulk_process.html:99 -#: ckan/templates/organization/read.html:22 -#: ckan/templates/package/search.html:32 -#: ckan/templates/package/snippets/resource_form.html:51 -#: ckan/templates/snippets/sort_by.html:17 -#: ckanext/example_idatasetform/templates/package/search.html:15 -msgid "Last Modified" -msgstr "" - -#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:23 -#: ckan/templates/package/search.html:33 -#: ckan/templates/snippets/package_item.html:50 -#: ckan/templates/snippets/popular.html:3 -#: ckan/templates/snippets/sort_by.html:19 -#: ckanext/example_idatasetform/templates/package/search.html:18 -msgid "Popular" -msgstr "" - -#: ckan/templates/group/read.html:21 ckan/templates/organization/read.html:25 -#: ckan/templates/snippets/search_form.html:3 -msgid "Search datasets..." -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:3 -msgid "Datasets in group: {group}" -msgstr "" - -#: ckan/templates/group/snippets/feeds.html:4 -#: ckan/templates/organization/snippets/feeds.html:4 -msgid "Recent Revision History" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -#: ckan/templates/organization/snippets/organization_form.html:10 -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "Name" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:10 -msgid "My Group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:18 -msgid "my-group" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -#: ckan/templates/organization/snippets/organization_form.html:20 -#: ckan/templates/package/snippets/package_basic_fields.html:19 -#: ckan/templates/package/snippets/resource_form.html:32 -#: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 -msgid "Description" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:20 -msgid "A little information about my group..." -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:60 -msgid "Are you sure you want to delete this Group?" -msgstr "" - -#: ckan/templates/group/snippets/group_form.html:64 -msgid "Save Group" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:32 -#: ckan/templates/organization/snippets/organization_item.html:31 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 -msgid "{num} Dataset" -msgid_plural "{num} Datasets" -msgstr[0] "" - -#: ckan/templates/group/snippets/group_item.html:34 -#: ckan/templates/organization/snippets/organization_item.html:33 -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 -msgid "0 Datasets" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:38 -#: ckan/templates/group/snippets/group_item.html:39 -msgid "View {name}" -msgstr "" - -#: ckan/templates/group/snippets/group_item.html:43 -msgid "Remove dataset from this group" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:4 -msgid "What are Groups?" -msgstr "" - -#: ckan/templates/group/snippets/helper.html:8 -msgid "" -" You can use CKAN Groups to create and manage collections of datasets. This " -"could be to catalogue datasets for a particular project or team, or on a " -"particular theme, or as a very simple way to help people find and search " -"your own published datasets. " -msgstr "" - -#: ckan/templates/group/snippets/history_revisions.html:10 -#: ckan/templates/package/snippets/history_revisions.html:10 -msgid "Compare" -msgstr "" - -#: ckan/templates/group/snippets/info.html:16 -#: ckan/templates/organization/bulk_process.html:72 -#: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 -#: ckan/templates/snippets/organization.html:37 -#: ckan/templates/snippets/package_item.html:42 -msgid "Deleted" -msgstr "" - -#: ckan/templates/group/snippets/info.html:24 -#: ckan/templates/package/snippets/package_context.html:7 -#: ckan/templates/snippets/organization.html:45 -msgid "read more" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:7 -#: ckan/templates/package/snippets/revisions_table.html:7 -#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 -#: ckan/templates/revision/read.html:39 -#: ckan/templates/revision/snippets/revisions_list.html:4 -msgid "Revision" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:8 -#: ckan/templates/package/snippets/revisions_table.html:8 -#: ckan/templates/revision/read.html:53 -#: ckan/templates/revision/snippets/revisions_list.html:5 -msgid "Timestamp" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:9 -#: ckan/templates/package/snippets/additional_info.html:25 -#: ckan/templates/package/snippets/additional_info.html:30 -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/revisions_table.html:9 -#: ckan/templates/revision/read.html:50 -#: ckan/templates/revision/snippets/revisions_list.html:6 -msgid "Author" -msgstr "" - -#: ckan/templates/group/snippets/revisions_table.html:10 -#: ckan/templates/package/snippets/revisions_table.html:10 -#: ckan/templates/revision/read.html:56 -#: ckan/templates/revision/snippets/revisions_list.html:8 -msgid "Log Message" -msgstr "" - -#: ckan/templates/home/index.html:4 -msgid "Welcome" -msgstr "" - -#: ckan/templates/home/snippets/about_text.html:1 -msgid "" -"

CKAN is the world’s leading open-source data portal platform.

" -"

CKAN is a complete out-of-the-box software solution that makes data " -"accessible and usable – by providing tools to streamline publishing, " -"sharing, finding and using data (including storage of data and provision of " -"robust data APIs). CKAN is aimed at data publishers (national and regional " -"governments, companies and organizations) wanting to make their data open " -"and available.

CKAN is used by governments and user groups worldwide " -"and powers a variety of official and community data portals including " -"portals for local, national and international government, such as the UK’s " -"data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " -"government portals, as well as city and municipal sites in the US, UK, " -"Argentina, Finland and elsewhere.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features " -"overview: http://ckan.org/features/

" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:8 -msgid "Welcome to CKAN" -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:10 -msgid "" -"This is a nice introductory paragraph about CKAN or the site in general. We " -"don't have any copy to go here yet but soon we will " -msgstr "" - -#: ckan/templates/home/snippets/promoted.html:19 -msgid "This is a featured section" -msgstr "" - -#: ckan/templates/home/snippets/search.html:2 -msgid "E.g. environment" -msgstr "" - -#: ckan/templates/home/snippets/search.html:6 -msgid "Search data" -msgstr "" - -#: ckan/templates/home/snippets/search.html:16 -msgid "Popular tags" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:5 -msgid "{0} statistics" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "dataset" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:10 -msgid "datasets" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organization" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:16 -msgid "organizations" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "group" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:22 -msgid "groups" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "" - -#: ckan/templates/macros/form.html:126 -#, python-format -msgid "" -"You can use Markdown formatting here" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "This field is required" -msgstr "" - -#: ckan/templates/macros/form.html:265 -msgid "Custom" -msgstr "" - -#: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 -msgid "The form contains invalid entries:" -msgstr "" - -#: ckan/templates/macros/form.html:395 -msgid "Required field" -msgstr "" - -#: ckan/templates/macros/form.html:410 -msgid "http://example.com/my-image.jpg" -msgstr "" - -#: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 -msgid "Image URL" -msgstr "" - -#: ckan/templates/macros/form.html:424 -msgid "Clear Upload" -msgstr "" - -#: ckan/templates/organization/base_form_page.html:5 -msgid "Organization Form" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:3 -#: ckan/templates/organization/bulk_process.html:11 -msgid "Edit datasets" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:6 -msgid "Add dataset" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:16 -msgid " found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:18 -msgid "Sorry no datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:37 -msgid "Make public" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:41 -msgid "Make private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:70 -#: ckan/templates/package/read.html:18 -#: ckan/templates/snippets/package_item.html:40 -msgid "Draft" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:75 -#: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 -#: ckan/templates/snippets/package_item.html:31 -#: ckan/templates/snippets/private.html:2 -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "Private" -msgstr "" - -#: ckan/templates/organization/bulk_process.html:88 -msgid "This organization has no datasets associated to it" -msgstr "" - -#: ckan/templates/organization/confirm_delete.html:11 -msgid "Are you sure you want to delete organization - {name}?" -msgstr "" - -#: ckan/templates/organization/edit.html:6 -#: ckan/templates/organization/snippets/info.html:13 -#: ckan/templates/organization/snippets/info.html:16 -msgid "Edit Organization" -msgstr "" - -#: ckan/templates/organization/index.html:13 -#: ckan/templates/user/dashboard_organizations.html:7 -msgid "Add Organization" -msgstr "" - -#: ckan/templates/organization/index.html:20 -msgid "Search organizations..." -msgstr "" - -#: ckan/templates/organization/index.html:29 -msgid "There are currently no organizations for this site" -msgstr "" - -#: ckan/templates/organization/member_new.html:62 -msgid "Update Member" -msgstr "" - -#: ckan/templates/organization/member_new.html:82 -msgid "" -"

Admin: Can add/edit and delete datasets, as well as " -"manage organization members.

Editor: Can add and " -"edit datasets, but not manage organization members.

" -"

Member: Can view the organization's private datasets, " -"but not add new datasets.

" -msgstr "" - -#: ckan/templates/organization/new.html:3 -#: ckan/templates/organization/new.html:5 -#: ckan/templates/organization/new.html:7 -#: ckan/templates/organization/new.html:12 -msgid "Create an Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:17 -msgid "Update Organization" -msgstr "" - -#: ckan/templates/organization/new_organization_form.html:19 -msgid "Create Organization" -msgstr "" - -#: ckan/templates/organization/read.html:5 -#: ckan/templates/package/search.html:16 -#: ckan/templates/user/dashboard_datasets.html:7 -msgid "Add Dataset" -msgstr "" - -#: ckan/templates/organization/snippets/feeds.html:3 -msgid "Datasets in organization: {group}" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:4 -#: ckan/templates/organization/snippets/helper.html:4 -msgid "What are Organizations?" -msgstr "" - -#: ckan/templates/organization/snippets/help.html:7 -msgid "" -"

Organizations act like publishing departments for datasets (for example," -" the Department of Health). This means that datasets can be published by and" -" belong to a department instead of an individual user.

Within " -"organizations, admins can assign roles and authorise its members, giving " -"individual users the right to publish datasets from that particular " -"organisation (e.g. Office of National Statistics).

" -msgstr "" - -#: ckan/templates/organization/snippets/helper.html:8 -msgid "" -" CKAN Organizations are used to create, manage and publish collections of " -"datasets. Users can have different roles within an Organization, depending " -"on their level of authorisation to create, edit and publish. " -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:10 -msgid "My Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:18 -msgid "my-organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:20 -msgid "A little information about my organization..." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:60 -msgid "" -"Are you sure you want to delete this Organization? This will delete all the " -"public and private datasets belonging to this organization." -msgstr "" - -#: ckan/templates/organization/snippets/organization_form.html:64 -msgid "Save Organization" -msgstr "" - -#: ckan/templates/organization/snippets/organization_item.html:37 -#: ckan/templates/organization/snippets/organization_item.html:38 -msgid "View {organization_name}" -msgstr "" - -#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:3 -#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 -msgid "Create Dataset" -msgstr "" - -#: ckan/templates/package/base_form_page.html:22 -msgid "What are datasets?" -msgstr "" - -#: ckan/templates/package/base_form_page.html:25 -msgid "" -" A CKAN Dataset is a collection of data resources (such as files), together " -"with a description and other information, at a fixed URL. Datasets are what " -"users see when searching for data. " -msgstr "" - -#: ckan/templates/package/confirm_delete.html:11 -msgid "Are you sure you want to delete dataset - {name}?" -msgstr "" - -#: ckan/templates/package/confirm_delete_resource.html:11 -msgid "Are you sure you want to delete resource - {name}?" -msgstr "" - -#: ckan/templates/package/edit_base.html:16 -msgid "View dataset" -msgstr "" - -#: ckan/templates/package/edit_base.html:20 -msgid "Edit metadata" -msgstr "" - -#: ckan/templates/package/edit_view.html:3 -#: ckan/templates/package/edit_view.html:4 -#: ckan/templates/package/edit_view.html:8 -#: ckan/templates/package/edit_view.html:12 -msgid "Edit view" -msgstr "" - -#: ckan/templates/package/edit_view.html:20 -#: ckan/templates/package/new_view.html:28 -#: ckan/templates/package/snippets/resource_item.html:33 -#: ckan/templates/snippets/datapreview_embed_dialog.html:16 -msgid "Preview" -msgstr "" - -#: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 -msgid "Update" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Associate this group with this dataset" -msgstr "" - -#: ckan/templates/package/group_list.html:14 -msgid "Add to group" -msgstr "" - -#: ckan/templates/package/group_list.html:23 -msgid "There are no groups associated with this dataset" -msgstr "" - -#: ckan/templates/package/new_package_form.html:15 -msgid "Update Dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:5 -msgid "Add data to the dataset" -msgstr "" - -#: ckan/templates/package/new_resource.html:11 -#: ckan/templates/package/new_resource_not_draft.html:8 -msgid "Add New Resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:3 -#: ckan/templates/package/new_resource_not_draft.html:4 -msgid "Add resource" -msgstr "" - -#: ckan/templates/package/new_resource_not_draft.html:16 -msgid "New resource" -msgstr "" - -#: ckan/templates/package/new_view.html:3 -#: ckan/templates/package/new_view.html:4 -#: ckan/templates/package/new_view.html:8 -#: ckan/templates/package/new_view.html:12 -msgid "Add view" -msgstr "" - -#: ckan/templates/package/new_view.html:19 -msgid "" -" Data Explorer views may be slow and unreliable unless the DataStore " -"extension is enabled. For more information, please see the Data Explorer " -"documentation. " -msgstr "" - -#: ckan/templates/package/new_view.html:29 -#: ckan/templates/package/snippets/resource_form.html:82 -msgid "Add" -msgstr "" - -#: ckan/templates/package/read_base.html:38 -#, python-format -msgid "" -"This is an old revision of this dataset, as edited at %(timestamp)s. It may " -"differ significantly from the current revision." -msgstr "" - -#: ckan/templates/package/related_list.html:7 -msgid "Related Media for {dataset}" -msgstr "" - -#: ckan/templates/package/related_list.html:12 -msgid "No related items" -msgstr "" - -#: ckan/templates/package/related_list.html:17 -msgid "Add Related Item" -msgstr "" - -#: ckan/templates/package/resource_data.html:12 -msgid "Upload to DataStore" -msgstr "" - -#: ckan/templates/package/resource_data.html:19 -msgid "Upload error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:25 -#: ckan/templates/package/resource_data.html:27 -msgid "Error:" -msgstr "" - -#: ckan/templates/package/resource_data.html:45 -msgid "Status" -msgstr "" - -#: ckan/templates/package/resource_data.html:49 -#: ckan/templates/package/resource_read.html:157 -msgid "Last updated" -msgstr "" - -#: ckan/templates/package/resource_data.html:53 -msgid "Never" -msgstr "" - -#: ckan/templates/package/resource_data.html:59 -msgid "Upload Log" -msgstr "" - -#: ckan/templates/package/resource_data.html:71 -msgid "Details" -msgstr "" - -#: ckan/templates/package/resource_data.html:78 -msgid "End of log" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:17 -msgid "All resources" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:19 -msgid "View resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:24 -#: ckan/templates/package/resource_edit_base.html:32 -msgid "Edit resource" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:26 -msgid "DataStore" -msgstr "" - -#: ckan/templates/package/resource_edit_base.html:28 -msgid "Views" -msgstr "" - -#: ckan/templates/package/resource_read.html:39 -msgid "API Endpoint" -msgstr "" - -#: ckan/templates/package/resource_read.html:41 -#: ckan/templates/package/snippets/resource_item.html:48 -msgid "Go to resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:43 -#: ckan/templates/package/snippets/resource_item.html:45 -msgid "Download" -msgstr "" - -#: ckan/templates/package/resource_read.html:59 -#: ckan/templates/package/resource_read.html:61 -msgid "URL:" -msgstr "" - -#: ckan/templates/package/resource_read.html:69 -msgid "From the dataset abstract" -msgstr "" - -#: ckan/templates/package/resource_read.html:71 -#, python-format -msgid "Source: %(dataset)s" -msgstr "" - -#: ckan/templates/package/resource_read.html:112 -msgid "There are no views created for this resource yet." -msgstr "" - -#: ckan/templates/package/resource_read.html:116 -msgid "Not seeing the views you were expecting?" -msgstr "" - -#: ckan/templates/package/resource_read.html:121 -msgid "Here are some reasons you may not be seeing expected views:" -msgstr "" - -#: ckan/templates/package/resource_read.html:123 -msgid "No view has been created that is suitable for this resource" -msgstr "" - -#: ckan/templates/package/resource_read.html:124 -msgid "The site administrators may not have enabled the relevant view plugins" -msgstr "" - -#: ckan/templates/package/resource_read.html:125 -msgid "" -"If a view requires the DataStore, the DataStore plugin may not be enabled, " -"or the data may not have been pushed to the DataStore, or the DataStore " -"hasn't finished processing the data yet" -msgstr "" - -#: ckan/templates/package/resource_read.html:147 -msgid "Additional Information" -msgstr "" - -#: ckan/templates/package/resource_read.html:151 -#: ckan/templates/package/snippets/additional_info.html:6 -#: ckan/templates/revision/diff.html:43 -#: ckan/templates/snippets/additional_info.html:11 -msgid "Field" -msgstr "" - -#: ckan/templates/package/resource_read.html:152 -#: ckan/templates/package/snippets/additional_info.html:7 -#: ckan/templates/snippets/additional_info.html:12 -msgid "Value" -msgstr "" - -#: ckan/templates/package/resource_read.html:158 -#: ckan/templates/package/resource_read.html:162 -#: ckan/templates/package/resource_read.html:166 -msgid "unknown" -msgstr "" - -#: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 -msgid "Created" -msgstr "" - -#: ckan/templates/package/resource_read.html:165 -#: ckan/templates/package/snippets/resource_form.html:37 -#: ckan/templates/package/snippets/resource_info.html:16 -msgid "Format" -msgstr "" - -#: ckan/templates/package/resource_read.html:169 -#: ckan/templates/package/snippets/package_basic_fields.html:30 -#: ckan/templates/snippets/license.html:21 -msgid "License" -msgstr "" - -#: ckan/templates/package/resource_views.html:10 -msgid "New view" -msgstr "" - -#: ckan/templates/package/resource_views.html:28 -msgid "This resource has no views" -msgstr "" - -#: ckan/templates/package/resources.html:8 -msgid "Add new resource" -msgstr "" - -#: ckan/templates/package/resources.html:19 -#: ckan/templates/package/snippets/resources_list.html:25 -#, python-format -msgid "" -"

This dataset has no data, why not " -"add some?

" -msgstr "" - -#: ckan/templates/package/search.html:53 -msgid "API Docs" -msgstr "" - -#: ckan/templates/package/search.html:55 -msgid "full {format} dump" -msgstr "" - -#: ckan/templates/package/search.html:56 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s) or download a %(dump_link)s. " -msgstr "" - -#: ckan/templates/package/search.html:60 -#, python-format -msgid "" -" You can also access this registry using the %(api_link)s (see " -"%(api_doc_link)s). " -msgstr "" - -#: ckan/templates/package/view_edit_base.html:9 -msgid "All views" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:12 -msgid "View view" -msgstr "" - -#: ckan/templates/package/view_edit_base.html:37 -msgid "View preview" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:2 -#: ckan/templates/snippets/additional_info.html:7 -msgid "Additional Info" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "Source" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:37 -#: ckan/templates/package/snippets/additional_info.html:42 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -msgid "Maintainer" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:49 -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "Version" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 -#: ckan/templates/user/read_base.html:91 -msgid "State" -msgstr "" - -#: ckan/templates/package/snippets/additional_info.html:62 -msgid "Last Updated" -msgstr "" - -#: ckan/templates/package/snippets/data_api_button.html:10 -msgid "Data API" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -#: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 -msgid "Title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:4 -msgid "eg. A descriptive title" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:13 -msgid "eg. my-dataset" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:19 -msgid "eg. Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:24 -msgid "eg. economy, mental health, government" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:40 -msgid "" -" License definitions and additional information can be found at opendefinition.org " -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:69 -#: ckan/templates/snippets/organization.html:23 -msgid "Organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:73 -msgid "No organization" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:88 -msgid "Visibility" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:91 -msgid "Public" -msgstr "" - -#: ckan/templates/package/snippets/package_basic_fields.html:110 -msgid "Active" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:28 -msgid "" -"The data license you select above only applies to the contents of any" -" resource files that you add to this dataset. By submitting this form, you " -"agree to release the metadata values that you enter into the form " -"under the Open " -"Database License." -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:39 -msgid "Are you sure you want to delete this dataset?" -msgstr "" - -#: ckan/templates/package/snippets/package_form.html:44 -msgid "Next: Add Data" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:6 -msgid "http://example.com/dataset.json" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:10 -msgid "1.0" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:14 -#: ckan/templates/package/snippets/package_metadata_fields.html:20 -#: ckan/templates/user/new_user_form.html:6 -msgid "Joe Bloggs" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -msgid "Author Email" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:16 -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -#: ckan/templates/user/new_user_form.html:7 -msgid "joe@example.com" -msgstr "" - -#: ckan/templates/package/snippets/package_metadata_fields.html:22 -msgid "Maintainer Email" -msgstr "" - -#: ckan/templates/package/snippets/resource_edit_form.html:12 -msgid "Update Resource" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:24 -msgid "File" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:28 -msgid "eg. January 2011 Gold Prices" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:32 -msgid "Some useful notes about the data" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:37 -msgid "eg. CSV, XML or JSON" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:40 -msgid "This will be guessed automatically. Leave blank if you wish" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:51 -msgid "eg. 2012-06-05" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "File Size" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:53 -msgid "eg. 1024" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "MIME Type" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:55 -#: ckan/templates/package/snippets/resource_form.html:57 -msgid "eg. application/json" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:65 -msgid "Are you sure you want to delete this resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:72 -msgid "Previous" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:75 -msgid "Save & add another" -msgstr "" - -#: ckan/templates/package/snippets/resource_form.html:78 -msgid "Finish" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:2 -msgid "What's a resource?" -msgstr "" - -#: ckan/templates/package/snippets/resource_help.html:4 -msgid "A resource can be any file or link to a file containing useful data." -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:24 -msgid "Explore" -msgstr "" - -#: ckan/templates/package/snippets/resource_item.html:36 -msgid "More information" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:10 -msgid "Embed" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:24 -msgid "This resource view is not available at the moment." -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:63 -msgid "Embed resource view" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:66 -msgid "" -"You can copy and paste the embed code into a CMS or blog software that " -"supports raw HTML" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:69 -msgid "Width" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:72 -msgid "Height" -msgstr "" - -#: ckan/templates/package/snippets/resource_view.html:75 -msgid "Code" -msgstr "" - -#: ckan/templates/package/snippets/resource_views_list.html:8 -msgid "Resource Preview" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:13 -msgid "Data and Resources" -msgstr "" - -#: ckan/templates/package/snippets/resources_list.html:29 -msgid "This dataset has no data" -msgstr "" - -#: ckan/templates/package/snippets/revisions_table.html:24 -#, python-format -msgid "Read dataset as of %s" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:23 -#: ckan/templates/package/snippets/stages.html:25 -msgid "Create dataset" -msgstr "" - -#: ckan/templates/package/snippets/stages.html:30 -#: ckan/templates/package/snippets/stages.html:34 -#: ckan/templates/package/snippets/stages.html:36 -msgid "Add data" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:8 -msgid "eg. My View" -msgstr "" - -#: ckan/templates/package/snippets/view_form.html:9 -msgid "eg. Information about my view" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:16 -msgid "Add Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:28 -msgid "Remove Filter" -msgstr "" - -#: ckan/templates/package/snippets/view_form_filters.html:46 -msgid "Filters" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:2 -msgid "What's a view?" -msgstr "" - -#: ckan/templates/package/snippets/view_help.html:4 -msgid "A view is a representation of the data held against a resource" -msgstr "" - -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "" - -#: ckan/templates/revision/diff.html:6 -msgid "Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 -#: ckan/templates/revision/diff.html:23 -msgid "Revision Differences" -msgstr "" - -#: ckan/templates/revision/diff.html:44 -msgid "Difference" -msgstr "" - -#: ckan/templates/revision/diff.html:54 -msgid "No Differences" -msgstr "" - -#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 -#: ckan/templates/revision/list.html:10 -msgid "Revision History" -msgstr "" - -#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 -msgid "Revisions" -msgstr "" - -#: ckan/templates/revision/read.html:30 -msgid "Undelete" -msgstr "" - -#: ckan/templates/revision/read.html:64 -msgid "Changes" -msgstr "" - -#: ckan/templates/revision/read.html:74 -msgid "Datasets' Tags" -msgstr "" - -#: ckan/templates/revision/snippets/revisions_list.html:7 -msgid "Entity" -msgstr "" - -#: ckan/templates/snippets/activity_item.html:3 -msgid "New activity item" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:4 -msgid "Embed Data Viewer" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:8 -msgid "Embed this view by copying this into your webpage:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:10 -msgid "Choose width and height in pixels:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:11 -msgid "Width:" -msgstr "" - -#: ckan/templates/snippets/datapreview_embed_dialog.html:13 -msgid "Height:" -msgstr "" - -#: ckan/templates/snippets/datapusher_status.html:8 -msgid "Datapusher status: {status}." -msgstr "" - -#: ckan/templates/snippets/disqus_trackback.html:2 -msgid "Trackback URL" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:80 -msgid "Show More {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:83 -msgid "Show Only Popular {facet_type}" -msgstr "" - -#: ckan/templates/snippets/facet_list.html:87 -msgid "There are no {facet_type} that match this search" -msgstr "" - -#: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 -msgid "Home" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:4 -msgid "Language" -msgstr "" - -#: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 -#: ckan/templates/snippets/simple_search.html:15 -#: ckan/templates/snippets/sort_by.html:22 -msgid "Go" -msgstr "" - -#: ckan/templates/snippets/license.html:14 -msgid "No License Provided" -msgstr "" - -#: ckan/templates/snippets/license.html:28 -msgid "This dataset satisfies the Open Definition." -msgstr "" - -#: ckan/templates/snippets/organization.html:48 -msgid "There is no description for this organization" -msgstr "" - -#: ckan/templates/snippets/package_item.html:57 -msgid "This dataset has no description" -msgstr "" - -#: ckan/templates/snippets/related.html:15 -msgid "" -"No apps, ideas, news stories or images have been related to this dataset " -"yet." -msgstr "" - -#: ckan/templates/snippets/related.html:18 -msgid "Add Item" -msgstr "" - -#: ckan/templates/snippets/search_form.html:16 -msgid "Submit" -msgstr "" - -#: ckan/templates/snippets/search_form.html:31 -#: ckan/templates/snippets/simple_search.html:8 -#: ckan/templates/snippets/sort_by.html:12 -msgid "Order by" -msgstr "" - -#: ckan/templates/snippets/search_form.html:77 -msgid "

Please try another search.

" -msgstr "" - -#: ckan/templates/snippets/search_form.html:83 -msgid "" -"

There was an error while searching. Please try " -"again.

" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:15 -msgid "{number} dataset found for \"{query}\"" -msgid_plural "{number} datasets found for \"{query}\"" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:16 -msgid "No datasets found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:17 -msgid "{number} dataset found" -msgid_plural "{number} datasets found" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:18 -msgid "No datasets found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:21 -msgid "{number} group found for \"{query}\"" -msgid_plural "{number} groups found for \"{query}\"" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:22 -msgid "No groups found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:23 -msgid "{number} group found" -msgid_plural "{number} groups found" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:24 -msgid "No groups found" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:27 -msgid "{number} organization found for \"{query}\"" -msgid_plural "{number} organizations found for \"{query}\"" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:28 -msgid "No organizations found for \"{query}\"" -msgstr "" - -#: ckan/templates/snippets/search_result_text.html:29 -msgid "{number} organization found" -msgid_plural "{number} organizations found" -msgstr[0] "" - -#: ckan/templates/snippets/search_result_text.html:30 -msgid "No organizations found" -msgstr "" - -#: ckan/templates/snippets/social.html:5 -msgid "Social" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:2 -msgid "Subscribe" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 -#: ckan/templates/user/new_user_form.html:7 -#: ckan/templates/user/read_base.html:82 -msgid "Email" -msgstr "" - -#: ckan/templates/snippets/subscribe.html:5 -msgid "RSS" -msgstr "" - -#: ckan/templates/snippets/context/user.html:23 -#: ckan/templates/user/read_base.html:57 -msgid "Edits" -msgstr "" - -#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 -msgid "Search Tags" -msgstr "" - -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "" - -#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 -msgid "News feed" -msgstr "" - -#: ckan/templates/user/dashboard.html:20 -#: ckan/templates/user/dashboard_datasets.html:12 -msgid "My Datasets" -msgstr "" - -#: ckan/templates/user/dashboard.html:21 -#: ckan/templates/user/dashboard_organizations.html:12 -msgid "My Organizations" -msgstr "" - -#: ckan/templates/user/dashboard.html:22 -#: ckan/templates/user/dashboard_groups.html:12 -msgid "My Groups" -msgstr "" - -#: ckan/templates/user/dashboard.html:39 -msgid "Activity from items that I'm following" -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:17 -#: ckan/templates/user/read.html:14 -msgid "You haven't created any datasets." -msgstr "" - -#: ckan/templates/user/dashboard_datasets.html:19 -#: ckan/templates/user/dashboard_groups.html:22 -#: ckan/templates/user/dashboard_organizations.html:22 -#: ckan/templates/user/read.html:16 -msgid "Create one now?" -msgstr "" - -#: ckan/templates/user/dashboard_groups.html:20 -msgid "You are not a member of any groups." -msgstr "" - -#: ckan/templates/user/dashboard_organizations.html:20 -msgid "You are not a member of any organizations." -msgstr "" - -#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 -#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 -#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 -#: ckan/templates/user/snippets/user_search.html:2 -msgid "Users" -msgstr "" - -#: ckan/templates/user/edit.html:17 -msgid "Account Info" -msgstr "" - -#: ckan/templates/user/edit.html:19 -msgid "" -" Your profile lets other CKAN users know about who you are and what you do. " -msgstr "" - -#: ckan/templates/user/edit_user_form.html:7 -msgid "Change details" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "Full name" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:11 -msgid "eg. Joe Bloggs" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:13 -msgid "eg. joe@example.com" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:15 -msgid "A little information about yourself" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:18 -msgid "Subscribe to notification emails" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:27 -msgid "Change password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:29 -#: ckan/templates/user/logout_first.html:12 -#: ckan/templates/user/new_user_form.html:8 -#: ckan/templates/user/perform_reset.html:20 -#: ckan/templates/user/snippets/login_form.html:22 -msgid "Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:31 -msgid "Confirm Password" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:37 -msgid "Are you sure you want to delete this User?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:43 -msgid "Are you sure you want to regenerate the API key?" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:44 -msgid "Regenerate API Key" -msgstr "" - -#: ckan/templates/user/edit_user_form.html:48 -msgid "Update Profile" -msgstr "" - -#: ckan/templates/user/list.html:3 -#: ckan/templates/user/snippets/user_search.html:11 -msgid "All Users" -msgstr "" - -#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 -#: ckan/templates/user/login.html:12 -#: ckan/templates/user/snippets/login_form.html:28 -msgid "Login" -msgstr "" - -#: ckan/templates/user/login.html:25 -msgid "Need an Account?" -msgstr "" - -#: ckan/templates/user/login.html:27 -msgid "Then sign right up, it only takes a minute." -msgstr "" - -#: ckan/templates/user/login.html:30 -msgid "Create an Account" -msgstr "" - -#: ckan/templates/user/login.html:42 -msgid "Forgotten your password?" -msgstr "" - -#: ckan/templates/user/login.html:44 -msgid "No problem, use our password recovery form to reset it." -msgstr "" - -#: ckan/templates/user/login.html:47 -msgid "Forgot your password?" -msgstr "" - -#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 -msgid "Logged Out" -msgstr "" - -#: ckan/templates/user/logout.html:11 -msgid "You are now logged out." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "You're already logged in as {user}." -msgstr "" - -#: ckan/templates/user/logout_first.html:9 -msgid "Logout" -msgstr "" - -#: ckan/templates/user/logout_first.html:13 -#: ckan/templates/user/snippets/login_form.html:24 -msgid "Remember me" -msgstr "" - -#: ckan/templates/user/logout_first.html:22 -msgid "You're already logged in" -msgstr "" - -#: ckan/templates/user/logout_first.html:24 -msgid "You need to log out before you can log in with another account." -msgstr "" - -#: ckan/templates/user/logout_first.html:25 -msgid "Log out now" -msgstr "" - -#: ckan/templates/user/new.html:6 -msgid "Registration" -msgstr "" - -#: ckan/templates/user/new.html:14 -msgid "Register for an Account" -msgstr "" - -#: ckan/templates/user/new.html:26 -msgid "Why Sign Up?" -msgstr "" - -#: ckan/templates/user/new.html:28 -msgid "Create datasets, groups and other exciting things" -msgstr "" - -#: ckan/templates/user/new_user_form.html:5 -msgid "username" -msgstr "" - -#: ckan/templates/user/new_user_form.html:6 -msgid "Full Name" -msgstr "" - -#: ckan/templates/user/new_user_form.html:17 -msgid "Create Account" -msgstr "" - -#: ckan/templates/user/perform_reset.html:4 -#: ckan/templates/user/perform_reset.html:14 -msgid "Reset Your Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:7 -msgid "Password Reset" -msgstr "" - -#: ckan/templates/user/perform_reset.html:24 -msgid "Update Password" -msgstr "" - -#: ckan/templates/user/perform_reset.html:38 -#: ckan/templates/user/request_reset.html:32 -msgid "How does this work?" -msgstr "" - -#: ckan/templates/user/perform_reset.html:40 -msgid "Simply enter a new password and we'll update your account" -msgstr "" - -#: ckan/templates/user/read.html:21 -msgid "User hasn't created any datasets." -msgstr "" - -#: ckan/templates/user/read_base.html:39 -msgid "You have not provided a biography." -msgstr "" - -#: ckan/templates/user/read_base.html:41 -msgid "This user has no biography." -msgstr "" - -#: ckan/templates/user/read_base.html:73 -msgid "Open ID" -msgstr "" - -#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 -msgid "This means only you can see this" -msgstr "" - -#: ckan/templates/user/read_base.html:87 -msgid "Member Since" -msgstr "" - -#: ckan/templates/user/read_base.html:96 -msgid "API Key" -msgstr "" - -#: ckan/templates/user/request_reset.html:6 -msgid "Password reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:19 -msgid "Request reset" -msgstr "" - -#: ckan/templates/user/request_reset.html:34 -msgid "" -"Enter your username into the box and we will send you an email with a link " -"to enter a new password." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:14 -#: ckan/templates/user/snippets/followee_dropdown.html:15 -msgid "Activity from:" -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:23 -msgid "Search list..." -msgstr "" - -#: ckan/templates/user/snippets/followee_dropdown.html:44 -msgid "You are not following anything" -msgstr "" - -#: ckan/templates/user/snippets/followers.html:9 -msgid "No followers" -msgstr "" - -#: ckan/templates/user/snippets/user_search.html:5 -msgid "Search Users" -msgstr "" - -#: ckanext/datapusher/helpers.py:19 -msgid "Complete" -msgstr "" - -#: ckanext/datapusher/helpers.py:20 -msgid "Pending" -msgstr "" - -#: ckanext/datapusher/helpers.py:21 -msgid "Submitting" -msgstr "" - -#: ckanext/datapusher/helpers.py:27 -msgid "Not Uploaded Yet" -msgstr "" - -#: ckanext/datastore/controller.py:31 -msgid "DataStore resource not found" -msgstr "" - -#: ckanext/datastore/db.py:652 -msgid "" -"The data was invalid (for example: a numeric value is out of range or was " -"inserted into a text field)." -msgstr "" - -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 -msgid "Resource \"{0}\" was not found." -msgstr "" - -#: ckanext/datastore/logic/auth.py:16 -msgid "User {0} not authorized to update resource {1}" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:16 -msgid "Custom Field Ascending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/search.html:17 -msgid "Custom Field Descending" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "Custom Text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 -msgid "custom text" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 -msgid "Country Code" -msgstr "" - -#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 -msgid "custom resource text" -msgstr "" - -#: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 -#: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 -msgid "This group has no description" -msgstr "" - -#: ckanext/example_theme/v12_extra_public_dir/templates/home/snippets/promoted.html:4 -msgid "CKAN's data previewing tool has many powerful features" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "Image url" -msgstr "" - -#: ckanext/imageview/theme/templates/image_form.html:3 -msgid "eg. http://example.com/image.jpg (if blank uses resource url)" -msgstr "" - -#: ckanext/reclineview/plugin.py:82 -msgid "Data Explorer" -msgstr "" - -#: ckanext/reclineview/plugin.py:106 -msgid "Table" -msgstr "" - -#: ckanext/reclineview/plugin.py:149 -msgid "Graph" -msgstr "" - -#: ckanext/reclineview/plugin.py:207 -msgid "Map" -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "Row offset" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 -#: ckanext/reclineview/theme/templates/recline_map_form.html:3 -msgid "eg: 0" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "Number of rows" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 -#: ckanext/reclineview/theme/templates/recline_map_form.html:4 -msgid "eg: 100" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 -msgid "Graph type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 -msgid "Group (Axis 1)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 -msgid "Series (Axis 2)" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:6 -msgid "Field type" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:7 -msgid "Latitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:8 -msgid "Longitude field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:9 -msgid "GeoJSON field" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:10 -msgid "Auto zoom to features" -msgstr "" - -#: ckanext/reclineview/theme/templates/recline_map_form.html:11 -msgid "Cluster markers" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 -msgid "Total number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:17 -#: ckanext/stats/templates/ckanext/stats/index.html:40 -msgid "Date" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:18 -msgid "Total datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:33 -#: ckanext/stats/templates/ckanext/stats/index.html:179 -msgid "Dataset Revisions per Week" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:41 -msgid "All dataset revisions" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:42 -msgid "New datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:58 -#: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 -msgid "Top Rated Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Average rating" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -msgid "Number of ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 -msgid "No ratings" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:84 -#: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 -msgid "Most Edited Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 -msgid "Number of edits" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:103 -msgid "No edited datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:108 -#: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 -msgid "Largest Groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 -msgid "Number of datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:127 -msgid "No groups" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:132 -#: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 -msgid "Top Tags" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:136 -msgid "Tag Name" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:137 -#: ckanext/stats/templates/ckanext/stats/index.html:157 -msgid "Number of Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:152 -#: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:175 -msgid "Statistics Menu" -msgstr "" - -#: ckanext/stats/templates/ckanext/stats/index.html:178 -msgid "Total Number of Datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "" - -#: ckanext/webpageview/plugin.py:24 -msgid "Website" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "Web Page url" -msgstr "" - -#: ckanext/webpageview/theme/templates/webpage_form.html:3 -msgid "eg. http://example.com (if blank uses resource url)" -msgstr "" diff --git a/ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo b/ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo index aa422afabf0..c82f4a7a9a2 100644 Binary files a/ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo and b/ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/zh_CN/LC_MESSAGES/ckan.po b/ckan/i18n/zh_CN/LC_MESSAGES/ckan.po index ec6909d71e2..3978bf314a0 100644 --- a/ckan/i18n/zh_CN/LC_MESSAGES/ckan.po +++ b/ckan/i18n/zh_CN/LC_MESSAGES/ckan.po @@ -10,252 +10,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-01-26 12:22+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/ckan/language/zh_CN/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-11-26 14:23+0000\n" +"Last-Translator: dread \n" +"Language-Team: Chinese (China) (http://www.transifex.com/okfn/ckan/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "授权功能未找到 %s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "管理员" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "编辑者" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "成员" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "必须成为系统管理员才能管理" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "网站标题" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "风格" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "网站标签行" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "网站标签图标" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "关于" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "关于页面文字" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "介绍文字" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "主页文字" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "客户化格式" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "将自定义的CSS插入页面头部" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "首页" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "无法净化组件 %s相关的修订版本%s 包含未刪除的组件 %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "清除变更问题%s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "清理结束" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "动作未执行." -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "没有权限浏览此页 " -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "没有登陆权限" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "未找到" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "错误请求" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "指令名称未知:%s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "JSON 错误:%s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "错误请求的数据:%s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "无法列出此类型的项目:%s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "无法读取此类型的项目:%s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "无法创建此类型的新项目:%s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "无法在搜索索引中加入组件" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "无法更新此类型的项目:%s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "无法更新搜索索引" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "无法删除此类型的项目:%s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "没有指定的修改" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "没有关于此id的修改: %s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "遗漏搜索关键字 ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "无法读取参数: %r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "错误搜索选项: %s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "未知的注册: %s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "格式不正确的 qjson 值: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "请求的参数必须用JSON代码的字典格式." -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "未找到群组" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "错误的群组类别" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "没有权限读取群组 %s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -266,23 +266,23 @@ msgstr "没有权限读取群组 %s" msgid "Organizations" msgstr "机构" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "群组" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -290,394 +290,303 @@ msgstr "群组" msgid "Tags" msgstr "标签" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "格式" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "授权" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "没有权限进行批量更新" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "没有权限创立群组" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "用户%r没有权限编缉%s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "完整性错误" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "用户 %r 无权限修改 %s 的授权" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "没有权限删除群组%s" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "机构已经被删除." -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "群组已经被删除." -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "没有权限加成员到群组%s" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "没有权限删除群组%s成员" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "群组成员已被删除" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "比较之前选择两个修改版本" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "用户%r没有权限编缉%r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN 群组修该历史" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "CKAN 群组最新变更" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "日志信息:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "没有权限读取群组{group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr " 你现在在追随{0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "你不再追随{0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "没有权限浏览追随者%s" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "本网站目前无法运作. 数据库没有初始化." -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "请 更新你的个人资料 并且输入你的电子邮件地址以及全名。{site} 若你需要重设密码, 请用你的电子邮件地址." - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "請 更新你的个人资料 并且加入你的电子邮件地址。" -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s用你的电子邮件地址, 若你需要重设你的密码." -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "请更新你的个人资料和加入你的全名." - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "参数\"{parameter_name}\"并非整型" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "数据集未找到" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "没有权限读取组件 %s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "修改格式无效:%r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "不支持查看 {format} 格式的 {package_type} 数据集 (模板文件 {file} 未找到)。" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN 数据集变更历史" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "CKAN 数据集最新变更:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "没有权限创建组件" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "没有权限编缉本资源" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "没找到资源" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "没有权限更新数据集" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "数据集 {id} 未找到" -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "你必须添加至少一项数据资源" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "错误" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "没有权限创建资源" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "无法在搜索索引中加入组件" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "无法更新搜索索引" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "数据集已被删除" + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "没有权限删除组件 %s" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "数据集已被删除" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "资源已被删除" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "没有权限删除资源 %s" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "没有权限读取数据集 %s" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "没有权限读取资源 %s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "没找到资源数据" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "没有可下载的内容" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "没有给定的预览" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "浏览最多的" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "浏览最多的" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "浏览最少的" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "最新的" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "最老的" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "未找到请求的相关项目" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "未找到相关项目" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "未授权的" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "未找到组件" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "成功创建相关项目" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "成功更新相关项目" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "相关项目已经被删除" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "没有权限删除相关项目%s" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "应用程式界面" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "应用程式" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "构思" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "新闻文章" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "文件" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "发表" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "视觉化" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN资料库变更记录" @@ -703,10 +612,10 @@ msgstr "其他" msgid "Tag not found" msgstr "未找到标签" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "未找到用户" @@ -726,13 +635,13 @@ msgstr "没有权限删除编号为 \"{user_id}\" 的用户" msgid "No user specified" msgstr "未指定用户" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "没有权限编缉用户%s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "用户信息已更新" @@ -756,75 +665,87 @@ msgstr "用户\"%s\"已经注册了但你仍旧已\"%s\"的身份登录着" msgid "Unauthorized to edit a user." msgstr "没有权限编辑用户信息" -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "用户 %s没有编辑权限%s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "登录失败。用户名或密码错误。" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "没有权限申请重置密码" -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" 找到多个匹配的用户" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "没有此用户:%s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "请检查邮箱中的重置码。" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "无法发送重置链接:%s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "没有权限重置密码" -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "无效的重置码。请重试。" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "您的密码已经被重设." -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "您的密码必需有4个以上字符." -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "你输入的密码错误。" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "您必须提供密码" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "没有关注项目" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0} 未找到" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "没有权限读取 {0} {1}" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "所有事物" @@ -946,7 +867,7 @@ msgstr "{actor}向数据集{dataset}添加了{related_type}{related_item} " msgid "{actor} added the {related_type} {related_item}" msgstr "{actor}添加了{related_type}{related_item}" -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -954,9 +875,9 @@ msgid "View" msgstr "浏览" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "从{site_title}的新活动{n}" +msgstr[0] "" #: ckan/lib/formatters.py:17 msgid "January" @@ -1006,129 +927,129 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "刚才" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins} 分钟前" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours} 小时前" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days} 天前" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months}月前" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "{years}年前" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes}字节" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "在gravatar.com更新你的头像" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "未知的" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "未命名资源" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "创建新数据集." -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "编辑过的资源." -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "编辑过的设置." -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "{number} 浏览" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "{number}最新浏览" @@ -1158,7 +1079,7 @@ msgstr "" #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" @@ -1183,7 +1104,7 @@ msgstr "{site_title}的邀请" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "缺失值" @@ -1196,7 +1117,7 @@ msgstr "预料之外的输入项 %(name)s" msgid "Please enter an integer value" msgstr "请输入整数" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1206,11 +1127,11 @@ msgstr "请输入整数" msgid "Resources" msgstr "资源" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "组件资源无效" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "额外内容" @@ -1220,25 +1141,22 @@ msgstr "额外内容" msgid "Tag vocabulary \"%s\" does not exist" msgstr "标签 \"%s“ 不存在" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "用户" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "数据集" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "群组" @@ -1250,378 +1168,369 @@ msgstr "不合法的 JSON 文件" msgid "A organization must be supplied" msgstr "必须给定一个机构" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "你不能从现有的组织中移除数据集" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "机构不存在" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "你不能向这个机构添加数据集" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "无效整数" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "必须为自然数" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "必须为正整数" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "日期格式错误" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "在 log_message 中不允许超链接" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "资源" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "相关内容" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "群组名称或 ID 不存在" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "活动类型" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "姓名必须为字符串" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "这个名称不可使用" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "名称最大长度为 %i 字符" -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "URL已被占用" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "名称 \"%s\" 的长度小于最小长度 %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "名称 \"%s\" 长度大于最大长度 %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "版本号最大长度为 %i 字符" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "重复键值 \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "群组名称已存在" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "标签 \"%s\" 长度小于最小长度 %s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "标签 \"%s\" 长度大于最大长度 %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "标签 \"%s\" 仅能包含字母和以下符号:-_" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "标签 \"%s\" 不能大写" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "用户名必须为字符串" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "登录名不可用" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "请输入两遍密码" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "密码必须为字符串" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "密码长度至少为4位" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "你输入的密码不匹配" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "你的编辑无效因为它看上去像是垃圾广告。请移除描述中的超链接。" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "名称长度至少为 %s 字符" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "词汇表名称已被占用" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "无法将键值从 %s 改为 %s。这个键值是只读的。" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "标签词汇未找到。" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "标签 %s 不属于词汇表 %s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "没有标签名称" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "标签 %s 已经包含于词汇表 %s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "请提供有效链接" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "角色不存在。" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "没有关联组织的数据集不能设定为私有。" -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "非列表" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "非字符串" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "作为父结点,它将会在层次结构中创造环" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: 创建对象 %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API:创建组件关系:%s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API:创建成员对象 %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "尝试创建一个机构作为群组" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "你必须给定一个组件ID或名称 (参数”package“)。" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "你必须给定一个评分(参数\"rating\")。" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "评分必须为整数。" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "评分必须在%i和%i之间" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "关注用户前请登录" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "你不能关注自己" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "你已经关注了 {0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "关注数据集前请登录。" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr "用户{username}不存在" -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "关注群组前请登录。" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API:删除组件 %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API:删除 %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API:删除成员:%s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "数据中无此ID" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "无法找到词汇表 \"%s\"" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "找不到标签 \"%s\"" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "取消关注前请登录" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "你并没关注 {0}" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "资源未找到。" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "如果使用「查询」参数则不必详细说明" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr "必须为 : 对" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "在 resource_search 中无法辨识「{field}」域" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "未知的用户:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "项目未找到。" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "包未找到。" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: 更新对象 %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: 更新包关系: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "任务状态未找到。" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "组织未找到。" @@ -1652,7 +1561,7 @@ msgstr "你必须登陆才能增加关联项目" msgid "No dataset id provided, cannot check auth." msgstr "" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "本资源中没发现组件,无法授权." @@ -1662,94 +1571,98 @@ msgstr "本资源中没发现组件,无法授权." msgid "User %s not authorized to create resources on dataset %s" msgstr "" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "用户%s没有权限编辑这些组件" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "用户 %s没有权限创立群组" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "用户 %s 无权限创建机构" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "用户{user} 没有权限通过 API 创建新用户" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "没有权限创建新用户" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "未找到群组." -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "需要有效的API Key建立一個組件" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "需要有效的API Key建立一個群組" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "用户 %s没有权限增加成员" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "用户 %s 没有权限编辑群组%s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "用户 %s没有权限删除资源 %s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "只有拥有者才能删除相关项目" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "用户 %s 无权限删除关联性%s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "用户 %s没有权限删除群组" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "用户 %s没有权限删除群组%s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "用户 %s 无权限删除机构" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "用户 %s 无权限删除机构%s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "用户 %s没有权限删除任务状态" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "未授权的" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1770,7 +1683,7 @@ msgstr "用户 %s没有权限读取资源 %s" msgid "User %s not authorized to read group %s" msgstr "" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "你必须登入才能使用控制台." @@ -1848,63 +1761,63 @@ msgstr "需要有效的API Key编辑一個組件" msgid "Valid API key needed to edit a group" msgstr "需要有效的API Key编辑一個群組" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "其他(开放)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "其他(公共领域)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "其他(归因)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "其他(非商业)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "其他(非开放)" @@ -2011,8 +1924,6 @@ msgstr "确认" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "取消" @@ -2037,12 +1948,13 @@ msgstr "链接" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "移除" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "图片" @@ -2115,7 +2027,6 @@ msgstr "" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "网址" @@ -2129,7 +2040,6 @@ msgstr "网址" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "编辑" @@ -2168,33 +2078,41 @@ msgstr "Powered by Site Title: This is the title of this CKAN instance It " @@ -2345,7 +2260,6 @@ msgid "" msgstr "The Data API can be accessed via the following actions of the CKAN action API." #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "创建" @@ -2497,7 +2411,7 @@ msgstr "选择" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2530,8 +2444,6 @@ msgstr "群组表单" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "确认删除" @@ -2549,7 +2461,7 @@ msgstr "确定要删除成员:{name}吗?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2694,14 +2606,12 @@ msgstr "你确定要删除此成员吗?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "删除" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "保存" @@ -2789,7 +2699,6 @@ msgstr "我的群组" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "描述" @@ -2849,7 +2758,7 @@ msgstr "比较" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2949,38 +2858,30 @@ msgstr "" msgid "{0} statistics" msgstr "{0} 统计" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "数据集" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "数据集" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "组织" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "组织" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "群组" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "群组" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "相关的项目" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "相关项目" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -2998,7 +2899,6 @@ msgid "Custom" msgstr "客户化" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "此表格包含无效输入:" @@ -3011,7 +2911,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "图片网址" @@ -3056,7 +2955,7 @@ msgstr "草稿" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3090,6 +2989,20 @@ msgstr "搜索组织..." msgid "There are currently no organizations for this site" msgstr "此网站上目前沒有任何机构" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "用户名" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "更新成员" @@ -3224,7 +3137,6 @@ msgid "Preview" msgstr "预览" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "更新" @@ -3283,7 +3195,7 @@ msgstr "" msgid "Add" msgstr "新增" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3315,28 +3227,32 @@ msgstr "上传错误:" msgid "Error:" msgstr "错误:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "状态" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "最后更新" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "从未" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "上传日志" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "详情" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "日志结尾" @@ -3440,7 +3356,7 @@ msgid "unknown" msgstr "未知" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "创建的" @@ -3476,6 +3392,10 @@ msgid "" "add some?

" msgstr "

This dataset has no data, why not add some?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "应用程式界面" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API文献" @@ -3532,7 +3452,7 @@ msgid "Version" msgstr "版本" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "状态" @@ -3547,7 +3467,6 @@ msgstr "数据 API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "标题" @@ -3567,30 +3486,30 @@ msgstr "例如:关于数据的有用信息" msgid "eg. economy, mental health, government" msgstr "例如:经济,健康,政府" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "授权协议的定义和其他信息可以参见 opendefinition.org" -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "组织" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "没有组织" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "可见性" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "公开" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "动态" @@ -3717,7 +3636,7 @@ msgstr "浏览" msgid "More information" msgstr "更多信息" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "" @@ -3803,139 +3722,6 @@ msgstr "" msgid "A view is a representation of the data held against a resource" msgstr "" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "相关表格" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "什么是相关项目?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

Related Media is any app, article, visualisation or idea related to this dataset.

For example, it could be a custom visualisation, pictograph or bar chart, an app using all or part of the data or even a news story that references this dataset.

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "你确定要删除这个相关项目 - {name} 吗?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "应用与创意" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

Showing items %(first)s - %(last)s of %(item_count)s related items found

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

%(item_count)s related items found

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "尚无提交的应用。" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "什么是应用?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "这里向你展示基于数据集而开发的应用以及数据集使用的新想法。" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "过滤结果" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "按类型过滤" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "全部" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "排序" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "预设" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "只显示特色项目" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "应用" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "编辑相关项目" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "编辑相关内容" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "编辑相关项目" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "创建相关项目" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "创建相关内容" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "创建相关项目" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "我的相关项目" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "关于项目的一些信息..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "类型" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "你确定要删除相关项目吗?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "前往{related_item_type}" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "差异" @@ -4023,7 +3809,6 @@ msgid "There are no {facet_type} that match this search" msgstr "没有匹配该搜索的{facet_type}" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "首页" @@ -4032,7 +3817,7 @@ msgid "Language" msgstr "语言" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4064,21 +3849,25 @@ msgstr "没有与该数据集相关的应用,想法,故事,或图片。" msgid "Add Item" msgstr "添加项目" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "提交" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "排序" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "过滤结果" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

请重新搜索.

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4147,7 +3936,7 @@ msgid "Subscribe" msgstr "订阅" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4166,10 +3955,6 @@ msgstr "编辑" msgid "Search Tags" msgstr "搜索标签" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "仪表盘" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "News feed" @@ -4233,36 +4018,27 @@ msgstr "你的个人档案可以让其他 CKAN 用户了解你是谁以及你是 msgid "Change details" msgstr "变更详情" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "用户名" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "全名" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "例如:Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "例如:joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "关于你自己的一些信息" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "订阅提醒邮件" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "更改密码" @@ -4495,15 +4271,15 @@ msgstr "" msgid "DataStore resource not found" msgstr "" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "" @@ -4511,6 +4287,14 @@ msgstr "" msgid "User {0} not authorized to update resource {1}" msgstr "" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "" @@ -4537,6 +4321,10 @@ msgstr "" msgid "custom resource text" msgstr "" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4554,64 +4342,24 @@ msgstr "" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "" - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" msgstr "" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 @@ -4671,7 +4419,6 @@ msgid "Cluster markers" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "" @@ -4699,33 +4446,27 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "" @@ -4735,12 +4476,10 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "" @@ -4750,7 +4489,6 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "" @@ -4765,7 +4503,7 @@ msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" +msgid "Users Creating Most Datasets" msgstr "" #: ckanext/stats/templates/ckanext/stats/index.html:175 @@ -4776,42 +4514,16 @@ msgstr "" msgid "Total Number of Datasets" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" msgstr "" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" msgstr "" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "" diff --git a/ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo b/ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo index c56701efa43..9c2acfb60a4 100644 Binary files a/ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo and b/ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo differ diff --git a/ckan/i18n/zh_TW/LC_MESSAGES/ckan.po b/ckan/i18n/zh_TW/LC_MESSAGES/ckan.po index ff2a4fb56ee..d2b6242ff43 100644 --- a/ckan/i18n/zh_TW/LC_MESSAGES/ckan.po +++ b/ckan/i18n/zh_TW/LC_MESSAGES/ckan.po @@ -15,252 +15,252 @@ msgid "" msgstr "" "Project-Id-Version: CKAN\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2015-01-26 11:55+0000\n" -"PO-Revision-Date: 2015-02-26 15:19+0000\n" -"Last-Translator: Adrià Mercader \n" -"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/ckan/language/zh_TW/)\n" +"POT-Creation-Date: 2015-11-26 13:42+0000\n" +"PO-Revision-Date: 2015-12-07 02:08+0000\n" +"Last-Translator: Sol Lee \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/okfn/ckan/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 0.9.6\n" +"Generated-By: Babel 2.1.1\n" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ckan/new_authz.py:178 +#: ckan/authz.py:177 #, python-format msgid "Authorization function not found: %s" msgstr "授權功能未找到:%s" -#: ckan/new_authz.py:190 +#: ckan/authz.py:189 ckan/templates/header.html:14 msgid "Admin" msgstr "管理者" -#: ckan/new_authz.py:194 +#: ckan/authz.py:193 msgid "Editor" msgstr "編輯" -#: ckan/new_authz.py:198 +#: ckan/authz.py:197 msgid "Member" msgstr "成員" -#: ckan/controllers/admin.py:27 +#: ckan/controllers/admin.py:31 msgid "Need to be system administrator to administer" msgstr "需要系統管理員來管理" -#: ckan/controllers/admin.py:43 +#: ckan/controllers/admin.py:47 msgid "Site Title" msgstr "網站標題" -#: ckan/controllers/admin.py:44 +#: ckan/controllers/admin.py:48 msgid "Style" msgstr "樣式" -#: ckan/controllers/admin.py:45 +#: ckan/controllers/admin.py:49 msgid "Site Tag Line" msgstr "網站簡述" -#: ckan/controllers/admin.py:46 +#: ckan/controllers/admin.py:50 msgid "Site Tag Logo" msgstr "網站 LOGO" -#: ckan/controllers/admin.py:47 ckan/templates/header.html:102 +#: ckan/controllers/admin.py:51 ckan/templates/header.html:106 #: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 #: ckan/templates/home/about.html:3 ckan/templates/home/about.html:6 #: ckan/templates/home/about.html:16 ckan/templates/organization/about.html:3 #: ckan/templates/organization/read_base.html:19 -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "About" msgstr "關於" -#: ckan/controllers/admin.py:47 +#: ckan/controllers/admin.py:51 msgid "About page text" msgstr "關於頁面文字" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Intro Text" msgstr "簡介文字" -#: ckan/controllers/admin.py:48 +#: ckan/controllers/admin.py:52 msgid "Text on home page" msgstr "首頁的文字" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Custom CSS" msgstr "客製化CSS" -#: ckan/controllers/admin.py:49 +#: ckan/controllers/admin.py:53 msgid "Customisable css inserted into the page header" msgstr "在頁首可自行定義的CSS" -#: ckan/controllers/admin.py:50 +#: ckan/controllers/admin.py:54 msgid "Homepage" msgstr "首頁" -#: ckan/controllers/admin.py:131 +#: ckan/controllers/admin.py:157 #, python-format msgid "" "Cannot purge package %s as associated revision %s includes non-deleted " "packages %s" msgstr "無法淨化組件 %s相關的修訂版本%s 包含未刪除的組件 %s" -#: ckan/controllers/admin.py:153 +#: ckan/controllers/admin.py:179 #, python-format msgid "Problem purging revision %s: %s" msgstr "程式淨化版本%s: %s" -#: ckan/controllers/admin.py:155 +#: ckan/controllers/admin.py:181 msgid "Purge complete" msgstr "淨化完成" -#: ckan/controllers/admin.py:157 +#: ckan/controllers/admin.py:183 msgid "Action not implemented." msgstr "動作未執行" -#: ckan/controllers/api.py:60 ckan/controllers/group.py:151 -#: ckan/controllers/home.py:29 ckan/controllers/package.py:145 -#: ckan/controllers/related.py:86 ckan/controllers/related.py:113 +#: ckan/controllers/api.py:60 ckan/controllers/group.py:163 +#: ckan/controllers/home.py:26 ckan/controllers/package.py:142 #: ckan/controllers/revision.py:31 ckan/controllers/tag.py:23 -#: ckan/controllers/user.py:45 ckan/controllers/user.py:72 -#: ckan/controllers/user.py:101 ckan/controllers/user.py:550 -#: ckanext/datapusher/plugin.py:67 +#: ckan/controllers/user.py:46 ckan/controllers/user.py:73 +#: ckan/controllers/user.py:102 ckan/controllers/user.py:563 +#: ckanext/datapusher/plugin.py:68 msgid "Not authorized to see this page" msgstr "沒有權限瀏覽此頁面" -#: ckan/controllers/api.py:118 ckan/controllers/api.py:209 +#: ckan/controllers/api.py:120 ckan/controllers/api.py:214 msgid "Access denied" msgstr "拒絕存取" -#: ckan/controllers/api.py:124 ckan/controllers/api.py:218 +#: ckan/controllers/api.py:126 ckan/controllers/api.py:223 #: ckan/logic/converters.py:119 ckan/logic/converters.py:144 -#: ckan/logic/converters.py:169 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:162 ckan/logic/validators.py:183 -#: ckan/logic/validators.py:192 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:236 -#: ckan/logic/validators.py:250 ckan/logic/validators.py:274 -#: ckan/logic/validators.py:283 ckan/logic/validators.py:719 -#: ckan/logic/action/create.py:874 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:167 ckan/logic/validators.py:188 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:241 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:279 +#: ckan/logic/validators.py:288 ckan/logic/validators.py:729 +#: ckan/logic/action/create.py:966 msgid "Not found" msgstr "找不到資料" -#: ckan/controllers/api.py:130 +#: ckan/controllers/api.py:132 msgid "Bad request" msgstr "錯誤請求" -#: ckan/controllers/api.py:164 +#: ckan/controllers/api.py:166 #, python-format msgid "Action name not known: %s" msgstr "未知的指令名稱:%s" -#: ckan/controllers/api.py:185 ckan/controllers/api.py:352 -#: ckan/controllers/api.py:414 +#: ckan/controllers/api.py:188 ckan/controllers/api.py:358 +#: ckan/controllers/api.py:421 #, python-format msgid "JSON Error: %s" msgstr "錯誤的JSON:%s" -#: ckan/controllers/api.py:190 +#: ckan/controllers/api.py:194 #, python-format msgid "Bad request data: %s" msgstr "錯誤請求的資料:%s" -#: ckan/controllers/api.py:288 ckan/logic/action/get.py:2228 +#: ckan/controllers/api.py:294 #, python-format msgid "Cannot list entity of this type: %s" msgstr "無法列出此類型的物件:%s" -#: ckan/controllers/api.py:318 +#: ckan/controllers/api.py:324 #, python-format msgid "Cannot read entity of this type: %s" msgstr "無法讀取此類型的物件:%s" -#: ckan/controllers/api.py:357 +#: ckan/controllers/api.py:363 #, python-format msgid "Cannot create new entity of this type: %s %s" msgstr "無法建立新的此類型物件:%s %s" -#: ckan/controllers/api.py:389 +#: ckan/controllers/api.py:396 msgid "Unable to add package to search index" msgstr "無法在搜尋索引中加入組件" -#: ckan/controllers/api.py:419 +#: ckan/controllers/api.py:426 #, python-format msgid "Cannot update entity of this type: %s" msgstr "無法更新此類型的物件:%s" -#: ckan/controllers/api.py:442 +#: ckan/controllers/api.py:450 msgid "Unable to update search index" msgstr "無法更新搜尋索引" -#: ckan/controllers/api.py:466 +#: ckan/controllers/api.py:474 #, python-format msgid "Cannot delete entity of this type: %s %s" msgstr "無法刪除此類型的物件:%s %s" -#: ckan/controllers/api.py:489 +#: ckan/controllers/api.py:497 msgid "No revision specified" msgstr "不得修改規定" -#: ckan/controllers/api.py:493 +#: ckan/controllers/api.py:501 #, python-format msgid "There is no revision with id: %s" msgstr "此id沒有更動:%s" -#: ckan/controllers/api.py:503 +#: ckan/controllers/api.py:511 msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" msgstr "遺漏搜索關鍵字 ('since_id=UUID' or 'since_time=TIMESTAMP')" -#: ckan/controllers/api.py:513 +#: ckan/controllers/api.py:523 #, python-format msgid "Could not read parameters: %r" msgstr "無法讀取參數:%r" -#: ckan/controllers/api.py:574 +#: ckan/controllers/api.py:584 #, python-format msgid "Bad search option: %s" msgstr "錯誤的搜尋選項:%s" -#: ckan/controllers/api.py:577 +#: ckan/controllers/api.py:587 #, python-format msgid "Unknown register: %s" msgstr "未知的註冊:%s" -#: ckan/controllers/api.py:586 +#: ckan/controllers/api.py:596 #, python-format msgid "Malformed qjson value: %r" msgstr "畸形的 qjson 值: %r" -#: ckan/controllers/api.py:596 +#: ckan/controllers/api.py:606 msgid "Request params must be in form of a json encoded dictionary." msgstr "請求的參數必須是一個JSON編碼的形式。" -#: ckan/controllers/feed.py:223 ckan/controllers/group.py:190 -#: ckan/controllers/group.py:385 ckan/controllers/group.py:484 -#: ckan/controllers/group.py:529 ckan/controllers/group.py:561 -#: ckan/controllers/group.py:572 ckan/controllers/group.py:617 -#: ckan/controllers/group.py:632 ckan/controllers/group.py:679 -#: ckan/controllers/group.py:708 ckan/controllers/group.py:739 -#: ckan/controllers/group.py:795 ckan/controllers/group.py:880 -#: ckan/controllers/package.py:1288 ckan/controllers/package.py:1303 +#: ckan/controllers/feed.py:223 ckan/controllers/group.py:136 +#: ckan/controllers/group.py:222 ckan/controllers/group.py:408 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:563 +#: ckan/controllers/group.py:595 ckan/controllers/group.py:606 +#: ckan/controllers/group.py:660 ckan/controllers/group.py:679 +#: ckan/controllers/group.py:731 ckan/controllers/group.py:763 +#: ckan/controllers/group.py:796 ckan/controllers/group.py:855 +#: ckan/controllers/group.py:951 ckan/controllers/package.py:1270 +#: ckan/controllers/package.py:1285 msgid "Group not found" msgstr "群組不存在" -#: ckan/controllers/feed.py:234 ckan/controllers/group.py:364 +#: ckan/controllers/feed.py:234 msgid "Organization not found" msgstr "組織不存在" -#: ckan/controllers/group.py:172 +#: ckan/controllers/group.py:138 ckan/controllers/group.py:609 msgid "Incorrect group type" msgstr "錯誤的群組類型" -#: ckan/controllers/group.py:192 ckan/controllers/group.py:387 -#: ckan/controllers/group.py:486 ckan/controllers/group.py:527 -#: ckan/controllers/group.py:559 ckan/controllers/group.py:882 +#: ckan/controllers/group.py:224 ckan/controllers/group.py:410 +#: ckan/controllers/group.py:518 ckan/controllers/group.py:561 +#: ckan/controllers/group.py:593 ckan/controllers/group.py:953 #, python-format msgid "Unauthorized to read group %s" msgstr "沒有權限讀取群組%s" -#: ckan/controllers/group.py:285 ckan/controllers/home.py:70 -#: ckan/controllers/package.py:241 ckan/lib/helpers.py:681 -#: ckan/templates/header.html:100 ckan/templates/organization/edit_base.html:5 +#: ckan/controllers/group.py:310 ckan/controllers/home.py:67 +#: ckan/controllers/package.py:239 ckan/lib/helpers.py:755 +#: ckan/templates/header.html:104 ckan/templates/organization/edit_base.html:5 #: ckan/templates/organization/edit_base.html:8 #: ckan/templates/organization/index.html:3 #: ckan/templates/organization/index.html:6 @@ -271,23 +271,23 @@ msgstr "沒有權限讀取群組%s" msgid "Organizations" msgstr "組織" -#: ckan/controllers/group.py:286 ckan/controllers/home.py:71 -#: ckan/controllers/package.py:242 ckan/lib/helpers.py:682 -#: ckan/templates/header.html:101 ckan/templates/group/base_form_page.html:6 +#: ckan/controllers/group.py:311 ckan/controllers/home.py:68 +#: ckan/controllers/package.py:240 ckan/lib/helpers.py:756 +#: ckan/templates/header.html:105 ckan/templates/group/base_form_page.html:6 #: ckan/templates/group/edit.html:4 ckan/templates/group/edit_base.html:3 #: ckan/templates/group/edit_base.html:8 ckan/templates/group/index.html:3 #: ckan/templates/group/index.html:6 ckan/templates/group/index.html:18 #: ckan/templates/group/members.html:3 ckan/templates/group/read_base.html:3 #: ckan/templates/group/read_base.html:6 #: ckan/templates/package/group_list.html:5 -#: ckan/templates/package/read_base.html:25 +#: ckan/templates/package/read_base.html:20 #: ckan/templates/revision/diff.html:16 ckan/templates/revision/read.html:84 msgid "Groups" msgstr "群組" -#: ckan/controllers/group.py:287 ckan/controllers/home.py:72 -#: ckan/controllers/package.py:243 ckan/lib/helpers.py:683 -#: ckan/logic/__init__.py:108 +#: ckan/controllers/group.py:312 ckan/controllers/home.py:69 +#: ckan/controllers/package.py:241 ckan/lib/helpers.py:757 +#: ckan/logic/__init__.py:100 #: ckan/templates/package/snippets/package_basic_fields.html:24 #: ckan/templates/snippets/context/dataset.html:17 #: ckan/templates/tag/index.html:3 ckan/templates/tag/index.html:6 @@ -295,394 +295,303 @@ msgstr "群組" msgid "Tags" msgstr "標籤" -#: ckan/controllers/group.py:288 ckan/controllers/home.py:73 -#: ckan/controllers/package.py:244 ckan/lib/helpers.py:684 +#: ckan/controllers/group.py:313 ckan/controllers/home.py:70 +#: ckan/controllers/package.py:242 ckan/lib/helpers.py:758 msgid "Formats" msgstr "格式" -#: ckan/controllers/group.py:289 ckan/controllers/home.py:74 -#: ckan/controllers/package.py:245 ckan/lib/helpers.py:685 +#: ckan/controllers/group.py:314 ckan/controllers/home.py:71 +#: ckan/controllers/package.py:243 ckan/lib/helpers.py:759 msgid "Licenses" msgstr "授權" -#: ckan/controllers/group.py:429 +#: ckan/controllers/group.py:453 msgid "Not authorized to perform bulk update" msgstr "未被授權批次更新" -#: ckan/controllers/group.py:446 +#: ckan/controllers/group.py:473 msgid "Unauthorized to create a group" msgstr "沒有權限建立群組" -#: ckan/controllers/group.py:495 ckan/controllers/package.py:338 -#: ckan/controllers/package.py:803 ckan/controllers/package.py:1436 -#: ckan/controllers/package.py:1472 +#: ckan/controllers/group.py:527 ckan/controllers/package.py:319 +#: ckan/controllers/package.py:779 ckan/controllers/package.py:1418 +#: ckan/controllers/package.py:1454 #, python-format msgid "User %r not authorized to edit %s" msgstr "使用者 %r 無權修改 %s" -#: ckan/controllers/group.py:531 ckan/controllers/group.py:563 -#: ckan/controllers/package.py:967 ckan/controllers/package.py:1014 -#: ckan/controllers/related.py:190 ckan/controllers/user.py:236 -#: ckan/controllers/user.py:339 ckan/controllers/user.py:505 +#: ckan/controllers/group.py:565 ckan/controllers/group.py:597 +#: ckan/controllers/package.py:945 ckan/controllers/package.py:993 +#: ckan/controllers/user.py:236 ckan/controllers/user.py:348 +#: ckan/controllers/user.py:517 msgid "Integrity Error" msgstr "完整性錯誤" -#: ckan/controllers/group.py:586 +#: ckan/controllers/group.py:623 #, python-format msgid "User %r not authorized to edit %s authorizations" msgstr "使用者 %r 無權修改 %s 的權限" -#: ckan/controllers/group.py:603 ckan/controllers/group.py:615 -#: ckan/controllers/group.py:630 ckan/controllers/group.py:706 +#: ckan/controllers/group.py:643 ckan/controllers/group.py:658 +#: ckan/controllers/group.py:677 ckan/controllers/group.py:761 #, python-format msgid "Unauthorized to delete group %s" msgstr "沒有刪除%s群組的權限" -#: ckan/controllers/group.py:609 +#: ckan/controllers/group.py:649 msgid "Organization has been deleted." msgstr "此組織已被刪除" -#: ckan/controllers/group.py:611 +#: ckan/controllers/group.py:651 msgid "Group has been deleted." msgstr "此群組已被刪除" -#: ckan/controllers/group.py:677 +#: ckan/controllers/group.py:653 +#, python-format +msgid "%s has been deleted." +msgstr "%s 已被刪除。" + +#: ckan/controllers/group.py:729 #, python-format msgid "Unauthorized to add member to group %s" msgstr "沒有在群組%s中新增成員的權限" -#: ckan/controllers/group.py:694 +#: ckan/controllers/group.py:748 #, python-format msgid "Unauthorized to delete group %s members" msgstr "沒有刪除群組%s中成員的權限" -#: ckan/controllers/group.py:700 +#: ckan/controllers/group.py:755 msgid "Group member has been deleted." msgstr "群組成員已被刪除" -#: ckan/controllers/group.py:722 ckan/controllers/package.py:446 +#: ckan/controllers/group.py:779 ckan/controllers/package.py:412 msgid "Select two revisions before doing the comparison." msgstr "挑選兩種版本,然後進行比對。" -#: ckan/controllers/group.py:741 +#: ckan/controllers/group.py:798 #, python-format msgid "User %r not authorized to edit %r" msgstr "使用者 %r 無權修改 %r" -#: ckan/controllers/group.py:748 +#: ckan/controllers/group.py:805 msgid "CKAN Group Revision History" msgstr "CKAN群組版本歷史紀錄" -#: ckan/controllers/group.py:751 +#: ckan/controllers/group.py:809 msgid "Recent changes to CKAN Group: " msgstr "CKAN群組最近的更新:" -#: ckan/controllers/group.py:772 ckan/controllers/package.py:496 +#: ckan/controllers/group.py:830 ckan/controllers/package.py:462 msgid "Log message: " msgstr "記錄檔訊息:" -#: ckan/controllers/group.py:798 +#: ckan/controllers/group.py:858 msgid "Unauthorized to read group {group_id}" msgstr "沒有權限讀取群組{group_id}" -#: ckan/controllers/group.py:817 ckan/controllers/package.py:1213 -#: ckan/controllers/user.py:671 +#: ckan/controllers/group.py:879 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:684 msgid "You are now following {0}" msgstr "你正在關注{0}" -#: ckan/controllers/group.py:836 ckan/controllers/package.py:1232 -#: ckan/controllers/user.py:691 +#: ckan/controllers/group.py:899 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:704 msgid "You are no longer following {0}" msgstr "你已取消關注{0}" -#: ckan/controllers/group.py:854 ckan/controllers/user.py:536 +#: ckan/controllers/group.py:919 ckan/controllers/user.py:549 #, python-format msgid "Unauthorized to view followers %s" msgstr "沒有檢視跟隨者%s的權限" -#: ckan/controllers/home.py:37 +#: ckan/controllers/home.py:34 msgid "This site is currently off-line. Database is not initialised." msgstr "本網站目前無法運作。資料庫沒有初始化。" -#: ckan/controllers/home.py:100 -msgid "" -"Please update your profile and add your email address" -" and your full name. {site} uses your email address if you need to reset " -"your password." -msgstr "請 更新你的個人資料 並且輸入你的電子郵件地址以及全名。{site} 若你需要重設密碼請使用你的電子郵件地址。" - -#: ckan/controllers/home.py:103 +#: ckan/controllers/home.py:79 #, python-format msgid "Please update your profile and add your email address. " msgstr "請 更新你的個人資料 並輸入你的電子郵件地址。" -#: ckan/controllers/home.py:105 +#: ckan/controllers/home.py:81 #, python-format msgid "%s uses your email address if you need to reset your password." msgstr "%s 使用你的電子郵件地址,如果你需要重設密碼。" -#: ckan/controllers/home.py:109 -#, python-format -msgid "Please update your profile and add your full name." -msgstr "請 更新你的個人資料 並輸入你的全名。" - -#: ckan/controllers/package.py:295 +#: ckan/controllers/package.py:293 msgid "Parameter \"{parameter_name}\" is not an integer" msgstr "參數\"{parameter_name}\"並不是整數" -#: ckan/controllers/package.py:336 ckan/controllers/package.py:344 -#: ckan/controllers/package.py:397 ckan/controllers/package.py:465 -#: ckan/controllers/package.py:789 ckan/controllers/package.py:848 -#: ckan/controllers/package.py:866 ckan/controllers/package.py:965 -#: ckan/controllers/package.py:1012 ckan/controllers/package.py:1068 -#: ckan/controllers/package.py:1106 ckan/controllers/package.py:1258 -#: ckan/controllers/package.py:1274 ckan/controllers/package.py:1343 -#: ckan/controllers/package.py:1442 ckan/controllers/package.py:1479 -#: ckan/controllers/package.py:1592 ckan/controllers/related.py:111 -#: ckan/controllers/related.py:122 +#: ckan/controllers/package.py:317 ckan/controllers/package.py:325 +#: ckan/controllers/package.py:365 ckan/controllers/package.py:431 +#: ckan/controllers/package.py:765 ckan/controllers/package.py:824 +#: ckan/controllers/package.py:842 ckan/controllers/package.py:943 +#: ckan/controllers/package.py:991 ckan/controllers/package.py:1043 +#: ckan/controllers/package.py:1085 ckan/controllers/package.py:1240 +#: ckan/controllers/package.py:1256 ckan/controllers/package.py:1323 +#: ckan/controllers/package.py:1424 ckan/controllers/package.py:1461 +#: ckan/controllers/package.py:1574 msgid "Dataset not found" msgstr "資料集不存在" -#: ckan/controllers/package.py:346 ckan/controllers/package.py:399 -#: ckan/controllers/package.py:463 ckan/controllers/package.py:787 -#: ckan/controllers/package.py:846 ckan/controllers/package.py:864 -#: ckan/controllers/package.py:963 ckan/controllers/package.py:1010 -#: ckan/controllers/package.py:1260 ckan/controllers/related.py:124 +#: ckan/controllers/package.py:327 ckan/controllers/package.py:367 +#: ckan/controllers/package.py:429 ckan/controllers/package.py:763 +#: ckan/controllers/package.py:822 ckan/controllers/package.py:840 +#: ckan/controllers/package.py:941 ckan/controllers/package.py:989 +#: ckan/controllers/package.py:1242 #, python-format msgid "Unauthorized to read package %s" msgstr "沒有權限讀取組件%s" -#: ckan/controllers/package.py:385 ckan/controllers/package.py:387 -#: ckan/controllers/package.py:389 +#: ckan/controllers/package.py:353 ckan/controllers/package.py:355 +#: ckan/controllers/package.py:357 #, python-format msgid "Invalid revision format: %r" msgstr "無效的版本格式:%r" -#: ckan/controllers/package.py:427 +#: ckan/controllers/package.py:393 msgid "" "Viewing {package_type} datasets in {format} format is not supported " "(template file {file} not found)." msgstr "無法以 {format} 格式瀏覽 {package_type} 類型的資料集(找不到模板檔案:{file})。" -#: ckan/controllers/package.py:472 +#: ckan/controllers/package.py:438 msgid "CKAN Dataset Revision History" msgstr "CKAN資料集版本歷史紀錄" -#: ckan/controllers/package.py:475 +#: ckan/controllers/package.py:441 msgid "Recent changes to CKAN Dataset: " msgstr "CKAN資料集最近的更新:" -#: ckan/controllers/package.py:532 +#: ckan/controllers/package.py:498 msgid "Unauthorized to create a package" msgstr "沒有權限建立組件" -#: ckan/controllers/package.py:609 ckanext/datapusher/plugin.py:58 +#: ckan/controllers/package.py:576 ckanext/datapusher/plugin.py:59 msgid "Unauthorized to edit this resource" msgstr "沒有編輯該資源的權限" -#: ckan/controllers/package.py:629 ckan/controllers/package.py:1095 -#: ckan/controllers/package.py:1115 ckan/controllers/package.py:1182 -#: ckan/controllers/package.py:1373 ckan/controllers/package.py:1453 -#: ckan/controllers/package.py:1486 ckan/controllers/package.py:1600 -#: ckan/controllers/package.py:1656 ckanext/datapusher/plugin.py:56 -#: ckanext/resourceproxy/controller.py:32 +#: ckan/controllers/package.py:599 ckan/controllers/package.py:1072 +#: ckan/controllers/package.py:1094 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1353 ckan/controllers/package.py:1435 +#: ckan/controllers/package.py:1468 ckan/controllers/package.py:1582 +#: ckan/controllers/package.py:1638 ckanext/datapusher/plugin.py:57 +#: ckanext/resourceproxy/controller.py:31 msgid "Resource not found" msgstr "資料不存在" -#: ckan/controllers/package.py:682 +#: ckan/controllers/package.py:653 msgid "Unauthorized to update dataset" msgstr "沒有更新資料集的權限" -#: ckan/controllers/package.py:685 ckan/controllers/package.py:717 -#: ckan/controllers/package.py:745 +#: ckan/controllers/package.py:655 ckan/controllers/package.py:692 +#: ckan/controllers/package.py:721 msgid "The dataset {id} could not be found." msgstr "找不到 {id} 資料集." -#: ckan/controllers/package.py:688 +#: ckan/controllers/package.py:659 msgid "You must add at least one data resource" msgstr "你必須至少新增一個資源" -#: ckan/controllers/package.py:696 ckanext/datapusher/helpers.py:22 +#: ckan/controllers/package.py:667 ckanext/datapusher/helpers.py:22 msgid "Error" msgstr "錯誤" -#: ckan/controllers/package.py:714 +#: ckan/controllers/package.py:690 msgid "Unauthorized to create a resource" msgstr "沒有建立資源的權限" -#: ckan/controllers/package.py:750 +#: ckan/controllers/package.py:726 msgid "Unauthorized to create a resource for this package" msgstr "沒有為此資料集建立資源的權限" -#: ckan/controllers/package.py:973 +#: ckan/controllers/package.py:951 msgid "Unable to add package to search index." msgstr "無法在搜尋索引中添加組件" -#: ckan/controllers/package.py:1020 +#: ckan/controllers/package.py:999 msgid "Unable to update search index." msgstr "無法更新搜尋索引" -#: ckan/controllers/package.py:1056 ckan/controllers/package.py:1066 -#: ckan/controllers/package.py:1083 +#: ckan/controllers/package.py:1036 +msgid "Dataset has been deleted." +msgstr "資料集已被刪除" + +#: ckan/controllers/package.py:1041 ckan/controllers/package.py:1059 #, python-format msgid "Unauthorized to delete package %s" msgstr "沒有刪除%s組件的權限" -#: ckan/controllers/package.py:1061 -msgid "Dataset has been deleted." -msgstr "資料集已被刪除" - -#: ckan/controllers/package.py:1088 +#: ckan/controllers/package.py:1064 msgid "Resource has been deleted." msgstr "此資源已被刪除" -#: ckan/controllers/package.py:1093 +#: ckan/controllers/package.py:1070 #, python-format msgid "Unauthorized to delete resource %s" msgstr "沒有刪除資源%s的權限" -#: ckan/controllers/package.py:1108 ckan/controllers/package.py:1276 -#: ckan/controllers/package.py:1345 ckan/controllers/package.py:1444 -#: ckan/controllers/package.py:1481 ckan/controllers/package.py:1594 +#: ckan/controllers/package.py:1087 ckan/controllers/package.py:1258 +#: ckan/controllers/package.py:1325 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1463 ckan/controllers/package.py:1576 #, python-format msgid "Unauthorized to read dataset %s" msgstr "沒有讀取資料集%s的權限" -#: ckan/controllers/package.py:1153 ckan/controllers/package.py:1615 +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1597 msgid "Resource view not found" msgstr "資料檢視不存在" -#: ckan/controllers/package.py:1184 ckan/controllers/package.py:1375 -#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1488 -#: ckan/controllers/package.py:1602 ckan/controllers/package.py:1658 +#: ckan/controllers/package.py:1165 ckan/controllers/package.py:1355 +#: ckan/controllers/package.py:1437 ckan/controllers/package.py:1470 +#: ckan/controllers/package.py:1584 ckan/controllers/package.py:1640 #, python-format msgid "Unauthorized to read resource %s" msgstr "沒有權限讀取資料%s" -#: ckan/controllers/package.py:1193 +#: ckan/controllers/package.py:1174 msgid "Resource data not found" msgstr "找不到資料" -#: ckan/controllers/package.py:1201 +#: ckan/controllers/package.py:1183 msgid "No download is available" msgstr "下載不存在" -#: ckan/controllers/package.py:1523 +#: ckan/controllers/package.py:1505 msgid "Unauthorized to edit resource" msgstr "沒有編輯資料的權限" -#: ckan/controllers/package.py:1541 +#: ckan/controllers/package.py:1523 msgid "View not found" msgstr "資料檢視不存在" -#: ckan/controllers/package.py:1543 +#: ckan/controllers/package.py:1525 #, python-format msgid "Unauthorized to view View %s" msgstr "沒有瀏覽檢視 %s 的權限" -#: ckan/controllers/package.py:1549 +#: ckan/controllers/package.py:1531 msgid "View Type Not found" msgstr "資料檢視類型不存在" -#: ckan/controllers/package.py:1609 +#: ckan/controllers/package.py:1591 msgid "Bad resource view data" msgstr "資料檢視描述不正確" -#: ckan/controllers/package.py:1618 +#: ckan/controllers/package.py:1600 #, python-format msgid "Unauthorized to read resource view %s" msgstr "沒有瀏覽資料檢視 %s 的權限" -#: ckan/controllers/package.py:1621 +#: ckan/controllers/package.py:1603 msgid "Resource view not supplied" msgstr "沒有可用的資料檢視" -#: ckan/controllers/package.py:1650 +#: ckan/controllers/package.py:1632 msgid "No preview has been defined." msgstr "已設定為無預覽" -#: ckan/controllers/related.py:67 -msgid "Most viewed" -msgstr "最多瀏覽" - -#: ckan/controllers/related.py:68 -msgid "Most Viewed" -msgstr "最多瀏覽" - -#: ckan/controllers/related.py:69 -msgid "Least Viewed" -msgstr "最新瀏覽" - -#: ckan/controllers/related.py:70 -msgid "Newest" -msgstr "日期—新的優先" - -#: ckan/controllers/related.py:71 -msgid "Oldest" -msgstr "日期—舊的優先" - -#: ckan/controllers/related.py:91 -msgid "The requested related item was not found" -msgstr "相關連的物件不存在" - -#: ckan/controllers/related.py:148 ckan/controllers/related.py:224 -msgid "Related item not found" -msgstr "關聯物件不存在" - -#: ckan/controllers/related.py:158 ckan/logic/auth/get.py:10 -#: ckan/logic/auth/get.py:267 -msgid "Not authorized" -msgstr "沒有權限" - -#: ckan/controllers/related.py:163 -msgid "Package not found" -msgstr "組件不存在" - -#: ckan/controllers/related.py:183 -msgid "Related item was successfully created" -msgstr "成功建立關聯物件" - -#: ckan/controllers/related.py:185 -msgid "Related item was successfully updated" -msgstr "成功更新關聯物件" - -#: ckan/controllers/related.py:216 -msgid "Related item has been deleted." -msgstr "關聯物件已刪除" - -#: ckan/controllers/related.py:222 -#, python-format -msgid "Unauthorized to delete related item %s" -msgstr "沒有刪除關聯物件%s的權限" - -#: ckan/controllers/related.py:232 ckan/templates/package/search.html:52 -msgid "API" -msgstr "API (應用程式介面)" - -#: ckan/controllers/related.py:233 -msgid "Application" -msgstr "應用程式" - -#: ckan/controllers/related.py:234 -msgid "Idea" -msgstr "想法" - -#: ckan/controllers/related.py:235 -msgid "News Article" -msgstr "新聞文章" - -#: ckan/controllers/related.py:236 -msgid "Paper" -msgstr "文件" - -#: ckan/controllers/related.py:237 -msgid "Post" -msgstr "發表" - -#: ckan/controllers/related.py:238 -msgid "Visualization" -msgstr "視覺化" - #: ckan/controllers/revision.py:42 msgid "CKAN Repository Revision History" msgstr "CKAN 資料庫版本歷史紀錄" @@ -708,10 +617,10 @@ msgstr "其他" msgid "Tag not found" msgstr "標籤不存在" -#: ckan/controllers/user.py:70 ckan/controllers/user.py:219 -#: ckan/controllers/user.py:234 ckan/controllers/user.py:296 -#: ckan/controllers/user.py:337 ckan/controllers/user.py:482 -#: ckan/controllers/user.py:503 ckan/logic/auth/update.py:198 +#: ckan/controllers/user.py:71 ckan/controllers/user.py:219 +#: ckan/controllers/user.py:234 ckan/controllers/user.py:297 +#: ckan/controllers/user.py:346 ckan/controllers/user.py:493 +#: ckan/controllers/user.py:515 ckan/logic/auth/update.py:198 msgid "User not found" msgstr "使用者不存在" @@ -731,13 +640,13 @@ msgstr "沒有刪除使用者 id \"{user_id}\" 的權限。" msgid "No user specified" msgstr "沒有使用者的詳細說明" -#: ckan/controllers/user.py:217 ckan/controllers/user.py:294 -#: ckan/controllers/user.py:335 ckan/controllers/user.py:501 +#: ckan/controllers/user.py:217 ckan/controllers/user.py:295 +#: ckan/controllers/user.py:344 ckan/controllers/user.py:513 #, python-format msgid "Unauthorized to edit user %s" msgstr "沒有權限修改使用者%s" -#: ckan/controllers/user.py:221 ckan/controllers/user.py:332 +#: ckan/controllers/user.py:221 ckan/controllers/user.py:341 msgid "Profile updated" msgstr "個人資料更新" @@ -761,75 +670,87 @@ msgstr "使用者 \"%s\" 已經註冊,但你仍以 \"%s\" 登入中" msgid "Unauthorized to edit a user." msgstr "無權修改使用者." -#: ckan/controllers/user.py:302 +#: ckan/controllers/user.py:303 #, python-format msgid "User %s not authorized to edit %s" msgstr "使用者%s無權修改%s" -#: ckan/controllers/user.py:383 +#: ckan/controllers/user.py:354 +msgid "Password entered was incorrect" +msgstr "輸入密碼錯誤" + +#: ckan/controllers/user.py:355 ckan/templates/user/edit_user_form.html:27 +msgid "Old Password" +msgstr "舊密碼" + +#: ckan/controllers/user.py:355 +msgid "incorrect password" +msgstr "錯誤的密碼" + +#: ckan/controllers/user.py:396 msgid "Login failed. Bad username or password." msgstr "登入失敗,使用者名稱或密碼錯誤。" -#: ckan/controllers/user.py:417 +#: ckan/controllers/user.py:430 msgid "Unauthorized to request reset password." msgstr "無權要求重設密碼." -#: ckan/controllers/user.py:446 +#: ckan/controllers/user.py:459 #, python-format msgid "\"%s\" matched several users" msgstr "\"%s\" 找到多個使用者" -#: ckan/controllers/user.py:448 ckan/controllers/user.py:450 +#: ckan/controllers/user.py:461 ckan/controllers/user.py:463 #, python-format msgid "No such user: %s" msgstr "沒有這個使用者: %s" -#: ckan/controllers/user.py:455 +#: ckan/controllers/user.py:468 msgid "Please check your inbox for a reset code." msgstr "請至你的收件夾查看重設的密碼。" -#: ckan/controllers/user.py:459 +#: ckan/controllers/user.py:472 #, python-format msgid "Could not send reset link: %s" msgstr "無法寄送重設的連結: %s" -#: ckan/controllers/user.py:474 +#: ckan/controllers/user.py:485 msgid "Unauthorized to reset password." msgstr "無權重設密碼." -#: ckan/controllers/user.py:486 +#: ckan/controllers/user.py:497 msgid "Invalid reset key. Please try again." msgstr "無效的重設金鑰,請再試一次。" -#: ckan/controllers/user.py:498 +#: ckan/controllers/user.py:510 msgid "Your password has been reset." msgstr "你的密碼已經重設。" -#: ckan/controllers/user.py:519 +#: ckan/controllers/user.py:531 msgid "Your password must be 4 characters or longer." msgstr "你的密碼必須在四個字元以上。" -#: ckan/controllers/user.py:522 +#: ckan/controllers/user.py:534 msgid "The passwords you entered do not match." msgstr "你輸入的密碼不正確" -#: ckan/controllers/user.py:525 +#: ckan/controllers/user.py:537 msgid "You must provide a password" msgstr "你必須提供一組密碼" -#: ckan/controllers/user.py:589 +#: ckan/controllers/user.py:602 msgid "Follow item not found" msgstr "跟隨的物件不存在" -#: ckan/controllers/user.py:593 +#: ckan/controllers/user.py:606 msgid "{0} not found" msgstr "{0}不存在" -#: ckan/controllers/user.py:595 +#: ckan/controllers/user.py:608 msgid "Unauthorized to read {0} {1}" msgstr "沒有讀取{0} {1}的權限" -#: ckan/controllers/user.py:610 +#: ckan/controllers/user.py:623 msgid "Everything" msgstr "所有事物" @@ -951,7 +872,7 @@ msgstr "{actor} 增加了 {dataset} 資料集的 {related_type} {related_item} " msgid "{actor} added the {related_type} {related_item}" msgstr "{actor} 增加了 {related_type} {related_item} " -#: ckan/lib/datapreview.py:268 ckan/templates/group/edit_base.html:16 +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 #: ckan/templates/organization/edit_base.html:17 #: ckan/templates/package/resource_read.html:37 #: ckan/templates/package/resource_views.html:4 @@ -959,9 +880,9 @@ msgid "View" msgstr "瀏覽" #: ckan/lib/email_notifications.py:103 -msgid "1 new activity from {site_title}" +msgid "{n} new activity from {site_title}" msgid_plural "{n} new activities from {site_title}" -msgstr[0] "{site_title}有一個新的活動{site_title}有{n}個新的活動" +msgstr[0] "{site_title} 有 {n} 個新的活動" #: ckan/lib/formatters.py:17 msgid "January" @@ -1011,129 +932,129 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: ckan/lib/formatters.py:109 +#: ckan/lib/formatters.py:114 msgid "Just now" msgstr "立刻" -#: ckan/lib/formatters.py:111 +#: ckan/lib/formatters.py:116 msgid "{mins} minute ago" msgid_plural "{mins} minutes ago" msgstr[0] "{mins}分鐘之前" -#: ckan/lib/formatters.py:114 +#: ckan/lib/formatters.py:119 msgid "{hours} hour ago" msgid_plural "{hours} hours ago" msgstr[0] "{hours}小時之前" -#: ckan/lib/formatters.py:120 +#: ckan/lib/formatters.py:125 msgid "{days} day ago" msgid_plural "{days} days ago" msgstr[0] "{days}天之前" -#: ckan/lib/formatters.py:123 +#: ckan/lib/formatters.py:128 msgid "{months} month ago" msgid_plural "{months} months ago" msgstr[0] "{months} 個月前" -#: ckan/lib/formatters.py:125 +#: ckan/lib/formatters.py:130 msgid "over {years} year ago" msgid_plural "over {years} years ago" msgstr[0] "超過 {years} 年之前" -#: ckan/lib/formatters.py:138 -msgid "{month} {day}, {year}, {hour:02}:{min:02}" -msgstr "{month} {day}, {year}, {hour:02}:{min:02}" +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" -#: ckan/lib/formatters.py:142 +#: ckan/lib/formatters.py:151 msgid "{month} {day}, {year}" msgstr "{month} {day}, {year}" -#: ckan/lib/formatters.py:158 +#: ckan/lib/formatters.py:167 msgid "{bytes} bytes" msgstr "{bytes} bytes" -#: ckan/lib/formatters.py:160 +#: ckan/lib/formatters.py:169 msgid "{kibibytes} KiB" msgstr "{kibibytes} KiB" -#: ckan/lib/formatters.py:162 +#: ckan/lib/formatters.py:171 msgid "{mebibytes} MiB" msgstr "{mebibytes} MiB" -#: ckan/lib/formatters.py:164 +#: ckan/lib/formatters.py:173 msgid "{gibibytes} GiB" msgstr "{gibibytes} GiB" -#: ckan/lib/formatters.py:166 +#: ckan/lib/formatters.py:175 msgid "{tebibytes} TiB" msgstr "{tebibytes} TiB" -#: ckan/lib/formatters.py:178 +#: ckan/lib/formatters.py:187 msgid "{n}" msgstr "{n}" -#: ckan/lib/formatters.py:180 +#: ckan/lib/formatters.py:189 msgid "{k}k" msgstr "{k}k" -#: ckan/lib/formatters.py:182 +#: ckan/lib/formatters.py:191 msgid "{m}M" msgstr "{m}M" -#: ckan/lib/formatters.py:184 +#: ckan/lib/formatters.py:193 msgid "{g}G" msgstr "{g}G" -#: ckan/lib/formatters.py:186 +#: ckan/lib/formatters.py:195 msgid "{t}T" msgstr "{t}T" -#: ckan/lib/formatters.py:188 +#: ckan/lib/formatters.py:197 msgid "{p}P" msgstr "{p}P" -#: ckan/lib/formatters.py:190 +#: ckan/lib/formatters.py:199 msgid "{e}E" msgstr "{e}E" -#: ckan/lib/formatters.py:192 +#: ckan/lib/formatters.py:201 msgid "{z}Z" msgstr "{z}Z" -#: ckan/lib/formatters.py:194 +#: ckan/lib/formatters.py:203 msgid "{y}Y" msgstr "{y}Y" -#: ckan/lib/helpers.py:858 +#: ckan/lib/helpers.py:939 msgid "Update your avatar at gravatar.com" msgstr "在gravatar.com更新你的顯示圖片" -#: ckan/lib/helpers.py:1061 ckan/lib/helpers.py:1073 +#: ckan/lib/helpers.py:1145 ckan/lib/helpers.py:1157 msgid "Unknown" msgstr "未知的" -#: ckan/lib/helpers.py:1117 +#: ckan/lib/helpers.py:1202 msgid "Unnamed resource" msgstr "佚名的資源" -#: ckan/lib/helpers.py:1164 +#: ckan/lib/helpers.py:1250 msgid "Created new dataset." msgstr "建立新的資料集" -#: ckan/lib/helpers.py:1166 +#: ckan/lib/helpers.py:1252 msgid "Edited resources." msgstr "編輯資料" -#: ckan/lib/helpers.py:1168 +#: ckan/lib/helpers.py:1254 msgid "Edited settings." msgstr "編輯設定" -#: ckan/lib/helpers.py:1431 +#: ckan/lib/helpers.py:1518 msgid "{number} view" msgid_plural "{number} views" msgstr[0] "瀏覽次數:{number}" -#: ckan/lib/helpers.py:1433 +#: ckan/lib/helpers.py:1520 msgid "{number} recent view" msgid_plural "{number} recent views" msgstr[0] "目前瀏覽數:{number}" @@ -1163,12 +1084,12 @@ msgstr "你已經要求重置在 {site_title} 上的密碼。\n請點擊連結 #: ckan/lib/mailer.py:119 msgid "" -"You have been invited to {site_title}. A user has already been createdto you with the username {user_name}. You can change it later.\n" +"You have been invited to {site_title}. A user has already been created to you with the username {user_name}. You can change it later.\n" "\n" "To accept this invite, please reset your password at:\n" "\n" " {reset_link}\n" -msgstr "您已經獲邀加入 {site_title} 網站。我們已經為您建立一個名為 {user_name} 的使用者,您可以稍候修改它。\n\n要接受此邀請,請點選下方網址以重新設定您的密碼:\n\n{reset_link}\n" +msgstr "您已經獲邀加入 {site_title} 網站。我們已經為您建立一個名為 {user_name} 的使用者,您可以稍後修改它。\n\n要接受此邀請,請點選下方網址以重新設定您的密碼:\n\n{reset_link}\n" #: ckan/lib/mailer.py:145 ckan/templates/user/request_reset.html:3 #: ckan/templates/user/request_reset.html:13 @@ -1188,7 +1109,7 @@ msgstr "{site_title} 的邀請" #: ckan/lib/navl/dictization_functions.py:23 #: ckan/lib/navl/dictization_functions.py:25 ckan/lib/navl/validators.py:23 #: ckan/lib/navl/validators.py:30 ckan/lib/navl/validators.py:50 -#: ckan/logic/validators.py:620 ckan/logic/action/get.py:1847 +#: ckan/logic/validators.py:630 ckan/logic/action/get.py:2107 msgid "Missing value" msgstr "值(value)遺失" @@ -1201,7 +1122,7 @@ msgstr "輸入的字串 %(name)s 不是被預期的" msgid "Please enter an integer value" msgstr "請輸入一個整數" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 #: ckan/templates/package/edit_base.html:21 #: ckan/templates/package/resources.html:5 #: ckan/templates/package/snippets/package_context.html:12 @@ -1211,11 +1132,11 @@ msgstr "請輸入一個整數" msgid "Resources" msgstr "資料" -#: ckan/logic/__init__.py:97 ckan/logic/action/__init__.py:58 +#: ckan/logic/__init__.py:89 ckan/logic/action/__init__.py:58 msgid "Package resource(s) invalid" msgstr "組件資料無效" -#: ckan/logic/__init__.py:104 ckan/logic/__init__.py:106 +#: ckan/logic/__init__.py:96 ckan/logic/__init__.py:98 #: ckan/logic/action/__init__.py:60 ckan/logic/action/__init__.py:62 msgid "Extras" msgstr "擴充物件" @@ -1225,25 +1146,22 @@ msgstr "擴充物件" msgid "Tag vocabulary \"%s\" does not exist" msgstr "標籤字串 \"%s\" 不存在" -#: ckan/logic/converters.py:119 ckan/logic/validators.py:206 -#: ckan/logic/validators.py:223 ckan/logic/validators.py:719 +#: ckan/logic/converters.py:119 ckan/logic/validators.py:211 +#: ckan/logic/validators.py:228 ckan/logic/validators.py:729 #: ckan/templates/group/members.html:17 #: ckan/templates/organization/members.html:17 #: ckanext/stats/templates/ckanext/stats/index.html:156 msgid "User" msgstr "使用者" -#: ckan/logic/converters.py:144 ckan/logic/validators.py:141 -#: ckan/logic/validators.py:183 ckan/templates/package/read_base.html:24 +#: ckan/logic/converters.py:144 ckan/logic/validators.py:146 +#: ckan/logic/validators.py:188 ckan/templates/package/read_base.html:19 #: ckanext/stats/templates/ckanext/stats/index.html:89 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Dataset" msgstr "資料集" -#: ckan/logic/converters.py:169 ckan/logic/validators.py:236 +#: ckan/logic/converters.py:169 ckan/logic/validators.py:241 #: ckanext/stats/templates/ckanext/stats/index.html:113 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Group" msgstr "群組" @@ -1255,378 +1173,369 @@ msgstr "錯誤的JSON格式" msgid "A organization must be supplied" msgstr "必須提供一個組織" -#: ckan/logic/validators.py:43 -msgid "You cannot remove a dataset from an existing organization" -msgstr "不可從已存在的組織移除資料" - -#: ckan/logic/validators.py:48 +#: ckan/logic/validators.py:44 msgid "Organization does not exist" msgstr "組織不存在" -#: ckan/logic/validators.py:53 +#: ckan/logic/validators.py:49 msgid "You cannot add a dataset to this organization" msgstr "你無法在這個組織中建立資料集" -#: ckan/logic/validators.py:93 +#: ckan/logic/validators.py:89 msgid "Invalid integer" msgstr "無效的整數" -#: ckan/logic/validators.py:98 +#: ckan/logic/validators.py:94 msgid "Must be a natural number" msgstr "必須是整數" -#: ckan/logic/validators.py:104 +#: ckan/logic/validators.py:100 msgid "Must be a postive integer" msgstr "必須是正整數" -#: ckan/logic/validators.py:122 +#: ckan/logic/validators.py:127 msgid "Date format incorrect" msgstr "日期格式不正確" -#: ckan/logic/validators.py:131 +#: ckan/logic/validators.py:136 msgid "No links are allowed in the log_message." msgstr "log_message中沒有被允許的連結。" -#: ckan/logic/validators.py:151 +#: ckan/logic/validators.py:156 msgid "Dataset id already exists" msgstr "資料集 id 已經被使用" -#: ckan/logic/validators.py:192 ckan/logic/validators.py:283 +#: ckan/logic/validators.py:197 ckan/logic/validators.py:288 msgid "Resource" msgstr "資料" -#: ckan/logic/validators.py:250 ckan/templates/package/read_base.html:27 -#: ckan/templates/package/related_list.html:4 +#: ckan/logic/validators.py:255 ckan/templates/package/related_list.html:4 #: ckan/templates/snippets/related.html:2 msgid "Related" msgstr "關聯的" -#: ckan/logic/validators.py:260 +#: ckan/logic/validators.py:265 msgid "That group name or ID does not exist." msgstr "此群組名稱或ID不存在。" -#: ckan/logic/validators.py:274 +#: ckan/logic/validators.py:279 msgid "Activity type" msgstr "指令類型" -#: ckan/logic/validators.py:349 +#: ckan/logic/validators.py:354 msgid "Names must be strings" msgstr "名子必須是字串" -#: ckan/logic/validators.py:353 +#: ckan/logic/validators.py:358 msgid "That name cannot be used" msgstr "此名稱無法使用" -#: ckan/logic/validators.py:356 +#: ckan/logic/validators.py:361 #, python-format msgid "Must be at least %s characters long" msgstr "長度必須至少要 %s 個字元" -#: ckan/logic/validators.py:358 ckan/logic/validators.py:636 +#: ckan/logic/validators.py:363 ckan/logic/validators.py:646 #, python-format msgid "Name must be a maximum of %i characters long" msgstr "名稱字串長度的最大值是 %i " -#: ckan/logic/validators.py:361 +#: ckan/logic/validators.py:366 msgid "" "Must be purely lowercase alphanumeric (ascii) characters and these symbols: " "-_" msgstr "必須是小寫英文字母 (ascii編碼)、數字、符號 '-' 及 '_'" -#: ckan/logic/validators.py:379 +#: ckan/logic/validators.py:384 msgid "That URL is already in use." msgstr "此網址已經被使用" -#: ckan/logic/validators.py:384 +#: ckan/logic/validators.py:389 #, python-format msgid "Name \"%s\" length is less than minimum %s" msgstr "名稱 \"%s\" 字串長度小於最小值 %s" -#: ckan/logic/validators.py:388 +#: ckan/logic/validators.py:393 #, python-format msgid "Name \"%s\" length is more than maximum %s" msgstr "名稱 \"%s\" 字串長度大於最大值 %s" -#: ckan/logic/validators.py:394 +#: ckan/logic/validators.py:399 #, python-format msgid "Version must be a maximum of %i characters long" msgstr "版本名稱長度最大值為 %i" -#: ckan/logic/validators.py:412 +#: ckan/logic/validators.py:417 #, python-format msgid "Duplicate key \"%s\"" msgstr "重複的Key \"%s\"" -#: ckan/logic/validators.py:428 +#: ckan/logic/validators.py:433 msgid "Group name already exists in database" msgstr "群組名稱已經被使用" -#: ckan/logic/validators.py:434 +#: ckan/logic/validators.py:439 #, python-format msgid "Tag \"%s\" length is less than minimum %s" msgstr "標籤 \"%s\" 的長度小於最小值%s" -#: ckan/logic/validators.py:438 +#: ckan/logic/validators.py:443 #, python-format msgid "Tag \"%s\" length is more than maximum %i" msgstr "標籤 \"%s\" 字串長度大於最大值 %i" -#: ckan/logic/validators.py:446 +#: ckan/logic/validators.py:451 #, python-format msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." msgstr "標籤 \"%s\" 必須是英文字母、數字、符號'-'及'_'" -#: ckan/logic/validators.py:454 +#: ckan/logic/validators.py:459 #, python-format msgid "Tag \"%s\" must not be uppercase" msgstr "標籤 \"%s\" 不能有大寫字母" -#: ckan/logic/validators.py:563 +#: ckan/logic/validators.py:568 msgid "User names must be strings" msgstr "使用者名稱必須是字串" -#: ckan/logic/validators.py:579 +#: ckan/logic/validators.py:584 msgid "That login name is not available." msgstr "此登入名稱無法使用" -#: ckan/logic/validators.py:588 +#: ckan/logic/validators.py:593 msgid "Please enter both passwords" msgstr "請輸入兩組密碼" -#: ckan/logic/validators.py:596 +#: ckan/logic/validators.py:601 msgid "Passwords must be strings" msgstr "密碼必須是字串" -#: ckan/logic/validators.py:600 +#: ckan/logic/validators.py:605 msgid "Your password must be 4 characters or longer" msgstr "你的密碼必須大於四個字元" -#: ckan/logic/validators.py:608 +#: ckan/logic/validators.py:613 msgid "The passwords you entered do not match" msgstr "你輸入的密碼不正確" -#: ckan/logic/validators.py:624 +#: ckan/logic/validators.py:634 msgid "" "Edit not allowed as it looks like spam. Please avoid links in your " "description." msgstr "不允許編輯,因為你編輯的內容被判定為疑似廣告內容。請避免在說明中使用連結。" -#: ckan/logic/validators.py:633 +#: ckan/logic/validators.py:643 #, python-format msgid "Name must be at least %s characters long" msgstr "使用者名稱長度必須至少要%s個字元" -#: ckan/logic/validators.py:641 +#: ckan/logic/validators.py:651 msgid "That vocabulary name is already in use." msgstr "該詞彙表的名稱已經被使用。" -#: ckan/logic/validators.py:647 +#: ckan/logic/validators.py:657 #, python-format msgid "Cannot change value of key from %s to %s. This key is read-only" msgstr "無法將Key的值從 %s 變更為 %s。 這個Key是唯讀的。" -#: ckan/logic/validators.py:656 +#: ckan/logic/validators.py:666 msgid "Tag vocabulary was not found." msgstr "標籤詞彙不存在" -#: ckan/logic/validators.py:669 +#: ckan/logic/validators.py:679 #, python-format msgid "Tag %s does not belong to vocabulary %s" msgstr "標籤%s不屬於詞彙表%s" -#: ckan/logic/validators.py:675 +#: ckan/logic/validators.py:685 msgid "No tag name" msgstr "無標籤名稱" -#: ckan/logic/validators.py:688 +#: ckan/logic/validators.py:698 #, python-format msgid "Tag %s already belongs to vocabulary %s" msgstr "標籤%s已經包含於詞彙表%s" -#: ckan/logic/validators.py:711 +#: ckan/logic/validators.py:721 msgid "Please provide a valid URL" msgstr "請提供一個有效的網址。" -#: ckan/logic/validators.py:725 +#: ckan/logic/validators.py:735 msgid "role does not exist." msgstr "角色不存在" -#: ckan/logic/validators.py:754 +#: ckan/logic/validators.py:764 msgid "Datasets with no organization can't be private." msgstr "非組織的資料集不能私有." -#: ckan/logic/validators.py:760 +#: ckan/logic/validators.py:770 msgid "Not a list" msgstr "不是列表" -#: ckan/logic/validators.py:763 +#: ckan/logic/validators.py:773 msgid "Not a string" msgstr "不是字串" -#: ckan/logic/validators.py:795 +#: ckan/logic/validators.py:805 msgid "This parent would create a loop in the hierarchy" msgstr "此父項目可能會於階層中形成迴圈" -#: ckan/logic/validators.py:805 +#: ckan/logic/validators.py:815 msgid "\"filter_fields\" and \"filter_values\" should have the same length" msgstr "「篩選條件」與「篩選值」需具備相同數量" -#: ckan/logic/validators.py:816 +#: ckan/logic/validators.py:826 msgid "\"filter_fields\" is required when \"filter_values\" is filled" msgstr "當「篩選值」存在時必須提供「篩選條件」" -#: ckan/logic/validators.py:819 +#: ckan/logic/validators.py:829 msgid "\"filter_values\" is required when \"filter_fields\" is filled" msgstr "當「篩選條件」存在時必須提供「篩選值」" -#: ckan/logic/validators.py:833 +#: ckan/logic/validators.py:843 msgid "There is a schema field with the same name" msgstr "已有一個 schema 欄位具有相同名稱" -#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:638 +#: ckan/logic/action/create.py:178 ckan/logic/action/create.py:723 #, python-format msgid "REST API: Create object %s" msgstr "REST API: 建立元件 %s" -#: ckan/logic/action/create.py:517 +#: ckan/logic/action/create.py:602 #, python-format msgid "REST API: Create package relationship: %s %s %s" msgstr "REST API: 建立組件關連 : %s %s %s" -#: ckan/logic/action/create.py:558 +#: ckan/logic/action/create.py:643 #, python-format msgid "REST API: Create member object %s" msgstr "REST API: 建立成員元件 %s" -#: ckan/logic/action/create.py:772 +#: ckan/logic/action/create.py:862 msgid "Trying to create an organization as a group" msgstr "嘗試建立一個組織,就像群組一樣" -#: ckan/logic/action/create.py:859 +#: ckan/logic/action/create.py:951 msgid "You must supply a package id or name (parameter \"package\")." msgstr "你必須提供一個組件ID或名稱(參數\"組件\")。" -#: ckan/logic/action/create.py:862 +#: ckan/logic/action/create.py:954 msgid "You must supply a rating (parameter \"rating\")." msgstr "你必須留下評分(參數\"評分\")。" -#: ckan/logic/action/create.py:867 +#: ckan/logic/action/create.py:959 msgid "Rating must be an integer value." msgstr "評分必須是一個整數。" -#: ckan/logic/action/create.py:871 +#: ckan/logic/action/create.py:963 #, python-format msgid "Rating must be between %i and %i." msgstr "評分必須介於%i 及 %i 之間。" -#: ckan/logic/action/create.py:1216 ckan/logic/action/create.py:1223 +#: ckan/logic/action/create.py:1312 ckan/logic/action/create.py:1319 msgid "You must be logged in to follow users" msgstr "你必須登入才能關注使用者" -#: ckan/logic/action/create.py:1236 +#: ckan/logic/action/create.py:1332 msgid "You cannot follow yourself" msgstr "你無法追蹤自己" -#: ckan/logic/action/create.py:1244 ckan/logic/action/create.py:1301 -#: ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1340 ckan/logic/action/create.py:1397 +#: ckan/logic/action/create.py:1530 msgid "You are already following {0}" msgstr "你正在關注{0}" -#: ckan/logic/action/create.py:1275 ckan/logic/action/create.py:1283 +#: ckan/logic/action/create.py:1371 ckan/logic/action/create.py:1379 msgid "You must be logged in to follow a dataset." msgstr "你必須登入才能關注資料集" -#: ckan/logic/action/create.py:1335 +#: ckan/logic/action/create.py:1431 msgid "User {username} does not exist." msgstr " 使用者 {username} 不存在." -#: ckan/logic/action/create.py:1410 ckan/logic/action/create.py:1418 +#: ckan/logic/action/create.py:1506 ckan/logic/action/create.py:1514 msgid "You must be logged in to follow a group." msgstr "你必須登入才能關注群組" -#: ckan/logic/action/delete.py:68 +#: ckan/logic/action/delete.py:72 #, python-format msgid "REST API: Delete Package: %s" msgstr "REST API: 刪除組件: %s" -#: ckan/logic/action/delete.py:181 ckan/logic/action/delete.py:308 +#: ckan/logic/action/delete.py:241 ckan/logic/action/delete.py:370 #, python-format msgid "REST API: Delete %s" msgstr "REST API: 刪除 %s" -#: ckan/logic/action/delete.py:270 +#: ckan/logic/action/delete.py:330 #, python-format msgid "REST API: Delete Member: %s" msgstr "REST API: 刪除成員: %s" -#: ckan/logic/action/delete.py:467 ckan/logic/action/delete.py:493 -#: ckan/logic/action/get.py:2300 ckan/logic/action/update.py:981 +#: ckan/logic/action/delete.py:556 ckan/logic/action/delete.py:582 +#: ckan/logic/action/get.py:2506 ckan/logic/action/update.py:993 msgid "id not in data" msgstr "在資料中找不到ID" -#: ckan/logic/action/delete.py:471 ckan/logic/action/get.py:2303 -#: ckan/logic/action/update.py:985 +#: ckan/logic/action/delete.py:560 ckan/logic/action/get.py:2509 +#: ckan/logic/action/update.py:997 #, python-format msgid "Could not find vocabulary \"%s\"" msgstr "詞彙表\"%s\" 不存在" -#: ckan/logic/action/delete.py:501 +#: ckan/logic/action/delete.py:590 #, python-format msgid "Could not find tag \"%s\"" msgstr "標籤 \"%s\" 不存在" -#: ckan/logic/action/delete.py:527 ckan/logic/action/delete.py:531 +#: ckan/logic/action/delete.py:616 ckan/logic/action/delete.py:620 msgid "You must be logged in to unfollow something." msgstr "你必須登入才能取消關注" -#: ckan/logic/action/delete.py:542 +#: ckan/logic/action/delete.py:631 msgid "You are not following {0}." msgstr "你並沒有關注{0}" -#: ckan/logic/action/get.py:1029 ckan/logic/action/update.py:130 -#: ckan/logic/action/update.py:143 +#: ckan/logic/action/get.py:1147 ckan/logic/action/update.py:133 +#: ckan/logic/action/update.py:147 msgid "Resource was not found." msgstr "資料不存在" -#: ckan/logic/action/get.py:1851 +#: ckan/logic/action/get.py:2111 msgid "Do not specify if using \"query\" parameter" msgstr "若使用\"query\"參數則不要詳細說明" -#: ckan/logic/action/get.py:1860 +#: ckan/logic/action/get.py:2120 msgid "Must be : pair(s)" msgstr ":必須是一對" -#: ckan/logic/action/get.py:1892 +#: ckan/logic/action/get.py:2152 msgid "Field \"{field}\" not recognised in resource_search." msgstr "在 resource_search 裡無法辨識欄位 \"{field}\"。" -#: ckan/logic/action/get.py:2238 -msgid "unknown user:" -msgstr "未知的使用者:" - -#: ckan/logic/action/update.py:65 +#: ckan/logic/action/update.py:68 msgid "Item was not found." msgstr "找不到物件" -#: ckan/logic/action/update.py:293 ckan/logic/action/update.py:1176 +#: ckan/logic/action/update.py:297 ckan/logic/action/update.py:1094 msgid "Package was not found." msgstr "組件不存在" -#: ckan/logic/action/update.py:336 ckan/logic/action/update.py:554 +#: ckan/logic/action/update.py:340 ckan/logic/action/update.py:561 #, python-format msgid "REST API: Update object %s" msgstr "REST API: 更新元件 %s" -#: ckan/logic/action/update.py:437 +#: ckan/logic/action/update.py:443 #, python-format msgid "REST API: Update package relationship: %s %s %s" msgstr "REST API: 更新組件關連: %s %s %s" -#: ckan/logic/action/update.py:789 +#: ckan/logic/action/update.py:801 msgid "TaskStatus was not found." msgstr "任務狀態不存在" -#: ckan/logic/action/update.py:1180 +#: ckan/logic/action/update.py:1098 msgid "Organization was not found." msgstr "組織不存在" @@ -1657,7 +1566,7 @@ msgstr "你必須登入才可以增加關連物件" msgid "No dataset id provided, cannot check auth." msgstr "此資料集的 id 不存在,無法確認權限。" -#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:28 +#: ckan/logic/auth/create.py:84 ckan/logic/auth/delete.py:32 #: ckan/logic/auth/get.py:135 ckan/logic/auth/update.py:61 msgid "No package found for this resource, cannot check auth." msgstr "此資料的組件不存在," @@ -1667,94 +1576,98 @@ msgstr "此資料的組件不存在," msgid "User %s not authorized to create resources on dataset %s" msgstr "使用者 %s 沒有於資料集 %s 中建立資料的權限" -#: ckan/logic/auth/create.py:115 +#: ckan/logic/auth/create.py:124 #, python-format msgid "User %s not authorized to edit these packages" msgstr "使用者 %s 沒有權限編輯組件" -#: ckan/logic/auth/create.py:126 +#: ckan/logic/auth/create.py:135 #, python-format msgid "User %s not authorized to create groups" msgstr "使用者 %s 沒有權限建立群組" -#: ckan/logic/auth/create.py:136 +#: ckan/logic/auth/create.py:145 #, python-format msgid "User %s not authorized to create organizations" msgstr "使用者%s沒有權限建立組織" -#: ckan/logic/auth/create.py:152 +#: ckan/logic/auth/create.py:161 msgid "User {user} not authorized to create users via the API" msgstr "使用者 {user} 沒有權限透過 API 建立使用者" -#: ckan/logic/auth/create.py:155 +#: ckan/logic/auth/create.py:164 msgid "Not authorized to create users" msgstr "沒有權限建立使用者" -#: ckan/logic/auth/create.py:198 +#: ckan/logic/auth/create.py:207 msgid "Group was not found." msgstr "群組不存在" -#: ckan/logic/auth/create.py:218 +#: ckan/logic/auth/create.py:227 msgid "Valid API key needed to create a package" msgstr "有效的API Key必須建立一個組件" -#: ckan/logic/auth/create.py:226 +#: ckan/logic/auth/create.py:235 msgid "Valid API key needed to create a group" msgstr "有效的API Key必須建立一個群組" -#: ckan/logic/auth/create.py:246 +#: ckan/logic/auth/create.py:255 #, python-format msgid "User %s not authorized to add members" msgstr "使用者%s沒有權限新增成員" -#: ckan/logic/auth/create.py:270 ckan/logic/auth/update.py:113 +#: ckan/logic/auth/create.py:279 ckan/logic/auth/update.py:113 #, python-format msgid "User %s not authorized to edit group %s" msgstr "使用者 %s 沒有權限編輯群組 %s" -#: ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/delete.py:38 #, python-format msgid "User %s not authorized to delete resource %s" msgstr "使用者%s沒有權限刪除資源%s" -#: ckan/logic/auth/delete.py:50 +#: ckan/logic/auth/delete.py:54 msgid "Resource view not found, cannot check auth." msgstr "此資料檢視不存在,無法確認權限。" -#: ckan/logic/auth/delete.py:60 ckan/logic/auth/delete.py:74 +#: ckan/logic/auth/delete.py:69 ckan/logic/auth/delete.py:83 msgid "Only the owner can delete a related item" msgstr "只有資料擁有者可以刪除關連物件" -#: ckan/logic/auth/delete.py:86 +#: ckan/logic/auth/delete.py:95 #, python-format msgid "User %s not authorized to delete relationship %s" msgstr "使用者 %s 沒有權限刪除關連性 %s" -#: ckan/logic/auth/delete.py:95 +#: ckan/logic/auth/delete.py:104 #, python-format msgid "User %s not authorized to delete groups" msgstr "使用者%s沒有權限刪除群組" -#: ckan/logic/auth/delete.py:99 +#: ckan/logic/auth/delete.py:108 #, python-format msgid "User %s not authorized to delete group %s" msgstr "使用者 %s 沒有權限刪除群組 %s" -#: ckan/logic/auth/delete.py:116 +#: ckan/logic/auth/delete.py:125 #, python-format msgid "User %s not authorized to delete organizations" msgstr "使用者%s沒有權限刪除組織" -#: ckan/logic/auth/delete.py:120 +#: ckan/logic/auth/delete.py:129 #, python-format msgid "User %s not authorized to delete organization %s" msgstr "使用者%s沒有權限刪除組織%s" -#: ckan/logic/auth/delete.py:133 +#: ckan/logic/auth/delete.py:142 #, python-format msgid "User %s not authorized to delete task_status" msgstr "使用者 %s 沒有權限刪除任務狀態" +#: ckan/logic/auth/get.py:10 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "沒有權限" + #: ckan/logic/auth/get.py:97 #, python-format msgid "User %s not authorized to read these packages" @@ -1775,7 +1688,7 @@ msgstr "使用者 %s 沒有權限讀取資料 %s" msgid "User %s not authorized to read group %s" msgstr "使用者 %s 沒有權限讀取群組 %s" -#: ckan/logic/auth/get.py:234 +#: ckan/logic/auth/get.py:237 msgid "You must be logged in to access your dashboard." msgstr "你必須登入才能使用控制台" @@ -1853,63 +1766,63 @@ msgstr "有效的API Key必須編輯一個組件" msgid "Valid API key needed to edit a group" msgstr "有效的API Key必須編輯一個群組" -#: ckan/model/license.py:177 +#: ckan/model/license.py:220 msgid "License not specified" msgstr "授權類型未指定" -#: ckan/model/license.py:187 +#: ckan/model/license.py:230 msgid "Open Data Commons Public Domain Dedication and License (PDDL)" msgstr "開放資料共用公共領域貢獻和授權條款 (PDDL)。" -#: ckan/model/license.py:197 +#: ckan/model/license.py:240 msgid "Open Data Commons Open Database License (ODbL)" msgstr "Open Data Commons Open Database License (ODbL)" -#: ckan/model/license.py:207 +#: ckan/model/license.py:250 msgid "Open Data Commons Attribution License" msgstr "Open Data Commons Attribution License" -#: ckan/model/license.py:218 +#: ckan/model/license.py:261 msgid "Creative Commons CCZero" msgstr "Creative Commons CCZero" -#: ckan/model/license.py:227 +#: ckan/model/license.py:270 msgid "Creative Commons Attribution" msgstr "Creative Commons Attribution" -#: ckan/model/license.py:237 +#: ckan/model/license.py:280 msgid "Creative Commons Attribution Share-Alike" msgstr "Creative Commons Attribution Share-Alike" -#: ckan/model/license.py:246 +#: ckan/model/license.py:289 msgid "GNU Free Documentation License" msgstr "GNU Free Documentation License" -#: ckan/model/license.py:256 +#: ckan/model/license.py:299 msgid "Other (Open)" msgstr "其他(開放)" -#: ckan/model/license.py:266 +#: ckan/model/license.py:309 msgid "Other (Public Domain)" msgstr "其他(公共領域)" -#: ckan/model/license.py:276 +#: ckan/model/license.py:319 msgid "Other (Attribution)" msgstr "其他(歸因)" -#: ckan/model/license.py:288 +#: ckan/model/license.py:331 msgid "UK Open Government Licence (OGL)" msgstr "UK Open Government Licence (OGL)" -#: ckan/model/license.py:296 +#: ckan/model/license.py:339 msgid "Creative Commons Non-Commercial (Any)" msgstr "Creative Commons Non-Commercial (Any)" -#: ckan/model/license.py:304 +#: ckan/model/license.py:347 msgid "Other (Non-Commercial)" msgstr "其他(非商業)" -#: ckan/model/license.py:312 +#: ckan/model/license.py:355 msgid "Other (Not Open)" msgstr "其他(非開放)" @@ -2016,8 +1929,6 @@ msgstr "確認" #: ckan/templates/organization/confirm_delete_member.html:15 #: ckan/templates/package/confirm_delete.html:14 #: ckan/templates/package/confirm_delete_resource.html:14 -#: ckan/templates/related/confirm_delete.html:14 -#: ckan/templates/related/snippets/related_form.html:32 msgid "Cancel" msgstr "取消" @@ -2042,12 +1953,13 @@ msgstr "連結" #: ckan/public/base/javascript/modules/image-upload.js:17 #: ckan/templates/group/snippets/group_item.html:43 #: ckan/templates/macros/form.html:235 -#: ckan/templates/snippets/search_form.html:65 +#: ckan/templates/snippets/search_form.html:66 msgid "Remove" msgstr "移除" #: ckan/public/base/javascript/modules/image-upload.js:18 -#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:26 +#: ckan/templates/macros/form.html:412 ckanext/imageview/plugin.py:21 +#: ckanext/imageview/plugin.py:26 msgid "Image" msgstr "圖片" @@ -2120,7 +2032,6 @@ msgstr "重新排序資料檢視" #: ckan/templates/organization/snippets/organization_form.html:18 #: ckan/templates/package/snippets/package_basic_fields.html:13 #: ckan/templates/package/snippets/resource_form.html:24 -#: ckan/templates/related/snippets/related_form.html:19 msgid "URL" msgstr "網址" @@ -2134,7 +2045,6 @@ msgstr "網址" #: ckan/templates/package/resource_edit.html:3 #: ckan/templates/package/resource_edit_base.html:12 #: ckan/templates/package/snippets/resource_item.html:57 -#: ckan/templates/related/snippets/related_item.html:36 msgid "Edit" msgstr "編輯" @@ -2173,33 +2083,41 @@ msgstr "Powered by Site Title: This is the title of this CKAN instance It " @@ -2350,7 +2265,6 @@ msgid "" msgstr "可使用下列之CKAN action API所提供的功能來存取資料API。" #: ckan/templates/ajax_snippets/api_info.html:42 -#: ckan/templates/related/edit_form.html:7 msgid "Create" msgstr "建立" @@ -2502,7 +2416,7 @@ msgstr "選取" #: ckan/templates/organization/read_base.html:18 #: ckan/templates/package/activity.html:3 #: ckan/templates/package/activity.html:6 -#: ckan/templates/package/read_base.html:26 +#: ckan/templates/package/read_base.html:21 #: ckan/templates/user/activity_stream.html:3 #: ckan/templates/user/activity_stream.html:6 #: ckan/templates/user/read_base.html:20 @@ -2535,8 +2449,6 @@ msgstr "群組表單" #: ckan/templates/package/confirm_delete.html:15 #: ckan/templates/package/confirm_delete_resource.html:3 #: ckan/templates/package/confirm_delete_resource.html:15 -#: ckan/templates/related/confirm_delete.html:3 -#: ckan/templates/related/confirm_delete.html:15 msgid "Confirm Delete" msgstr "確認刪除" @@ -2554,7 +2466,7 @@ msgstr "確定要刪除成員:{name}嗎?" #: ckan/templates/group/read_base.html:12 #: ckan/templates/organization/edit_base.html:11 #: ckan/templates/organization/read_base.html:12 -#: ckan/templates/package/read_base.html:19 +#: ckan/templates/package/read_base.html:14 #: ckan/templates/package/resource_read.html:31 #: ckan/templates/user/edit.html:8 ckan/templates/user/edit_base.html:3 #: ckan/templates/user/read_base.html:14 @@ -2699,14 +2611,12 @@ msgstr "確定要刪除這個成員嗎?" #: ckan/templates/package/edit_view.html:19 #: ckan/templates/package/snippets/package_form.html:40 #: ckan/templates/package/snippets/resource_form.html:66 -#: ckan/templates/related/snippets/related_form.html:29 #: ckan/templates/revision/read.html:24 #: ckan/templates/user/edit_user_form.html:38 msgid "Delete" msgstr "刪除" #: ckan/templates/group/member_new.html:61 -#: ckan/templates/related/snippets/related_form.html:33 msgid "Save" msgstr "儲存" @@ -2794,7 +2704,6 @@ msgstr "我的群組" #: ckan/templates/package/snippets/package_basic_fields.html:19 #: ckan/templates/package/snippets/resource_form.html:32 #: ckan/templates/package/snippets/view_form.html:9 -#: ckan/templates/related/snippets/related_form.html:21 msgid "Description" msgstr "說明" @@ -2844,7 +2753,7 @@ msgid "" "could be to catalogue datasets for a particular project or team, or on a " "particular theme, or as a very simple way to help people find and search " "your own published datasets. " -msgstr "您可以使用 CKAN 群組建立並管理多個資料集。組織可以代表一個主題、專案或是小組,可以幫助使用者快速找尋資料集。 " +msgstr "您可以使用 CKAN 群組建立並管理多個資料集。群組可以代表一個主題、專案或是小組,可以幫助使用者快速找尋資料集。 " #: ckan/templates/group/snippets/history_revisions.html:10 #: ckan/templates/package/snippets/history_revisions.html:10 @@ -2854,7 +2763,7 @@ msgstr "比較。" #: ckan/templates/group/snippets/info.html:16 #: ckan/templates/organization/bulk_process.html:72 #: ckan/templates/package/read.html:21 -#: ckan/templates/package/snippets/package_basic_fields.html:111 +#: ckan/templates/package/snippets/package_basic_fields.html:112 #: ckan/templates/snippets/organization.html:37 #: ckan/templates/snippets/package_item.html:42 msgid "Deleted" @@ -2954,38 +2863,30 @@ msgstr "熱門標籤" msgid "{0} statistics" msgstr "{0} 項統計" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "dataset" msgstr "資料集" -#: ckan/templates/home/snippets/stats.html:10 +#: ckan/templates/home/snippets/stats.html:11 msgid "datasets" msgstr "個資料集" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organization" msgstr "組織" -#: ckan/templates/home/snippets/stats.html:16 +#: ckan/templates/home/snippets/stats.html:17 msgid "organizations" msgstr "組織" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "group" msgstr "群組" -#: ckan/templates/home/snippets/stats.html:22 +#: ckan/templates/home/snippets/stats.html:23 msgid "groups" msgstr "群組" -#: ckan/templates/home/snippets/stats.html:28 -msgid "related item" -msgstr "關聯的項目" - -#: ckan/templates/home/snippets/stats.html:28 -msgid "related items" -msgstr "關聯的項目" - #: ckan/templates/macros/form.html:126 #, python-format msgid "" @@ -3003,7 +2904,6 @@ msgid "Custom" msgstr "客製" #: ckan/templates/macros/form.html:290 -#: ckan/templates/related/snippets/related_form.html:7 msgid "The form contains invalid entries:" msgstr "此表格包含無效條目:" @@ -3016,7 +2916,6 @@ msgid "http://example.com/my-image.jpg" msgstr "http://example.com/my-image.jpg" #: ckan/templates/macros/form.html:411 -#: ckan/templates/related/snippets/related_form.html:20 msgid "Image URL" msgstr "圖片 URL" @@ -3061,7 +2960,7 @@ msgstr "草稿" #: ckan/templates/organization/bulk_process.html:75 #: ckan/templates/package/read.html:11 -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 #: ckan/templates/snippets/package_item.html:31 #: ckan/templates/snippets/private.html:2 #: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 @@ -3095,6 +2994,20 @@ msgstr "搜尋組織。" msgid "There are currently no organizations for this site" msgstr "此網站目前沒有任何組織" +#: ckan/templates/organization/member_new.html:32 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "使用者名稱" + +#: ckan/templates/organization/member_new.html:50 +msgid "Email address" +msgstr "電子郵件地址" + #: ckan/templates/organization/member_new.html:62 msgid "Update Member" msgstr "更新成員" @@ -3229,7 +3142,6 @@ msgid "Preview" msgstr "預覽" #: ckan/templates/package/edit_view.html:21 -#: ckan/templates/related/edit_form.html:5 msgid "Update" msgstr "更新" @@ -3288,7 +3200,7 @@ msgstr "若 DataStore 擴充套件未啟用,資料瀏覽檢視可能會較為 msgid "Add" msgstr "新增" -#: ckan/templates/package/read_base.html:38 +#: ckan/templates/package/read_base.html:32 #, python-format msgid "" "This is an old revision of this dataset, as edited at %(timestamp)s. It may " @@ -3320,28 +3232,32 @@ msgstr "上傳錯誤:" msgid "Error:" msgstr "錯誤:" -#: ckan/templates/package/resource_data.html:45 +#: ckan/templates/package/resource_data.html:36 +msgid "Error traceback:" +msgstr "錯誤追蹤" + +#: ckan/templates/package/resource_data.html:48 msgid "Status" msgstr "狀態" -#: ckan/templates/package/resource_data.html:49 +#: ckan/templates/package/resource_data.html:52 #: ckan/templates/package/resource_read.html:157 msgid "Last updated" msgstr "最後更新" -#: ckan/templates/package/resource_data.html:53 +#: ckan/templates/package/resource_data.html:56 msgid "Never" msgstr "從未" -#: ckan/templates/package/resource_data.html:59 +#: ckan/templates/package/resource_data.html:62 msgid "Upload Log" msgstr "上傳紀錄" -#: ckan/templates/package/resource_data.html:71 +#: ckan/templates/package/resource_data.html:74 msgid "Details" msgstr "細節" -#: ckan/templates/package/resource_data.html:78 +#: ckan/templates/package/resource_data.html:81 msgid "End of log" msgstr "紀錄尾端" @@ -3445,7 +3361,7 @@ msgid "unknown" msgstr "未知的" #: ckan/templates/package/resource_read.html:161 -#: ckan/templates/package/snippets/additional_info.html:68 +#: ckan/templates/package/snippets/additional_info.html:70 msgid "Created" msgstr "建立" @@ -3481,6 +3397,10 @@ msgid "" "add some?

" msgstr "

此資料集中沒有資料,新增一些如何?

" +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API (應用程式介面)" + #: ckan/templates/package/search.html:53 msgid "API Docs" msgstr "API 文件" @@ -3537,7 +3457,7 @@ msgid "Version" msgstr "版本" #: ckan/templates/package/snippets/additional_info.html:56 -#: ckan/templates/package/snippets/package_basic_fields.html:107 +#: ckan/templates/package/snippets/package_basic_fields.html:108 #: ckan/templates/user/read_base.html:91 msgid "State" msgstr "狀態" @@ -3552,7 +3472,6 @@ msgstr "資料API" #: ckan/templates/package/snippets/package_basic_fields.html:4 #: ckan/templates/package/snippets/view_form.html:8 -#: ckan/templates/related/snippets/related_form.html:18 msgid "Title" msgstr "標題" @@ -3572,30 +3491,30 @@ msgstr "例如:此資料一些有用的紀錄" msgid "eg. economy, mental health, government" msgstr "例如:經濟、醫療衛生、政府" -#: ckan/templates/package/snippets/package_basic_fields.html:40 +#: ckan/templates/package/snippets/package_basic_fields.html:41 msgid "" " License definitions and additional information can be found at opendefinition.org " msgstr "使用協定以及其他相關資訊請見opendefinition.org " -#: ckan/templates/package/snippets/package_basic_fields.html:69 +#: ckan/templates/package/snippets/package_basic_fields.html:70 #: ckan/templates/snippets/organization.html:23 msgid "Organization" msgstr "組織" -#: ckan/templates/package/snippets/package_basic_fields.html:73 +#: ckan/templates/package/snippets/package_basic_fields.html:74 msgid "No organization" msgstr "沒有此組織" -#: ckan/templates/package/snippets/package_basic_fields.html:88 +#: ckan/templates/package/snippets/package_basic_fields.html:89 msgid "Visibility" msgstr "可見的" -#: ckan/templates/package/snippets/package_basic_fields.html:91 +#: ckan/templates/package/snippets/package_basic_fields.html:92 msgid "Public" msgstr "公開" -#: ckan/templates/package/snippets/package_basic_fields.html:110 +#: ckan/templates/package/snippets/package_basic_fields.html:111 msgid "Active" msgstr "啟動" @@ -3722,7 +3641,7 @@ msgstr "探索" msgid "More information" msgstr "更多資訊。" -#: ckan/templates/package/snippets/resource_view.html:10 +#: ckan/templates/package/snippets/resource_view.html:11 msgid "Embed" msgstr "嵌入" @@ -3808,139 +3727,6 @@ msgstr "檢視是什麼?" msgid "A view is a representation of the data held against a resource" msgstr "檢視是資料的呈現方式。" -#: ckan/templates/related/base_form_page.html:12 -msgid "Related Form" -msgstr "相關物件表格" - -#: ckan/templates/related/base_form_page.html:20 -msgid "What are related items?" -msgstr "相關物件是什麼?" - -#: ckan/templates/related/base_form_page.html:22 -msgid "" -"

Related Media is any app, article, visualisation or idea related to this" -" dataset.

For example, it could be a custom visualisation, pictograph" -" or bar chart, an app using all or part of the data or even a news story " -"that references this dataset.

" -msgstr "

關聯媒體可以是任何跟資料集有關的APP、文章、物件或想法。

舉例來說,它可能是一個自定義視覺化圖像,圖形或長條圖,一個使用了部分或全部資料的APP,甚至是一則關於此資料集的新聞故事。

" - -#: ckan/templates/related/confirm_delete.html:11 -msgid "Are you sure you want to delete related item - {name}?" -msgstr "你確定要刪除相關物件-{name}嗎?" - -#: ckan/templates/related/dashboard.html:6 -#: ckan/templates/related/dashboard.html:9 -#: ckan/templates/related/dashboard.html:16 -msgid "Apps & Ideas" -msgstr "創新應用" - -#: ckan/templates/related/dashboard.html:21 -#, python-format -msgid "" -"

Showing items %(first)s - %(last)s of " -"%(item_count)s related items found

" -msgstr "

所有物件總數:%(item_count)s個,顯示其中的%(first)s - %(last)s

" - -#: ckan/templates/related/dashboard.html:25 -#, python-format -msgid "

%(item_count)s related items found

" -msgstr "

找到%(item_count)s個相關物件

" - -#: ckan/templates/related/dashboard.html:29 -msgid "There have been no apps submitted yet." -msgstr "目前沒有任何APP。" - -#: ckan/templates/related/dashboard.html:48 -msgid "What are applications?" -msgstr "APP是什麼?" - -#: ckan/templates/related/dashboard.html:50 -msgid "" -" These are applications built with the datasets as well as ideas for things " -"that could be done with them. " -msgstr "這些應用程式是根據資料集內的資料產生創新的想法而誕生。" - -#: ckan/templates/related/dashboard.html:58 -#: ckan/templates/snippets/search_form.html:70 -msgid "Filter Results" -msgstr "篩選結果" - -#: ckan/templates/related/dashboard.html:63 -msgid "Filter by type" -msgstr "以類型來篩選" - -#: ckan/templates/related/dashboard.html:65 -msgid "All" -msgstr "所有" - -#: ckan/templates/related/dashboard.html:73 -msgid "Sort by" -msgstr "排序" - -#: ckan/templates/related/dashboard.html:75 -msgid "Default" -msgstr "預設" - -#: ckan/templates/related/dashboard.html:85 -msgid "Only show featured items" -msgstr "只顯示特色物件" - -#: ckan/templates/related/dashboard.html:90 -msgid "Apply" -msgstr "申請" - -#: ckan/templates/related/edit.html:3 -msgid "Edit related item" -msgstr "編輯相關的物件" - -#: ckan/templates/related/edit.html:6 -msgid "Edit Related" -msgstr "編輯相關物件" - -#: ckan/templates/related/edit.html:8 -msgid "Edit Related Item" -msgstr "編輯相關物件" - -#: ckan/templates/related/new.html:3 -msgid "Create a related item" -msgstr "建立一個相關物件" - -#: ckan/templates/related/new.html:5 -msgid "Create Related" -msgstr "建立相關物件" - -#: ckan/templates/related/new.html:7 -msgid "Create Related Item" -msgstr "建立相關物件" - -#: ckan/templates/related/snippets/related_form.html:18 -msgid "My Related Item" -msgstr "我的相關物件" - -#: ckan/templates/related/snippets/related_form.html:19 -msgid "http://example.com/" -msgstr "http://example.com/" - -#: ckan/templates/related/snippets/related_form.html:20 -msgid "http://example.com/image.png" -msgstr "http://example.com/image.png" - -#: ckan/templates/related/snippets/related_form.html:21 -msgid "A little information about the item..." -msgstr "一些關於物件的資訊..." - -#: ckan/templates/related/snippets/related_form.html:22 -msgid "Type" -msgstr "型式" - -#: ckan/templates/related/snippets/related_form.html:28 -msgid "Are you sure you want to delete this related item?" -msgstr "你確定要刪除這個相關物件嗎?" - -#: ckan/templates/related/snippets/related_item.html:16 -msgid "Go to {related_item_type}" -msgstr "前往 {related_item_type}。" - #: ckan/templates/revision/diff.html:6 msgid "Differences" msgstr "差異。" @@ -4028,7 +3814,6 @@ msgid "There are no {facet_type} that match this search" msgstr "沒有 {facet_type} 符合這個搜尋結果。" #: ckan/templates/snippets/home_breadcrumb_item.html:2 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:51 msgid "Home" msgstr "首頁" @@ -4037,7 +3822,7 @@ msgid "Language" msgstr "語言" #: ckan/templates/snippets/language_selector.html:12 -#: ckan/templates/snippets/search_form.html:40 +#: ckan/templates/snippets/search_form.html:41 #: ckan/templates/snippets/simple_search.html:15 #: ckan/templates/snippets/sort_by.html:22 msgid "Go" @@ -4069,21 +3854,25 @@ msgstr "目前此資料集沒有任何APP、想法、新故事、圖片。" msgid "Add Item" msgstr "新增物件" -#: ckan/templates/snippets/search_form.html:16 +#: ckan/templates/snippets/search_form.html:17 msgid "Submit" msgstr "確定" -#: ckan/templates/snippets/search_form.html:31 +#: ckan/templates/snippets/search_form.html:32 #: ckan/templates/snippets/simple_search.html:8 #: ckan/templates/snippets/sort_by.html:12 msgid "Order by" msgstr "排序依照" -#: ckan/templates/snippets/search_form.html:77 +#: ckan/templates/snippets/search_form.html:71 +msgid "Filter Results" +msgstr "篩選結果" + +#: ckan/templates/snippets/search_form.html:78 msgid "

Please try another search.

" msgstr "

請嘗試其他的搜尋關鍵字

" -#: ckan/templates/snippets/search_form.html:83 +#: ckan/templates/snippets/search_form.html:84 msgid "" "

There was an error while searching. Please try " "again.

" @@ -4152,7 +3941,7 @@ msgid "Subscribe" msgstr "訂閱" #: ckan/templates/snippets/subscribe.html:4 -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 #: ckan/templates/user/new_user_form.html:7 #: ckan/templates/user/read_base.html:82 msgid "Email" @@ -4171,10 +3960,6 @@ msgstr "編輯" msgid "Search Tags" msgstr "搜尋標籤。" -#: ckan/templates/user/dashboard.html:6 -msgid "Dashboard" -msgstr "儀表板" - #: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 msgid "News feed" msgstr "新聞消息來源" @@ -4238,36 +4023,27 @@ msgstr "您的個人資料:讓其他CKAN使用者了解你是誰以及你從 msgid "Change details" msgstr "修改資料" -#: ckan/templates/user/edit_user_form.html:9 -#: ckan/templates/user/logout_first.html:11 -#: ckan/templates/user/new_user_form.html:5 -#: ckan/templates/user/read_base.html:76 -#: ckan/templates/user/request_reset.html:16 -#: ckan/templates/user/snippets/login_form.html:20 -msgid "Username" -msgstr "使用者名稱" - -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "Full name" msgstr "全名" -#: ckan/templates/user/edit_user_form.html:11 +#: ckan/templates/user/edit_user_form.html:10 msgid "eg. Joe Bloggs" msgstr "例如:Joe Bloggs" -#: ckan/templates/user/edit_user_form.html:13 +#: ckan/templates/user/edit_user_form.html:12 msgid "eg. joe@example.com" msgstr "例如:joe@example.com" -#: ckan/templates/user/edit_user_form.html:15 +#: ckan/templates/user/edit_user_form.html:14 msgid "A little information about yourself" msgstr "一些關於你自己的資訊" -#: ckan/templates/user/edit_user_form.html:18 +#: ckan/templates/user/edit_user_form.html:17 msgid "Subscribe to notification emails" msgstr "訂閱通知郵件" -#: ckan/templates/user/edit_user_form.html:27 +#: ckan/templates/user/edit_user_form.html:26 msgid "Change password" msgstr "變更密碼" @@ -4500,15 +4276,15 @@ msgstr "尚未上傳" msgid "DataStore resource not found" msgstr "資料儲存之資源不存在。" -#: ckanext/datastore/db.py:652 +#: ckanext/datastore/db.py:663 msgid "" "The data was invalid (for example: a numeric value is out of range or was " "inserted into a text field)." msgstr "無效的資料(例如:填入超出範圍的數值,或將數值填入文字欄位中)。" -#: ckanext/datastore/logic/action.py:209 ckanext/datastore/logic/action.py:259 -#: ckanext/datastore/logic/action.py:343 ckanext/datastore/logic/action.py:425 -#: ckanext/datastore/logic/action.py:451 +#: ckanext/datastore/logic/action.py:215 ckanext/datastore/logic/action.py:255 +#: ckanext/datastore/logic/action.py:332 ckanext/datastore/logic/action.py:422 +#: ckanext/datastore/logic/action.py:504 ckanext/datastore/logic/action.py:530 msgid "Resource \"{0}\" was not found." msgstr "資源 \"{0}\" 不存在。" @@ -4516,6 +4292,14 @@ msgstr "資源 \"{0}\" 不存在。" msgid "User {0} not authorized to update resource {1}" msgstr "使用者{0}沒有權限更新資源{1}" +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "每頁顯示資料集數量" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "測試設定" + #: ckanext/example_idatasetform/templates/package/search.html:16 msgid "Custom Field Ascending" msgstr "客製化欄位(遞增排序)" @@ -4542,6 +4326,10 @@ msgstr "國家/地區代碼" msgid "custom resource text" msgstr "客製化的資料描述" +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "此為未被翻譯的字串" + #: ckanext/example_theme/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 #: ckanext/example_theme/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 msgid "This group has no description" @@ -4559,65 +4347,25 @@ msgstr "圖片 URL" msgid "eg. http://example.com/image.jpg (if blank uses resource url)" msgstr "例如:http://example.com/image.jpg(若留白則使用資料的 URL)" -#: ckanext/reclineview/plugin.py:82 +#: ckanext/reclineview/plugin.py:84 msgid "Data Explorer" msgstr "資料瀏覽器" -#: ckanext/reclineview/plugin.py:106 +#: ckanext/reclineview/plugin.py:111 msgid "Table" msgstr "表格" -#: ckanext/reclineview/plugin.py:149 +#: ckanext/reclineview/plugin.py:154 msgid "Graph" msgstr "圖表" -#: ckanext/reclineview/plugin.py:207 +#: ckanext/reclineview/plugin.py:214 msgid "Map" msgstr "地圖" -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/MIT-LICENSE.txt:1 -msgid "" -"Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n" -"\n" -"Permission is hereby granted, free of charge, to any person obtaining\n" -"a copy of this software and associated documentation files (the\n" -"\"Software\"), to deal in the Software without restriction, including\n" -"without limitation the rights to use, copy, modify, merge, publish,\n" -"distribute, sublicense, and/or sell copies of the Software, and to\n" -"permit persons to whom the Software is furnished to do so, subject to\n" -"the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be\n" -"included in all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n" -"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n" -"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n" -"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n" -"LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n" -"OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n" -"WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." -msgstr "Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." - -#: ckanext/reclineview/theme/public/vendor/slickgrid/2.0.1/README.txt:1 -msgid "" -"This compiled version of SlickGrid has been obtained with the Google Closure\n" -"Compiler, using the following command:\n" -"\n" -"java -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n" -"\n" -"There are two other files required for the SlickGrid view to work properly:\n" -"\n" -" * jquery-ui-1.8.16.custom.min.js \n" -" * jquery.event.drag-2.0.min.js\n" -"\n" -"These are included in the Recline source, but have not been included in the\n" -"built file to make easier to handle compatibility problems.\n" -"\n" -"Please check SlickGrid license in the included MIT-LICENSE.txt file.\n" -"\n" -"[1] https://developers.google.com/closure/compiler/" -msgstr "This compiled version of SlickGrid has been obtained with the Google Closure\nCompiler, using the following command:\n\njava -jar compiler.jar --js=slick.core.js --js=slick.grid.js --js=slick.editors.js --js_output_file=slick.grid.min.js\n\nThere are two other files required for the SlickGrid view to work properly:\n\n * jquery-ui-1.8.16.custom.min.js \n * jquery.event.drag-2.0.min.js\n\nThese are included in the Recline source, but have not been included in the\nbuilt file to make easier to handle compatibility problems.\n\nPlease check SlickGrid license in the included MIT-LICENSE.txt file.\n\n[1] https://developers.google.com/closure/compiler/" +#: ckanext/reclineview/theme/public/recline_view.js:34 +msgid "error loading view" +msgstr "讀取資料檢視發生錯誤" #: ckanext/reclineview/theme/templates/recline_graph_form.html:3 #: ckanext/reclineview/theme/templates/recline_map_form.html:3 @@ -4676,7 +4424,6 @@ msgid "Cluster markers" msgstr "將附近的圖徵 (features) 標記為叢集" #: ckanext/stats/templates/ckanext/stats/index.html:10 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:57 msgid "Total number of Datasets" msgstr "資料集總數" @@ -4704,33 +4451,27 @@ msgstr "新資料集" #: ckanext/stats/templates/ckanext/stats/index.html:58 #: ckanext/stats/templates/ckanext/stats/index.html:180 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:63 msgid "Top Rated Datasets" msgstr "評分最高的資料集" #: ckanext/stats/templates/ckanext/stats/index.html:64 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Average rating" msgstr "平均評分" #: ckanext/stats/templates/ckanext/stats/index.html:65 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:65 msgid "Number of ratings" msgstr "參與評分的人數" #: ckanext/stats/templates/ckanext/stats/index.html:79 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:70 msgid "No ratings" msgstr "無人參與評分" #: ckanext/stats/templates/ckanext/stats/index.html:84 #: ckanext/stats/templates/ckanext/stats/index.html:181 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:72 msgid "Most Edited Datasets" msgstr "最多編輯次數的資料集" #: ckanext/stats/templates/ckanext/stats/index.html:90 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:74 msgid "Number of edits" msgstr "編輯次數" @@ -4740,12 +4481,10 @@ msgstr "沒有編輯過的資料集" #: ckanext/stats/templates/ckanext/stats/index.html:108 #: ckanext/stats/templates/ckanext/stats/index.html:182 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:80 msgid "Largest Groups" msgstr "擁有最多資料集的的群組" #: ckanext/stats/templates/ckanext/stats/index.html:114 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:82 msgid "Number of datasets" msgstr "資料集數目" @@ -4755,7 +4494,6 @@ msgstr "沒有群組" #: ckanext/stats/templates/ckanext/stats/index.html:132 #: ckanext/stats/templates/ckanext/stats/index.html:183 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:88 msgid "Top Tags" msgstr "最熱門的標籤" @@ -4770,8 +4508,8 @@ msgstr "資料集數量" #: ckanext/stats/templates/ckanext/stats/index.html:152 #: ckanext/stats/templates/ckanext/stats/index.html:184 -msgid "Users Owning Most Datasets" -msgstr "擁有最多資料集的使用者" +msgid "Users Creating Most Datasets" +msgstr "建立最多資料集的使用者" #: ckanext/stats/templates/ckanext/stats/index.html:175 msgid "Statistics Menu" @@ -4781,42 +4519,16 @@ msgstr "統計目錄" msgid "Total Number of Datasets" msgstr "所有資料集總數" -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:6 -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:8 -msgid "Statistics" -msgstr "統計" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:60 -msgid "Revisions to Datasets per week" -msgstr "平均每週修訂的資料集次數" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:95 -msgid "Users owning most datasets" -msgstr "擁有最多資料集的使用(發布)者" - -#: ckanext/stats/templates_legacy/ckanext/stats/index.html:102 -msgid "Page last updated:" -msgstr "網頁最後更新時間:" +#: ckanext/textview/plugin.py:65 ckanext/textview/plugin.py:67 +msgid "Text" +msgstr "文字檔案" -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:6 -msgid "Leaderboard - Stats" -msgstr "排行榜 - 統計" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:17 -msgid "Dataset Leaderboard" -msgstr "資料集排行榜" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:18 -msgid "" -"Choose a dataset attribute and find out which categories in that area have " -"the most datasets. E.g. tags, groups, license, res_format, country." -msgstr "挑選一個資料集屬性,找出哪個目錄中擁有最多該屬性的資料集。例如:標籤、群組、授權、res_format、國家。" - -#: ckanext/stats/templates_legacy/ckanext/stats/leaderboard.html:20 -msgid "Choose area" -msgstr "選擇地區" +#: ckanext/textview/theme/public/text_view.js:5 +#, python-format +msgid "An error occurred: %(text)s %(error)s" +msgstr "發生錯誤:%(text)s %(error)s" -#: ckanext/webpageview/plugin.py:24 +#: ckanext/webpageview/plugin.py:19 ckanext/webpageview/plugin.py:24 msgid "Website" msgstr "網站" diff --git a/ckan/lib/accept.py b/ckan/lib/accept.py deleted file mode 100644 index f6f53f2b001..00000000000 --- a/ckan/lib/accept.py +++ /dev/null @@ -1,62 +0,0 @@ -""" -Simple accept header parsing to determins which content type we should deliver -back to the caller. This is mostly used by the rdf export functionality -""" -import re -import operator - -# For parsing {name};q=x and {name} style fields from the accept header -accept_re = re.compile("^(?P[^;]+)[ \t]*(;[ \t]*q=(?P[0-9.]+)){0,1}$") - -accept_types = { - # Name : ContentType, Extension - "text/html": ("text/html; charset=utf-8", 'html'), - "text/n3": ("text/n3; charset=utf-8", 'n3'), - "application/rdf+xml": ("application/rdf+xml; charset=utf-8", 'rdf'), -} -accept_by_extension = { - "rdf": "application/rdf+xml", - "n3": "text/n3" -} - - -def parse_extension(file_ext): - """ - If provided an extension, this function will return the details - for that extension, if we know about it. - """ - ext = accept_by_extension.get(file_ext, None) - if ext: - return accept_types[ext] - return (None, None) - - -def parse_header(accept_header=''): - """ - Parses the supplied accept header and tries to determine - which content types we can provide the response in that will keep the - client happy. - - We will always provide html as the default if we can't see anything else - but we will also need to take into account the q score. - - The return values are be content-type,is-markup,extension - """ - if accept_header is None: - accept_header = "" - - acceptable = {} - for typ in accept_header.split(','): - m = accept_re.match(typ) - if m: - key = m.groups(0)[0] - qscore = m.groups(0)[2] or 1.0 - acceptable[key] = float(qscore) - - for ctype in sorted(acceptable.iteritems(), - key=operator.itemgetter(1), - reverse=True): - if ctype[0] in accept_types: - return accept_types[ctype[0]] - - return accept_types["text/html"] diff --git a/ckan/lib/activity_streams.py b/ckan/lib/activity_streams.py index 47467cf2ede..57cd1429db1 100644 --- a/ckan/lib/activity_streams.py +++ b/ckan/lib/activity_streams.py @@ -48,13 +48,6 @@ def get_snippet_resource(activity, detail): return h.resource_link(detail['data']['resource'], activity['data']['package']['id']) -def get_snippet_related_item(activity, detail): - return h.related_item_link(activity['data']['related']) - -def get_snippet_related_type(activity, detail): - # FIXME this needs to be translated - return activity['data']['related']['type'] - # activity_stream_string_*() functions return translatable string # representations of activity types, the strings contain placeholders like # {user}, {dataset} etc. to be replaced with snippets from the get_snippet_*() @@ -81,13 +74,6 @@ def activity_stream_string_changed_resource(context, activity): def activity_stream_string_changed_user(context, activity): return _("{actor} updated their profile") -def activity_stream_string_changed_related_item(context, activity): - if activity['data'].get('dataset'): - return _("{actor} updated the {related_type} {related_item} of the " - "dataset {dataset}") - else: - return _("{actor} updated the {related_type} {related_item}") - def activity_stream_string_deleted_group(context, activity): return _("{actor} deleted the group {group}") @@ -125,9 +111,6 @@ def activity_stream_string_new_user(context, activity): def activity_stream_string_removed_tag(context, activity): return _("{actor} removed the tag {tag} from the dataset {dataset}") -def activity_stream_string_deleted_related_item(context, activity): - return _("{actor} deleted the related item {related_item}") - def activity_stream_string_follow_dataset(context, activity): return _("{actor} started following {dataset}") @@ -137,13 +120,6 @@ def activity_stream_string_follow_user(context, activity): def activity_stream_string_follow_group(context, activity): return _("{actor} started following {group}") -def activity_stream_string_new_related_item(context, activity): - if activity['data'].get('dataset'): - return _("{actor} added the {related_type} {related_item} to the " - "dataset {dataset}") - else: - return _("{actor} added the {related_type} {related_item}") - # A dictionary mapping activity snippets to functions that expand the snippets. activity_snippet_functions = { 'actor': get_snippet_actor, @@ -154,8 +130,6 @@ def activity_stream_string_new_related_item(context, activity): 'organization': get_snippet_organization, 'extra': get_snippet_extra, 'resource': get_snippet_resource, - 'related_item': get_snippet_related_item, - 'related_type': get_snippet_related_type, } # A dictionary mapping activity types to functions that return translatable @@ -168,7 +142,6 @@ def activity_stream_string_new_related_item(context, activity): 'changed package_extra': activity_stream_string_changed_package_extra, 'changed resource': activity_stream_string_changed_resource, 'changed user': activity_stream_string_changed_user, - 'changed related item': activity_stream_string_changed_related_item, 'deleted group': activity_stream_string_deleted_group, 'deleted organization': activity_stream_string_deleted_organization, 'deleted package': activity_stream_string_deleted_package, @@ -181,11 +154,9 @@ def activity_stream_string_new_related_item(context, activity): 'new resource': activity_stream_string_new_resource, 'new user': activity_stream_string_new_user, 'removed tag': activity_stream_string_removed_tag, - 'deleted related item': activity_stream_string_deleted_related_item, 'follow dataset': activity_stream_string_follow_dataset, 'follow user': activity_stream_string_follow_user, 'follow group': activity_stream_string_follow_group, - 'new related item': activity_stream_string_new_related_item, } # A dictionary mapping activity types to the icons associated to them @@ -206,11 +177,9 @@ def activity_stream_string_new_related_item(context, activity): 'new resource': 'file', 'new user': 'user', 'removed tag': 'tag', - 'deleted related item': 'picture', 'follow dataset': 'sitemap', 'follow user': 'user', 'follow group': 'group', - 'new related item': 'picture', 'changed organization': 'briefcase', 'deleted organization': 'briefcase', 'new organization': 'briefcase', diff --git a/ckan/lib/activity_streams_session_extension.py b/ckan/lib/activity_streams_session_extension.py index e1945657462..be9f5db7c4c 100644 --- a/ckan/lib/activity_streams_session_extension.py +++ b/ckan/lib/activity_streams_session_extension.py @@ -3,7 +3,7 @@ from paste.deploy.converters import asbool import logging -logger = logging.getLogger(__name__) +log = logging.getLogger(__name__) def activity_stream_item(obj, activity_type, revision, user_id): @@ -11,19 +11,17 @@ def activity_stream_item(obj, activity_type, revision, user_id): if callable(method): return method(activity_type, revision, user_id) else: - logger.debug("Object did not have a suitable " - "activity_stream_item() method, it must not be a package.") + # Object did not have a suitable activity_stream_item() method; it must + # not be a package return None def activity_stream_detail(obj, activity_id, activity_type): - method = getattr(obj, "activity_stream_detail", - None) + method = getattr(obj, "activity_stream_detail", None) if callable(method): return method(activity_id, activity_type) else: - logger.debug("Object did not have a suitable " - "activity_stream_detail() method.") + # Object did not have a suitable activity_stream_detail() method return None @@ -51,8 +49,7 @@ def before_commit(self, session): object_cache = session._object_cache revision = session.revision except AttributeError: - logger.debug('session had no _object_cache or no revision,' - ' skipping this commit', exc_info=True) + # session had no _object_cache or no revision; skipping this commit return if revision.user: @@ -62,7 +59,6 @@ def before_commit(self, session): # revision.author is their IP address. Just log them as 'not logged # in' rather than logging their IP address. user_id = 'not logged in' - logger.debug('user_id: %s' % user_id) # The top-level objects that we will append to the activity table. The # keys here are package IDs, and the values are model.activity:Activity @@ -77,16 +73,13 @@ def before_commit(self, session): # Log new packages first to prevent them from getting incorrectly # logged as changed packages. - logger.debug("Looking for new packages...") + # Looking for new packages... for obj in object_cache['new']: - logger.debug("Looking at object %s" % obj) activity = activity_stream_item(obj, 'new', revision, user_id) if activity is None: continue - # If the object returns an activity stream item we know that the + # The object returns an activity stream item, so we know that the # object is a package. - logger.debug("Looks like this object is a package") - logger.debug("activity: %s" % activity) # Don't create activities for private datasets. if obj.private: @@ -96,36 +89,31 @@ def before_commit(self, session): activity_detail = activity_stream_detail(obj, activity.id, "new") if activity_detail is not None: - logger.debug("activity_detail: %s" % activity_detail) activity_details[activity.id] = [activity_detail] # Now process other objects. - logger.debug("Looking for other objects...") for activity_type in ('new', 'changed', 'deleted'): objects = object_cache[activity_type] for obj in objects: - logger.debug("Looking at %s object %s" % (activity_type, obj)) - if not hasattr(obj,"id"): - logger.debug("Object has no id, skipping...") + if not hasattr(obj, "id"): + # Object has no id; skipping continue - if activity_type == "new" and obj.id in activities: - logger.debug("This object was already logged as a new " - "package") + # This object was already logged as a new package continue try: related_packages = obj.related_packages() - logger.debug("related_packages: %s" % related_packages) except (AttributeError, TypeError): - logger.debug("Object did not have a suitable " - "related_packages() method, skipping it.") + # Object did not have a suitable related_packages() method; + # skipping it continue for package in related_packages: - if package is None: continue + if package is None: + continue # Don't create activities for private datasets. if package.private: @@ -134,34 +122,29 @@ def before_commit(self, session): if package.id in activities: activity = activities[package.id] else: - activity = activity_stream_item(package, "changed", - revision, user_id) - if activity is None: continue - logger.debug("activity: %s" % activity) - - activity_detail = activity_stream_detail(obj, activity.id, - activity_type) - logger.debug("activity_detail: %s" % activity_detail) + activity = activity_stream_item( + package, "changed", revision, user_id) + if activity is None: + continue + + activity_detail = activity_stream_detail( + obj, activity.id, activity_type) if activity_detail is not None: if not package.id in activities: activities[package.id] = activity if activity_details.has_key(activity.id): activity_details[activity.id].append( - activity_detail) + activity_detail) else: - activity_details[activity.id] = [activity_detail] + activity_details[activity.id] = [activity_detail] for key, activity in activities.items(): - logger.debug("Emitting activity: %s %s" - % (activity.id, activity.activity_type)) + # Emitting activity session.add(activity) for key, activity_detail_list in activity_details.items(): for activity_detail_obj in activity_detail_list: - logger.debug("Emitting activity detail: %s %s %s" - % (activity_detail_obj.activity_id, - activity_detail_obj.activity_type, - activity_detail_obj.object_type)) + # Emitting activity detail session.add(activity_detail_obj) session.flush() diff --git a/ckan/lib/app_globals.py b/ckan/lib/app_globals.py index f7086a73213..61df95c9ec2 100644 --- a/ckan/lib/app_globals.py +++ b/ckan/lib/app_globals.py @@ -64,6 +64,7 @@ # int 'ckan.datasets_per_page': {'default': '20', 'type': 'int'}, 'ckan.activity_list_limit': {'default': '30', 'type': 'int'}, + 'ckan.user_list_limit': {'default': '20', 'type': 'int'}, 'search.facets.default': {'default': '10', 'type': 'int', 'name': 'facets_default_number'}, } diff --git a/ckan/lib/base.py b/ckan/lib/base.py index 7934758d601..384ac4494b5 100644 --- a/ckan/lib/base.py +++ b/ckan/lib/base.py @@ -13,8 +13,6 @@ from pylons.decorators import jsonify from pylons.i18n import N_, gettext, ngettext from pylons.templating import cached_template, pylons_globals -from genshi.template import MarkupTemplate -from genshi.template.text import NewTextTemplate from webhelpers.html import literal import ckan.exceptions @@ -51,7 +49,7 @@ def abort(status_code=None, detail='', headers=None, comment=None): abort response, and showing flash messages in the web interface. ''' - if status_code == 401: + if status_code == 403: # Allow IAuthenticator plugins to alter the abort for item in p.PluginImplementations(p.IAuthenticator): result = item.abort(status_code, detail, headers, comment) @@ -77,27 +75,12 @@ def render_snippet(template_name, **kw): cache_force = kw.pop('cache_force', None) output = render(template_name, extra_vars=kw, cache_force=cache_force, renderer='snippet') - output = '\n\n%s\n\n' % ( - template_name, output, template_name) + if config.get('debug'): + output = ('\n\n%s\n\n' + % (template_name, output, template_name)) return literal(output) -def render_text(template_name, extra_vars=None, cache_force=None): - '''Render a Genshi :py:class:`NewTextTemplate`. - - This is just a wrapper function that lets you render a Genshi - :py:class:`NewTextTemplate` without having to pass ``method='text'`` or - ``loader_class=NewTextTemplate`` (it passes them to - :py:func:`~ckan.plugins.toolkit.render` for you). - - ''' - return render(template_name, - extra_vars=extra_vars, - cache_force=cache_force, - method='text', - loader_class=NewTextTemplate) - - def render_jinja2(template_name, extra_vars): env = config['pylons.app_globals'].jinja_env template = env.get_template(template_name) @@ -105,8 +88,7 @@ def render_jinja2(template_name, extra_vars): def render(template_name, extra_vars=None, cache_key=None, cache_type=None, - cache_expire=None, method='xhtml', loader_class=MarkupTemplate, - cache_force=None, renderer=None): + cache_expire=None, cache_force=None, renderer=None): '''Render a template and return the output. This is CKAN's main template rendering function. @@ -144,29 +126,8 @@ def render_template(): request.environ['CKAN_DEBUG_INFO'] = [] request.environ['CKAN_DEBUG_INFO'].append(debug_info) - # Jinja2 templates - if template_type == 'jinja2': - # We don't want to have the config in templates it should be - # accessed via g (app_globals) as this gives us flexability such - # as changing via database settings. - del globs['config'] - # TODO should we raise error if genshi filters?? - return render_jinja2(template_name, globs) - - # Genshi templates - template = globs['app_globals'].genshi_loader.load( - template_name.encode('utf-8'), cls=loader_class - ) - stream = template.generate(**globs) - - for item in p.PluginImplementations(p.IGenshiStreamFilter): - stream = item.filter(stream) - - if loader_class == NewTextTemplate: - return literal(stream.render(method="text", encoding=None)) - - return literal(stream.render(method=method, encoding=None, - strip_whitespace=True)) + del globs['config'] + return render_jinja2(template_name, globs) if 'Pragma' in response.headers: del response.headers["Pragma"] @@ -188,7 +149,7 @@ def render_template(): # Don't cache if we have set the __no_cache__ param in the query string. elif request.params.get('__no_cache__'): allow_cache = False - # Don't cache if we have extra vars containing data. + # Don't cache if we have extra vars containing data. elif extra_vars: for k, v in extra_vars.iteritems(): allow_cache = False @@ -212,8 +173,7 @@ def render_template(): # Render Time :) try: - return cached_template(template_name, render_template, - loader_class=loader_class) + return cached_template(template_name, render_template) except ckan.exceptions.CkanUrlException, e: raise ckan.exceptions.CkanUrlException( '\nAn Exception has been raised for template %s\n%s' % @@ -246,6 +206,10 @@ def __before__(self, action, **params): 'new_activities', 'Use `h.new_activities` instead.') + # Prevents the variable interfering with the root_path logic + if 'SCRIPT_NAME' in request.environ: + request.environ['SCRIPT_NAME'] = '' + def _identify_user(self): '''Try to identify the user If the user is identified then: diff --git a/ckan/lib/cli.py b/ckan/lib/cli.py index c7831b4e313..e295a0cb2dc 100644 --- a/ckan/lib/cli.py +++ b/ckan/lib/cli.py @@ -181,13 +181,11 @@ class ManageDb(CkanCommand): db create - alias of db upgrade db init - create and put in default data - db clean + db clean - clears db (including dropping tables) and + search index db upgrade [version no.] - Data migrate db version - returns current version of data schema db dump FILE_PATH - dump to a pg_dump file - db simple-dump-csv FILE_PATH - dump just datasets in CSV format - db simple-dump-json FILE_PATH - dump just datasets in JSON format - db user-dump-csv FILE_PATH - dump user information to a CSV file db load FILE_PATH - load a pg_dump from a file db load-only FILE_PATH - load a pg_dump from a file but don\'t do the schema upgrade or search indexing @@ -222,7 +220,7 @@ def command(self): os.remove(f) model.repo.clean_db() - search.clear() + search.clear_all() if self.verbose: print 'Cleaning DB: SUCCESS' elif cmd == 'upgrade': @@ -238,12 +236,6 @@ def command(self): self.load() elif cmd == 'load-only': self.load(only_load=True) - elif cmd == 'simple-dump-csv': - self.simple_dump_csv() - elif cmd == 'simple-dump-json': - self.simple_dump_json() - elif cmd == 'user-dump-csv': - self.user_dump_csv() elif cmd == 'create-from-model': model.repo.create_db() if self.verbose: @@ -325,35 +317,6 @@ def load(self, only_load=False): print 'Now remember you have to call \'db upgrade\' and then \'search-index rebuild\'.' print 'Done' - def simple_dump_csv(self): - import ckan.model as model - if len(self.args) < 2: - print 'Need csv file path' - return - dump_filepath = self.args[1] - import ckan.lib.dumper as dumper - dump_file = open(dump_filepath, 'w') - dumper.SimpleDumper().dump(dump_file, format='csv') - - def simple_dump_json(self): - import ckan.model as model - if len(self.args) < 2: - print 'Need json file path' - return - dump_filepath = self.args[1] - import ckan.lib.dumper as dumper - dump_file = open(dump_filepath, 'w') - dumper.SimpleDumper().dump(dump_file, format='json') - - def user_dump_csv(self): - if len(self.args) < 2: - print 'Need csv file path' - return - dump_filepath = self.args[1] - import ckan.lib.dumper as dumper - dump_file = open(dump_filepath, 'w') - dumper.UserDumper().dump(dump_file) - def migrate_filestore(self): from ckan.model import Session import requests @@ -386,10 +349,11 @@ def migrate_filestore(self): out.write(chunk) Session.execute("update resource set url_type = 'upload'" - "where id = '%s'" % id) + "where id = :id", {'id': id}) Session.execute("update resource_revision set url_type = 'upload'" - "where id = '%s' and " - "revision_id = '%s'" % (id, revision_id)) + "where id = :id and " + "revision_id = :revision_id", + {'id': id, 'revision_id': revision_id}) Session.commit() print "Saved url %s" % url @@ -402,14 +366,14 @@ class SearchIndexCommand(CkanCommand): '''Creates a search index for all datasets Usage: - search-index [-i] [-o] [-r] [-e] rebuild [dataset_name] - reindex dataset_name if given, if not then rebuild - full search index (all datasets) - search-index rebuild_fast - reindex using multiprocessing using all cores. - This acts in the same way as rubuild -r [EXPERIMENTAL] - search-index check - checks for datasets not indexed - search-index show DATASET_NAME - shows index of a dataset - search-index clear [dataset_name] - clears the search index for the provided dataset or - for the whole ckan instance + search-index [-i] [-o] [-r] [-e] [-q] rebuild [dataset_name] - reindex dataset_name if given, if not then rebuild + full search index (all datasets) + search-index rebuild_fast - reindex using multiprocessing using all cores. + This acts in the same way as rubuild -r [EXPERIMENTAL] + search-index check - checks for datasets not indexed + search-index show DATASET_NAME - shows index of a dataset + search-index clear [dataset_name] - clears the search index for the provided dataset or + for the whole ckan instance ''' summary = __doc__.split('\n')[0] @@ -432,6 +396,10 @@ def __init__(self, name): action='store_true', default=False, help='Refresh current index (does not clear the existing one)') + self.parser.add_option('-q', '--quiet', dest='quiet', + action='store_true', default=False, + help='Do not output index rebuild progress') + self.parser.add_option('-e', '--commit-each', dest='commit_each', action='store_true', default=False, help= '''Perform a commit after indexing each dataset. This ensures that changes are @@ -474,7 +442,8 @@ def rebuild(self): rebuild(only_missing=self.options.only_missing, force=self.options.force, refresh=self.options.refresh, - defer_commit=(not self.options.commit_each)) + defer_commit=(not self.options.commit_each), + quiet=self.options.quiet) if not self.options.commit_each: commit() @@ -493,9 +462,12 @@ def show(self): pprint(index) def clear(self): - from ckan.lib.search import clear + from ckan.lib.search import clear, clear_all package_id = self.args[1] if len(self.args) > 1 else None - clear(package_id) + if not package_id: + clear_all() + else: + clear(package_id) def rebuild_fast(self): ### Get out config but without starting pylons environment #### @@ -890,7 +862,6 @@ class DatasetCmd(CkanCommand): def command(self): self._load_config() - import ckan.model as model if not self.args: print self.usage @@ -939,13 +910,14 @@ def delete(self, dataset_ref): print '%s %s -> %s' % (dataset.name, old_state, dataset.state) def purge(self, dataset_ref): - import ckan.model as model + import ckan.logic as logic dataset = self._get_dataset(dataset_ref) name = dataset.name - rev = model.repo.new_revision() - dataset.purge() - model.repo.commit_and_remove() + site_user = logic.get_action('get_site_user')({'ignore_auth': True}, {}) + context = {'user': site_user['name']} + logic.get_action('dataset_purge')( + context, {'id': dataset_ref}) print '%s purged' % name @@ -1203,7 +1175,7 @@ def update_tracking(self, engine, summary_date): CAST(access_timestamp AS Date) AS tracking_date, tracking_type INTO tracking_tmp FROM tracking_raw - WHERE CAST(access_timestamp as Date)='%s'; + WHERE CAST(access_timestamp as Date)=%s; INSERT INTO tracking_summary (url, count, tracking_date, tracking_type) @@ -1212,8 +1184,8 @@ def update_tracking(self, engine, summary_date): GROUP BY url, tracking_date, tracking_type; DROP TABLE tracking_tmp; - COMMIT;''' % summary_date - engine.execute(sql) + COMMIT;''' + engine.execute(sql, summary_date) # get ids for dataset urls sql = '''UPDATE tracking_summary t @@ -1444,10 +1416,10 @@ class Profile(CkanCommand): '''Code speed profiler Provide a ckan url and it will make the request and record how long each function call took in a file that can be read - by runsnakerun. + by pstats.Stats (command-line) or runsnakerun (gui). Usage: - profile URL + profile URL [username] e.g. profile /data/search @@ -1459,7 +1431,7 @@ class Profile(CkanCommand): ''' summary = __doc__.split('\n')[0] usage = __doc__ - max_args = 1 + max_args = 2 min_args = 1 def _load_config_into_test_app(self): @@ -1484,10 +1456,15 @@ def command(self): import re url = self.args[0] + if self.args[1:]: + user = self.args[1] + else: + user = 'visitor' def profile_url(url): try: - res = self.app.get(url, status=[200], extra_environ={'REMOTE_USER': 'visitor'}) + res = self.app.get(url, status=[200], + extra_environ={'REMOTE_USER': user}) except paste.fixture.AppError: print 'App error: ', url.strip() except KeyboardInterrupt: @@ -1500,6 +1477,11 @@ def profile_url(url): output_filename = 'ckan%s.profile' % re.sub('[/?]', '.', url.replace('/', '.')) profile_command = "profile_url('%s')" % url cProfile.runctx(profile_command, globals(), locals(), filename=output_filename) + import pstats + stats = pstats.Stats(output_filename) + stats.sort_stats('cumulative') + stats.print_stats(0.1) # show only top 10% of lines + print 'Only top 10% of lines shown' print 'Written profile to: %s' % output_filename diff --git a/ckan/lib/dictization/__init__.py b/ckan/lib/dictization/__init__.py index 5cd97d9a2e6..61d03708461 100644 --- a/ckan/lib/dictization/__init__.py +++ b/ckan/lib/dictization/__init__.py @@ -115,7 +115,7 @@ def table_dict_save(table_dict, ModelClass, context): obj = None - unique_constriants = get_unique_constraints(table, context) + unique_constraints = get_unique_constraints(table, context) id = table_dict.get("id") @@ -123,8 +123,8 @@ def table_dict_save(table_dict, ModelClass, context): obj = session.query(ModelClass).get(id) if not obj: - unique_constriants = get_unique_constraints(table, context) - for constraint in unique_constriants: + unique_constraints = get_unique_constraints(table, context) + for constraint in unique_constraints: params = dict((key, table_dict.get(key)) for key in constraint) obj = session.query(ModelClass).filter_by(**params).first() if obj: diff --git a/ckan/lib/dictization/model_dictize.py b/ckan/lib/dictization/model_dictize.py index 141fc958525..47b62f77825 100644 --- a/ckan/lib/dictization/model_dictize.py +++ b/ckan/lib/dictization/model_dictize.py @@ -71,16 +71,6 @@ def resource_list_dictize(res_list, context): return sorted(result_list, key=lambda x: x["position"]) -def related_list_dictize(related_list, context): - result_list = [] - for res in related_list: - related_dict = related_dictize(res, context) - result_list.append(related_dict) - if context.get('sorted'): - return result_list - return sorted(result_list, key=lambda x: x["created"], reverse=True) - - def extras_dict_dictize(extras_dict, context): result_list = [] for name, extra in extras_dict.iteritems(): @@ -127,9 +117,6 @@ def resource_dictize(res, context): resource['url'] = u'http://' + url.lstrip('/') return resource -def related_dictize(rel, context): - return d.table_dictize(rel, context) - def _execute(q, table, context): ''' @@ -556,7 +543,7 @@ def user_list_dictize(obj_list, context, def member_dictize(member, context): return d.table_dictize(member, context) -def user_dictize(user, context): +def user_dictize(user, context, include_password_hash=False): if context.get('with_capacity'): user, capacity = user @@ -564,7 +551,7 @@ def user_dictize(user, context): else: result_dict = d.table_dictize(user, context) - del result_dict['password'] + password_hash = result_dict.pop('password') del result_dict['reset_key'] result_dict['display_name'] = user.display_name @@ -590,20 +577,16 @@ def user_dictize(user, context): result_dict['apikey'] = apikey result_dict['email'] = email - ## this should not really really be needed but tests need it if authz.is_sysadmin(requester): result_dict['apikey'] = apikey result_dict['email'] = email + if include_password_hash: + result_dict['password_hash'] = password_hash + model = context['model'] session = model.Session - if context.get('with_related'): - related_items = session.query(model.Related).\ - filter(model.Related.owner_id==user.id).all() - result_dict['related_items'] = related_list_dictize(related_items, - context) - return result_dict def task_status_dictize(task_status, context): diff --git a/ckan/lib/dictization/model_save.py b/ckan/lib/dictization/model_save.py index cfdf4973217..05f975e57e5 100644 --- a/ckan/lib/dictization/model_save.py +++ b/ckan/lib/dictization/model_save.py @@ -449,13 +449,6 @@ def user_dict_save(user_dict, context): return user -def related_dict_save(related_dict, context): - model = context['model'] - session = context['session'] - - return d.table_dict_save(related_dict,model.Related, context) - - def package_api_to_dict(api1_dict, context): package = context.get("package") diff --git a/ckan/lib/dumper.py b/ckan/lib/dumper.py deleted file mode 100644 index 553ab67a227..00000000000 --- a/ckan/lib/dumper.py +++ /dev/null @@ -1,325 +0,0 @@ -import csv -import datetime -from sqlalchemy import orm - -import ckan.model as model -import ckan.model -from ckan.common import json, OrderedDict - -class SimpleDumper(object): - '''Dumps just package data but including tags, groups, license text etc''' - def dump(self, dump_file_obj, format='json', query=None): - if query is None: - query = model.Session.query(model.Package) - active = model.State.ACTIVE - query = query.filter_by(state=active) - if format == 'csv': - self.dump_csv(dump_file_obj, query) - elif format == 'json': - self.dump_json(dump_file_obj, query) - else: - raise Exception('Unknown format: %s' % format) - - def dump_csv(self, dump_file_obj, query): - row_dicts = [] - for pkg in query: - pkg_dict = pkg.as_dict() - # flatten dict - for name, value in pkg_dict.items()[:]: - if isinstance(value, (list, tuple)): - if value and isinstance(value[0], dict) and name == 'resources': - for i, res in enumerate(value): - prefix = 'resource-%i' % i - pkg_dict[prefix + '-url'] = res['url'] - pkg_dict[prefix + '-format'] = res['format'] - pkg_dict[prefix + '-description'] = res['description'] - else: - pkg_dict[name] = ' '.join(value) - if isinstance(value, dict): - for name_, value_ in value.items(): - pkg_dict[name_] = value_ - del pkg_dict[name] - row_dicts.append(pkg_dict) - writer = CsvWriter(row_dicts) - writer.save(dump_file_obj) - - def dump_json(self, dump_file_obj, query): - pkgs = [] - for pkg in query: - pkg_dict = pkg.as_dict() - pkgs.append(pkg_dict) - json.dump(pkgs, dump_file_obj, indent=4) - -class Dumper(object): - '''Dumps the database in same structure as it appears in the database''' - model_classes = [ -# ckan.model.State, - ckan.model.Revision, - ckan.model.Package, - ckan.model.Tag, - ckan.model.PackageTag, - ckan.model.PackageRevision, - ckan.model.PackageTagRevision, - ckan.model.Group, - ckan.model.Member, - ckan.model.PackageExtra, - ] - # TODO Bring this list of classes up to date. In the meantime, - # disabling this functionality in cli. - - def get_table(self, model_class): - table = orm.class_mapper(model_class).mapped_table - return table - - def dump_json(self, dump_path, verbose=False, ): - dump_struct = { 'version' : ckan.__version__ } - - if verbose: - print "\n\nStarting...........................\n\n\n" - - for model_class in self.model_classes: - table = self.get_table(model_class) - model_class_name = model_class.__name__ - dump_struct[model_class_name] = {} - if verbose: - print model_class_name, '--------------------------------' - q = table.select() - for record in q.execute(): - if verbose: - print '--- ', 'id', record.id - recorddict = self.cvt_record_to_dict(record, table) - dump_struct[model_class_name][record.id] = recorddict - if verbose: - print '---------------------------------' - print 'Dumping to %s' % dump_path - json.dump(dump_struct, file(dump_path, 'w'), indent=4, sort_keys=True) - - def cvt_record_to_dict(self, record, table): - out = {} - for key in table.c.keys(): - val = getattr(record, key) - if isinstance(val, datetime.date): - val = str(val) - out[key] = val - # print "--- ", modelAttrName, unicode(modelAttrValue).encode('ascii', 'ignore') - return out - - def load_json(self, dump_path, verbose=False): - dump_struct = json.load(open(dump_path)) - - if verbose: - print 'Building table...' - # Protect against writing into created database. - ckan.model.metadata.create_all() - for model_class in self.model_classes: - if model.Session.query(model_class).count(): - raise Exception, "Existing '%s' records in database" % model_class - - records = {} - for model_class in self.model_classes: - table = self.get_table(model_class) - collection_objects = {} - model_class_name = model_class.__name__ - records[model_class_name] = collection_objects - if verbose: - print model_class_name, '--------------------------------' - collectionStruct = dump_struct[model_class_name] - if verbose: - print collectionStruct.keys() - recordIds = collectionStruct.keys() - recordIds.sort() - for recordId in recordIds: - record_struct = collectionStruct[recordId] - record_struct = self.switch_names(record_struct) - if verbose: - print record_struct - q = table.insert(values=record_struct) - result = q.execute() - self.fix_sequences() - if verbose: - print 'OK' - - def switch_names(self, record_struct): - '''Alter SQLObject and v0.6 names. - - Can be run safely on data post 0.6. - ''' - out = {} - for k,v in record_struct.items(): - # convert from v0.6 to v0.7 - k = k.replace('ID', '_id') - if k == 'base_id': - k = 'continuity_id' - if k == 'log_message': - k = 'message' - # generic - if v == 'None': - v = None - if '_id' in k and v is not None: - v = int(v) - out[k] = v - return out - - def fix_sequences(self): - for model_class in self.model_classes: - if model_class == ckan.model.User: # ApiKey does not have idseq - continue - table = self.get_table(model_class) - seqname = '%s_id_seq' % table.name - q = table.select() - print model_class - maxid = q.order_by(table.c.id.desc()).execute().fetchone().id - print seqname, maxid+1 - sql = "SELECT setval('%s', %s);" % (seqname, maxid+1) - engine = ckan.model.metadata.bind - engine.execute(sql) - - def migrate_06_to_07(self): - '''Fix up continuity objects and put names in revision objects.''' - print 'Migrating 0.6 data to 0.7' - pkg_table = self.get_table(ckan.model.Package) - pkg_rev_table = self.get_table(ckan.model.PackageRevision) - for record in pkg_table.select().execute(): - print 'Current:', record - q = pkg_rev_table.select() - q = q.where(pkg_rev_table.c.continuity_id==record.id) - mostrecent = q.order_by(pkg_rev_table.c.revision_id.desc()).limit(1) - pkg_rev_record = mostrecent.execute().fetchall()[0] - print 'Object Revision:', pkg_rev_record - newrecord = {} - for k in [ 'download_url', 'license_id', 'notes', 'revision_id', - 'state_id', 'title', 'url' ]: - if k != 'id': - newrecord[k] = getattr(pkg_rev_record, k) - print 'New:', newrecord - update = pkg_table.update(pkg_table.c.id==record.id, values=newrecord) - update.execute() - - # now put names in package_revisions - for rev in q.execute(): - update = pkg_rev_table.update(pkg_rev_table.c.id==rev.id, - values={'name': record.name}) - update.execute() - -class CsvWriter: - def __init__(self, package_dict_list=None): - self._rows = [] - self._col_titles = [] - titles_set = set() - for row_dict in package_dict_list: - for key in row_dict.keys(): - if key not in self._col_titles: - self._col_titles.append(key) - for row_dict in package_dict_list: - self._add_row_dict(row_dict) - - def _add_row_dict(self, row_dict): - row = [] - for title in self._col_titles: - if row_dict.has_key(title): - if isinstance(row_dict[title], int): - row.append(row_dict[title]) - elif isinstance(row_dict[title], unicode): - row.append(row_dict[title].encode('utf8')) - else: - row.append(row_dict[title]) - else: - row.append(None) - self._rows.append(row) - - def save(self, file_obj): - writer = csv.writer(file_obj, quotechar='"', quoting=csv.QUOTE_NONNUMERIC) - writer.writerow(self._col_titles) - for row in self._rows: - writer.writerow(row) - -class PackagesXlWriter: - def __init__(self, package_dict_list=None): - import xlwt - self._workbook = xlwt.Workbook(encoding='utf8') - self._sheet = self._workbook.add_sheet('test') - self._col_titles = {} # title:col_index - self._row = 1 - self.add_col_titles(['name', 'title']) - if package_dict_list: - for row_dict in package_dict_list: - self.add_row_dict(row_dict) - self._row += 1 - - def add_row_dict(self, row_dict): - for key, value in row_dict.items(): - if value is not None: - if key not in self._col_titles.keys(): - self._add_col_title(key) - col_index = self._col_titles[key] - self._sheet.write(self._row, col_index, value) - - def get_serialized(self): - strm = StringIO.StringIO() - self._workbook.save(strm) - workbook_serialized = strm.getvalue() - strm.close() - return workbook_serialized - - def save(self, filepath): - self._workbook.save(filepath) - - def add_col_titles(self, titles): - # use initially to specify the order of column titles - for title in titles: - self._add_col_title(title) - - def _add_col_title(self, title): - if self._col_titles.has_key(title): - return - col_index = len(self._col_titles) - self._sheet.write(0, col_index, title) - self._col_titles[title] = col_index - - @staticmethod - def pkg_to_xl_dict(pkg): - '''Convert a Package object to a dictionary suitable for XL format''' - dict_ = pkg.as_dict() - - for key, value in dict_.items(): - # Not interested in dumping IDs - for internal use only really - if (key.endswith('_id') or key == 'id' - or key.startswith('rating')): - del dict_[key] - if key=='resources': - for i, res in enumerate(value): - prefix = 'resource-%i' % i - keys = model.Resource.get_columns() - keys += [key_ for key_ in pkg.resources[i].extras.keys() if key_ not in keys] - for field in keys: - dict_['%s-%s' % (prefix, field)] = res[field] - del dict_[key] - elif isinstance(value, (list, tuple)): - dict_[key] = ' '.join(value) - elif key=='extras': - for key_, value_ in value.items(): - dict_[key_] = value_ - del dict_[key] - return dict_ - -class UserDumper(object): - def dump(self, dump_file_obj): - query = model.Session.query(model.User) - query = query.order_by(model.User.created.asc()) - - columns = (('id', 'name', 'openid', 'fullname', 'email', 'created', 'about')) - row_dicts = [] - for user in query: - row = OrderedDict() - for col in columns: - value = getattr(user, col) - if not value: - value = '' - if col == 'created': - value = str(value) # or maybe dd/mm/yyyy? - row[col] = value - row_dicts.append(row) - - writer = CsvWriter(row_dicts) - writer.save(dump_file_obj) - dump_file_obj.close() diff --git a/ckan/lib/email_notifications.py b/ckan/lib/email_notifications.py index 7f24b978285..a6e7d8dab62 100644 --- a/ckan/lib/email_notifications.py +++ b/ckan/lib/email_notifications.py @@ -98,7 +98,7 @@ def _notifications_for_activities(activities, user_dict): # certain types of activity to be sent in their own individual emails, # etc. subject = ungettext( - "1 new activity from {site_title}", + "{n} new activity from {site_title}", "{n} new activities from {site_title}", len(activities)).format( site_title=pylons.config.get('ckan.site_title'), diff --git a/ckan/lib/extract.py b/ckan/lib/extract.py index 89675a394a5..3ff7d9c9dd9 100644 --- a/ckan/lib/extract.py +++ b/ckan/lib/extract.py @@ -1,5 +1,4 @@ import re -from genshi.filters.i18n import extract as extract_genshi from jinja2.ext import babel_extract as extract_jinja2 import lib.jinja_extensions @@ -33,19 +32,8 @@ def jinja2_cleaner(fileobj, *args, **kw): def extract_ckan(fileobj, *args, **kw): - ''' Determine the type of file (Genshi or Jinja2) and then call the - correct extractor function. - - Basically we just look for genshi.edgewall.org which all genshi XML - templates should contain. ''' - source = fileobj.read() - if re.search('genshi\.edgewall\.org', source): - # genshi - output = extract_genshi(fileobj, *args, **kw) - else: - # jinja2 - output = jinja2_cleaner(fileobj, *args, **kw) + output = jinja2_cleaner(fileobj, *args, **kw) # we've eaten the file so we need to get back to the start fileobj.seek(0) return output diff --git a/ckan/lib/formatters.py b/ckan/lib/formatters.py index bc92a34fdd3..3ce8428a3ca 100644 --- a/ckan/lib/formatters.py +++ b/ckan/lib/formatters.py @@ -137,7 +137,7 @@ def months_between(date1, date2): 'day': datetime_.day, 'year': datetime_.year, 'month': _MONTH_FUNCTIONS[datetime_.month - 1](), - 'timezone': datetime_.tzinfo.zone, + 'timezone': datetime_.tzname(), } if with_hours: diff --git a/ckan/lib/helpers.py b/ckan/lib/helpers.py index 3c4477e7163..ea21d09b878 100644 --- a/ckan/lib/helpers.py +++ b/ckan/lib/helpers.py @@ -13,26 +13,22 @@ import pytz import tzlocal import urllib -import urlparse import pprint import copy import urlparse from urllib import urlencode -from paste.deploy.converters import asbool -from webhelpers.html import escape, HTML, literal, url_escape -from webhelpers.html.tools import mail_to -from webhelpers.html.tags import * -from webhelpers.markdown import markdown +from paste.deploy import converters +from webhelpers.html import escape, HTML, literal, tags, tools from webhelpers import paginate -from webhelpers.text import truncate +import webhelpers.text as whtext import webhelpers.date as date +from markdown import markdown +from bleach import clean as clean_html from pylons import url as _pylons_default_url -from pylons.decorators.cache import beaker_cache from pylons import config from routes import redirect_to as _redirect_to from routes import url_for as _routes_default_url_for -from alphabet_paginate import AlphaPage import i18n import ckan.exceptions @@ -44,17 +40,50 @@ import ckan.logic as logic import ckan.lib.uploader as uploader import ckan.authz as authz +import ckan.plugins as p -from ckan.common import ( - _, ungettext, g, c, request, session, json, OrderedDict -) - -get_available_locales = i18n.get_available_locales -get_locales_dict = i18n.get_locales_dict +from ckan.common import _, ungettext, g, c, request, session, json log = logging.getLogger(__name__) +class HelperAttributeDict(dict): + def __init__(self, *args, **kwargs): + super(HelperAttributeDict, self).__init__(*args, **kwargs) + self.__dict__ = self + + def __getitem__(self, key): + try: + value = super(HelperAttributeDict, self).__getitem__(self, key) + except AttributeError: + raise ckan.exceptions.HelperError( + 'Helper \'{key}\' has not been defined.'.format( + key=key + ) + ) + return value + + +# Builtin helper functions. +_builtin_functions = {} +helper_functions = HelperAttributeDict() + + +def core_helper(f, name=None): + """ + Register a function as a builtin helper method. + """ + def _get_name(func_or_class): + # Handles both methods and class instances. + try: + return func_or_class.__name__ + except AttributeError: + return func_or_class.__class__.__name__ + + _builtin_functions[name or _get_name(f)] = f + return f + + def _datestamp_to_datetime(datetime_): ''' Converts a datestamp to a datetime. If a datetime is provided it just gets returned. @@ -81,29 +110,12 @@ def _datestamp_to_datetime(datetime_): # all dates are considered UTC internally, # change output if `ckan.display_timezone` is available datetime_ = datetime_.replace(tzinfo=pytz.utc) - timezone_name = config.get('ckan.display_timezone', '') - if timezone_name == 'server': - local_tz = tzlocal.get_localzone() - return datetime_.astimezone(local_tz) - - try: - datetime_ = datetime_.astimezone( - pytz.timezone(timezone_name) - ) - except pytz.UnknownTimeZoneError: - if timezone_name != '': - log.warning( - 'Timezone `%s` not found. ' - 'Please provide a valid timezone setting in ' - '`ckan.display_timezone` or leave the field empty. All valid ' - 'values can be found in pytz.all_timezones. You can use the ' - 'special value `server` to use the local timezone of the ' - 'server.', timezone_name - ) + datetime_ = datetime_.astimezone(get_display_timezone()) return datetime_ +@core_helper def redirect_to(*args, **kw): '''Issue a redirect: return an HTTP response with a ``302 Moved`` header. @@ -131,14 +143,16 @@ def redirect_to(*args, **kw): return _redirect_to(url_for(*args, **kw)) +@core_helper def url(*args, **kw): '''Create url adding i18n information if selected wrapper for pylons.url''' locale = kw.pop('locale', None) my_url = _pylons_default_url(*args, **kw) - return _add_i18n_to_url(my_url, locale=locale, **kw) + return _local_url(my_url, locale=locale, **kw) +@core_helper def get_site_protocol_and_host(): '''Return the protocol and host of the configured `ckan.site_url`. This is needed to generate valid, full-qualified URLs. @@ -161,6 +175,7 @@ def get_site_protocol_and_host(): return (None, None) +@core_helper def url_for(*args, **kw): '''Return the URL for the given controller, action, id, etc. @@ -194,9 +209,10 @@ def url_for(*args, **kw): kw['protocol'], kw['host'] = get_site_protocol_and_host() my_url = _routes_default_url_for(*args, **kw) kw['__ckan_no_root'] = no_root - return _add_i18n_to_url(my_url, locale=locale, **kw) + return _local_url(my_url, locale=locale, **kw) +@core_helper def url_for_static(*args, **kw): '''Returns the URL for static content that doesn't get translated (eg CSS) @@ -213,6 +229,7 @@ def url_for_static(*args, **kw): return url_for_static_or_external(*args, **kw) +@core_helper def url_for_static_or_external(*args, **kw): '''Returns the URL for static content that doesn't get translated (eg CSS), or external URLs @@ -229,10 +246,13 @@ def fix_arg(arg): if args: args = (fix_arg(args[0]), ) + args[1:] + if kw.get('qualified', False): + kw['protocol'], kw['host'] = get_site_protocol_and_host() my_url = _routes_default_url_for(*args, **kw) - return my_url + return _local_url(my_url, locale='default', **kw) +@core_helper def is_url(*args, **kw): ''' Returns True if argument parses as a http, https or ftp URL @@ -244,11 +264,14 @@ def is_url(*args, **kw): except ValueError: return False - valid_schemes = ('http', 'https', 'ftp') - return url.scheme in valid_schemes + default_valid_schemes = ('http', 'https', 'ftp') + valid_schemes = config.get('ckan.valid_url_schemes', '').lower().split() -def _add_i18n_to_url(url_to_amend, **kw): + return url.scheme in (valid_schemes or default_valid_schemes) + + +def _local_url(url_to_amend, **kw): # If the locale keyword param is provided then the url is rewritten # using that locale .If return_to is provided this is used as the url # (as part of the language changing feature). @@ -290,7 +313,7 @@ def _add_i18n_to_url(url_to_amend, **kw): if default_locale: root_path = re.sub('/{{LANG}}', '', root_path) else: - root_path = re.sub('{{LANG}}', locale, root_path) + root_path = re.sub('{{LANG}}', str(locale), root_path) # make sure we don't have a trailing / on the root if root_path[-1] == '/': root_path = root_path[:-1] @@ -319,6 +342,7 @@ def _add_i18n_to_url(url_to_amend, **kw): return url +@core_helper def url_is_local(url): '''Returns True if url is local''' if not url or url.startswith('//'): @@ -331,22 +355,25 @@ def url_is_local(url): return True +@core_helper def full_current_url(): ''' Returns the fully qualified current url (eg http://...) useful for sharing etc ''' return (url_for(request.environ['CKAN_CURRENT_URL'], qualified=True)) +@core_helper def lang(): ''' Return the language code for the current locale eg `en` ''' return request.environ.get('CKAN_LANG') +@core_helper def lang_native_name(lang=None): ''' Return the langage name currently used in it's localised form either from parameter or current environ setting''' lang = lang or lang() - locale = get_locales_dict().get(lang) + locale = i18n.get_locales_dict().get(lang) if locale: return locale.display_name or locale.english_name return lang @@ -435,21 +462,25 @@ def are_there_messages(self): _flash = flash +@core_helper def flash_notice(message, allow_html=False): ''' Show a flash message of type notice ''' flash(message, category='alert-info', allow_html=allow_html) +@core_helper def flash_error(message, allow_html=False): ''' Show a flash message of type error ''' flash(message, category='alert-error', allow_html=allow_html) +@core_helper def flash_success(message, allow_html=False): ''' Show a flash message of type success ''' flash(message, category='alert-success', allow_html=allow_html) +@core_helper def are_there_flash_messages(): ''' Returns True if there are flash messages for the current user ''' return flash.are_there_messages() @@ -488,13 +519,14 @@ def _create_link_text(text, **kwargs): icon = kwargs.pop('icon', None) class_ = _link_class(kwargs) - return link_to( + return tags.link_to( _create_link_text(text, **kwargs), url_for(*args, **kwargs), class_=class_ ) +@core_helper def nav_link(text, *args, **kwargs): ''' :param class_: pass extra class(es) to add to the ```` tag @@ -505,7 +537,7 @@ def nav_link(text, *args, **kwargs): if len(args) > 1: raise Exception('Too many unnamed parameters supplied') if args: - kwargs['controller'] = controller + kwargs['controller'] = kwargs.get('controller') log.warning('h.nav_link() please supply controller as a named ' 'parameter not a positional one') named_route = kwargs.pop('named_route', '') @@ -519,6 +551,7 @@ def nav_link(text, *args, **kwargs): return link +@core_helper @maintain.deprecated('h.nav_named_link is deprecated please ' 'use h.nav_link\nNOTE: you will need to pass the ' 'route_name as a named parameter') @@ -528,6 +561,7 @@ def nav_named_link(text, named_route, **kwargs): return nav_link(text, named_route=named_route, **kwargs) +@core_helper @maintain.deprecated('h.subnav_link is deprecated please ' 'use h.nav_link\nNOTE: if action is passed as the second ' 'parameter make sure it is passed as a named parameter ' @@ -539,6 +573,7 @@ def subnav_link(text, action, **kwargs): return nav_link(text, **kwargs) +@core_helper @maintain.deprecated('h.subnav_named_route is deprecated please ' 'use h.nav_link\nNOTE: you will need to pass the ' 'route_name as a named parameter') @@ -548,6 +583,7 @@ def subnav_named_route(text, named_route, **kwargs): return nav_link(text, named_route=named_route, **kwargs) +@core_helper def build_nav_main(*args): ''' build a set of menu items. @@ -563,6 +599,7 @@ def build_nav_main(*args): return output +@core_helper def build_nav_icon(menu_item, title, **kw): '''Build a navigation item used for example in ``user/read_base.html``. @@ -581,10 +618,11 @@ def build_nav_icon(menu_item, title, **kw): return _make_menu_item(menu_item, title, **kw) +@core_helper def build_nav(menu_item, title, **kw): '''Build a navigation item used for example breadcrumbs. - Outputs ``
  • title
  • ``. + Outputs ``
  • title
  • ``. :param menu_item: the name of the defined menu item defined in config/routing as the named route of the same name @@ -599,6 +637,7 @@ def build_nav(menu_item, title, **kw): return _make_menu_item(menu_item, title, icon=None, **kw) +@core_helper def build_extra_admin_nav(): '''Build extra navigation items used in ``admin/base.html`` for values defined in the config option ``ckan.admin_tabs``. Typically this is @@ -648,10 +687,12 @@ def _make_menu_item(menu_item, title, **kw): return literal('
  • ') + link + literal('
  • ') +@core_helper def default_group_type(): return str(config.get('ckan.default.group_type', 'group')) +@core_helper def get_facet_items_dict(facet, limit=None, exclude_active=False): '''Return the list of unselected facet items for the given facet, sorted by count. @@ -692,6 +733,7 @@ def get_facet_items_dict(facet, limit=None, exclude_active=False): return facets +@core_helper def has_more_facets(facet, limit=None, exclude_active=False): ''' Returns True if there are more facet items for the given facet than the @@ -722,6 +764,7 @@ def has_more_facets(facet, limit=None, exclude_active=False): return False +@core_helper def unselected_facet_items(facet, limit=10): '''Return the list of unselected facet items for the given facet, sorted by count. @@ -743,6 +786,7 @@ def unselected_facet_items(facet, limit=10): return get_facet_items_dict(facet, limit=limit, exclude_active=True) +@core_helper @maintain.deprecated('h.get_facet_title is deprecated in 2.0 and will be ' 'removed.') def get_facet_title(name): @@ -760,6 +804,7 @@ def get_facet_title(name): return facet_titles.get(name, name.capitalize()) +@core_helper def get_param_int(name, default=10): try: return int(request.params.get(name, default)) @@ -780,6 +825,7 @@ def _search_url(params): return _url_with_params(url, params) +@core_helper def sorted_extras(package_extras, auto_clean=False, subs=None, exclude=None): ''' Used for outputting package extras @@ -813,9 +859,10 @@ def sorted_extras(package_extras, auto_clean=False, subs=None, exclude=None): return output +@core_helper def check_access(action, data_dict=None): context = {'model': model, - 'user': c.user or c.author} + 'user': c.user} if not data_dict: data_dict = {} try: @@ -827,6 +874,7 @@ def check_access(action, data_dict=None): return authorized +@core_helper @maintain.deprecated("helpers.get_action() is deprecated and will be removed " "in a future version of CKAN. Instead, please use the " "extra_vars param to render() in your controller to pass " @@ -838,6 +886,7 @@ def get_action(action_name, data_dict=None): return logic.get_action(action_name)({}, data_dict) +@core_helper def linked_user(user, maxlength=0, avatar=20): if not isinstance(user, model.User): user_name = unicode(user) @@ -846,15 +895,24 @@ def linked_user(user, maxlength=0, avatar=20): return user_name if user: name = user.name if model.User.VALID_NAME.match(user.name) else user.id - icon = gravatar(email_hash=user.email_hash, size=avatar) displayname = user.display_name + if maxlength and len(user.display_name) > maxlength: displayname = displayname[:maxlength] + '...' - return icon + u' ' + \ - link_to(displayname, - url_for(controller='user', action='read', id=name)) + + return tags.literal(u'{icon} {link}'.format( + icon=gravatar( + email_hash=user.email_hash, + size=avatar + ), + link=tags.link_to( + displayname, + url_for(controller='user', action='read', id=name) + ) + )) +@core_helper def group_name_to_title(name): group = model.Group.by_name(name) if group is not None: @@ -862,23 +920,35 @@ def group_name_to_title(name): return name +@core_helper def markdown_extract(text, extract_length=190): ''' return the plain text representation of markdown encoded text. That is the texted without any html tags. If extract_length is 0 then it will not be truncated.''' - if (text is None) or (text.strip() == ''): + if not text: return '' plain = RE_MD_HTML_TAGS.sub('', markdown(text)) if not extract_length or len(plain) < extract_length: return literal(plain) - return literal(unicode(truncate(plain, length=extract_length, - indicator='...', whole_word=True))) + + return literal( + unicode( + whtext.truncate( + plain, + length=extract_length, + indicator='...', + whole_word=True + ) + ) + ) +@core_helper def icon_url(name): return url_for_static('/images/icons/%s.png' % name) +@core_helper def icon_html(url, alt=None, inline=True): classes = '' if inline: @@ -887,10 +957,12 @@ def icon_html(url, alt=None, inline=True): 'class="%s" /> ') % (url, alt, classes)) +@core_helper def icon(name, alt=None, inline=True): return icon_html(icon_url(name), alt, inline) +@core_helper def resource_icon(res): if False: icon_name = 'page_white' @@ -902,6 +974,7 @@ def resource_icon(res): return icon(format_icon(res.get('format', ''))) +@core_helper def format_icon(_format): _format = _format.lower() if ('json' in _format): @@ -921,6 +994,7 @@ def format_icon(_format): return 'page_white' +@core_helper def dict_list_reduce(list_, key, unique=True): ''' Take a list of dicts and create a new one containing just the values for the key with unique values if requested. ''' @@ -933,6 +1007,7 @@ def dict_list_reduce(list_, key, unique=True): return new_list +@core_helper def linked_gravatar(email_hash, size=100, default=None): return literal( '''' + class="gravatar" width="%s" height="%s" alt="" />''' % (email_hash, size, default, size, size) ) +@core_helper def pager_url(page, partial=None, **kwargs): routes_dict = _pylons_default_url.environ['pylons.routes_dict'] kwargs['controller'] = routes_dict['controller'] @@ -1007,6 +1084,21 @@ def _range(self, regexp_match): return re.sub(current_page_span, current_page_link, html) +@core_helper +def get_display_timezone(): + ''' Returns a pytz timezone for the display_timezone setting in the + configuration file or UTC if not specified. + :rtype: timezone + ''' + timezone_name = config.get('ckan.display_timezone') or 'utc' + + if timezone_name == 'server': + return tzlocal.get_localzone() + + return pytz.timezone(timezone_name) + + +@core_helper def render_datetime(datetime_, date_format=None, with_hours=False): '''Render a datetime object or timestamp string as a localised date or in the requested format. @@ -1033,6 +1125,7 @@ def render_datetime(datetime_, date_format=None, with_hours=False): with_hours=with_hours) +@core_helper def date_str_to_datetime(date_str): '''Convert ISO-like formatted datestring to datetime object. @@ -1065,6 +1158,7 @@ def date_str_to_datetime(date_str): return datetime.datetime(*map(int, time_tuple)) +@core_helper def parse_rfc_2822_date(date_str, assume_utc=True): ''' Parse a date string of the form specified in RFC 2822, and return a @@ -1133,6 +1227,7 @@ def tzname(self, dt): return None +@core_helper @maintain.deprecated('h.time_ago_in_words_from_str is deprecated in 2.2 ' 'and will be removed. Please use ' 'h.time_ago_from_timestamp instead') @@ -1145,6 +1240,7 @@ def time_ago_in_words_from_str(date_str, granularity='month'): return _('Unknown') +@core_helper def time_ago_from_timestamp(timestamp): ''' Returns a string like `5 months ago` for a datetime relative to now :param timestamp: the timestamp or datetime @@ -1160,36 +1256,42 @@ def time_ago_from_timestamp(timestamp): return formatters.localised_nice_date(datetime_, show_date=False) +@core_helper def button_attr(enable, type='primary'): if enable: return 'class="btn %s"' % type return 'disabled class="btn disabled"' +@core_helper def dataset_display_name(package_or_package_dict): if isinstance(package_or_package_dict, dict): - return package_or_package_dict.get('title', '') or \ - package_or_package_dict.get('name', '') + return get_translated(package_or_package_dict, 'title') or \ + package_or_package_dict['name'] else: + # FIXME: we probably shouldn't use the same functions for + # package dicts and real package objects return package_or_package_dict.title or package_or_package_dict.name +@core_helper def dataset_link(package_or_package_dict): if isinstance(package_or_package_dict, dict): name = package_or_package_dict['name'] else: name = package_or_package_dict.name text = dataset_display_name(package_or_package_dict) - return link_to( + return tags.link_to( text, url_for(controller='package', action='read', id=name) ) -# TODO: (?) support resource objects as well +@core_helper def resource_display_name(resource_dict): - name = resource_dict.get('name', None) - description = resource_dict.get('description', None) + # TODO: (?) support resource objects as well + name = get_translated(resource_dict, 'name') + description = get_translated(resource_dict, 'description') if name: return name elif description: @@ -1202,49 +1304,41 @@ def resource_display_name(resource_dict): return _("Unnamed resource") +@core_helper def resource_link(resource_dict, package_id): text = resource_display_name(resource_dict) url = url_for(controller='package', action='resource_read', id=package_id, resource_id=resource_dict['id']) - return link_to(text, url) - - -def related_item_link(related_item_dict): - text = related_item_dict.get('title', '') - url = url_for(controller='related', - action='read', - id=related_item_dict['id']) - return link_to(text, url) + return tags.link_to(text, url) +@core_helper def tag_link(tag): url = url_for(controller='tag', action='read', id=tag['name']) - return link_to(tag.get('title', tag['name']), url) + return tags.link_to(tag.get('title', tag['name']), url) +@core_helper def group_link(group): url = url_for(controller='group', action='read', id=group['name']) - return link_to(group['title'], url) + return tags.link_to(group['title'], url) +@core_helper def organization_link(organization): url = url_for(controller='organization', action='read', id=organization['name']) - return link_to(organization['name'], url) + return tags.link_to(organization['name'], url) +@core_helper def dump_json(obj, **kw): return json.dumps(obj, **kw) -def _get_template_name(): - # FIX ME THIS IS BROKEN - ''' helper function to get the currently/last rendered template name ''' - return c.__debug_info[-1]['template_name'] - - +@core_helper def auto_log_message(): if (c.action == 'new'): return _('Created new dataset.') @@ -1255,6 +1349,7 @@ def auto_log_message(): return '' +@core_helper def activity_div(template, activity, actor, object=None, target=None): actor = '%s' % actor if object: @@ -1269,6 +1364,7 @@ def activity_div(template, activity, actor, object=None, target=None): return literal(template) +@core_helper def snippet(template_name, **kw): ''' This function is used to load html snippets into pages. keywords can be used to pass parameters into the snippet rendering ''' @@ -1276,6 +1372,7 @@ def snippet(template_name, **kw): return base.render_snippet(template_name, **kw) +@core_helper def convert_to_dict(object_type, objs): ''' This is a helper function for converting lists of objects into lists of dicts. It is for backwards compatability only. ''' @@ -1312,6 +1409,7 @@ def process_names(items): _follow_objects = ['dataset', 'user', 'group'] +@core_helper def follow_button(obj_type, obj_id): '''Return a follow button for the given object type and id. @@ -1342,6 +1440,7 @@ def follow_button(obj_type, obj_id): return '' +@core_helper def follow_count(obj_type, obj_id): '''Return the number of followers of an object. @@ -1376,6 +1475,7 @@ def _create_url_with_params(params=None, controller=None, action=None, return _url_with_params(url, params) +@core_helper def add_url_param(alternative_url=None, controller=None, action=None, extras=None, new_params=None): ''' @@ -1399,6 +1499,7 @@ def add_url_param(alternative_url=None, controller=None, action=None, action=action, extras=extras) +@core_helper def remove_url_param(key, value=None, replace=None, controller=None, action=None, extras=None, alternative_url=None): ''' Remove one or multiple keys from the current parameters. @@ -1440,11 +1541,13 @@ def remove_url_param(key, value=None, replace=None, controller=None, action=action, extras=extras) +@core_helper def include_resource(resource): r = getattr(fanstatic_resources, resource) r.need() +@core_helper def urls_for_resource(resource): ''' Returns a list of urls for the resource specified. If the resource is a group or has dependencies then there can be multiple urls. @@ -1474,11 +1577,13 @@ def urls_for_resource(resource): return out +@core_helper def debug_inspect(arg): ''' Output pprint.pformat view of supplied arg ''' return literal('
    ') + pprint.pformat(arg) + literal('
    ') +@core_helper def debug_full_info_as_list(debug_info): ''' This dumps the template variables for debugging purposes only. ''' out = [] @@ -1512,6 +1617,7 @@ def debug_full_info_as_list(debug_info): return out +@core_helper def popular(type_, number, min=1, title=None): ''' display a popular icon. ''' if type_ == 'views': @@ -1525,6 +1631,7 @@ def popular(type_, number, min=1, title=None): title=title, number=number, min=min) +@core_helper def groups_available(am_member=False): '''Return a list of the groups that the user is authorized to edit. @@ -1540,6 +1647,7 @@ def groups_available(am_member=False): return logic.get_action('group_list_authz')(context, data_dict) +@core_helper def organizations_available(permission='edit_group'): '''Return a list of organizations that the current user has the specified permission for. @@ -1549,6 +1657,13 @@ def organizations_available(permission='edit_group'): return logic.get_action('organization_list_for_user')(context, data_dict) +@core_helper +def roles_translated(): + '''Return a dict of available roles with their translations''' + return authz.roles_trans() + + +@core_helper def user_in_org_or_group(group_id): ''' Check if user is in a group or organization ''' # we need a user @@ -1565,6 +1680,7 @@ def user_in_org_or_group(group_id): return len(query.all()) != 0 +@core_helper def dashboard_activity_stream(user_id, filter_type=None, filter_id=None, offset=0): '''Return the dashboard activity stream of the current user. @@ -1598,6 +1714,7 @@ def dashboard_activity_stream(user_id, filter_type=None, filter_id=None, context, {'offset': offset}) +@core_helper def recently_changed_packages_activity_stream(limit=None): if limit: data_dict = {'limit': limit} @@ -1608,6 +1725,7 @@ def recently_changed_packages_activity_stream(limit=None): context, data_dict) +@core_helper def escape_js(str_to_escape): '''Escapes special characters from a JS string. @@ -1621,6 +1739,7 @@ def escape_js(str_to_escape): .replace('"', '\\\"') +@core_helper def get_pkg_dict_extra(pkg_dict, key, default=None): '''Returns the value for the dataset extra with the provided key. @@ -1641,6 +1760,7 @@ def get_pkg_dict_extra(pkg_dict, key, default=None): return default +@core_helper def get_request_param(parameter_name, default=None): ''' This function allows templates to access query string parameters from the request. This is useful for things like sort order in @@ -1674,13 +1794,17 @@ def get_request_param(parameter_name, default=None): RE_MD_HTML_TAGS = re.compile('<[^><]*>') +@core_helper def html_auto_link(data): '''Linkifies HTML - tag:... converted to a tag link - dataset:... converted to a dataset link - group:... converted to a group link - http://... converted to a link + `tag` converted to a tag link + + `dataset` converted to a dataset link + + `group` converted to a group link + + `http://` converted to a link ''' LINK_FNS = { @@ -1710,6 +1834,7 @@ def process(matchobj): return data +@core_helper def render_markdown(data, auto_link=True, allow_html=False): ''' Returns the data as rendered markdown @@ -1723,10 +1848,10 @@ def render_markdown(data, auto_link=True, allow_html=False): if not data: return '' if allow_html: - data = markdown(data.strip(), safe_mode=False) + data = markdown(data.strip()) else: data = RE_MD_HTML_TAGS.sub('', data.strip()) - data = markdown(data, safe_mode=True) + data = markdown(clean_html(data, strip=True)) # tags can be added by tag:... or tag:"...." and a link will be made # from it if auto_link: @@ -1734,6 +1859,7 @@ def render_markdown(data, auto_link=True, allow_html=False): return literal(data) +@core_helper def format_resource_items(items): ''' Take a resource item list and format nicely with blacklisting etc. ''' blacklist = ['name', 'description', 'url', 'tracking_summary'] @@ -1769,6 +1895,7 @@ def format_resource_items(items): return sorted(output, key=lambda x: x[0]) +@core_helper def resource_preview(resource, package): ''' Returns a rendered snippet for a embedded resource preview. @@ -1798,6 +1925,7 @@ def resource_preview(resource, package): raw_resource_url=resource.get('url')) +@core_helper def get_allowed_view_types(resource, package): data_dict = {'resource': resource, 'package': package} plugins = datapreview.get_allowed_view_plugins(data_dict) @@ -1812,6 +1940,7 @@ def get_allowed_view_types(resource, package): return allowed_view_types +@core_helper def rendered_resource_view(resource_view, resource, package, embed=False): ''' Returns a rendered resource view snippet. @@ -1832,6 +1961,7 @@ def rendered_resource_view(resource_view, resource, package, embed=False): return literal(base.render(template, extra_vars=data_dict)) +@core_helper def view_resource_url(resource_view, resource, package, **kw): ''' Returns url for resource. made to be overridden by extensions. i.e @@ -1840,6 +1970,7 @@ def view_resource_url(resource_view, resource, package, **kw): return resource['url'] +@core_helper def resource_view_is_filterable(resource_view): ''' Returns True if the given resource view support filters. @@ -1848,6 +1979,7 @@ def resource_view_is_filterable(resource_view): return view_plugin.info().get('filterable', False) +@core_helper def resource_view_get_fields(resource): '''Returns sorted list of text and time fields of a datastore resource.''' @@ -1865,6 +1997,7 @@ def resource_view_get_fields(resource): return sorted(fields) +@core_helper def resource_view_is_iframed(resource_view): ''' Returns true if the given resource view should be displayed in an iframe. @@ -1873,6 +2006,7 @@ def resource_view_is_iframed(resource_view): return view_plugin.info().get('iframed', True) +@core_helper def resource_view_icon(resource_view): ''' Returns the icon for a particular view type. @@ -1881,6 +2015,7 @@ def resource_view_icon(resource_view): return view_plugin.info().get('icon', 'picture') +@core_helper def resource_view_display_preview(resource_view): ''' Returns if the view should display a preview. @@ -1889,6 +2024,7 @@ def resource_view_display_preview(resource_view): return view_plugin.info().get('preview_enabled', True) +@core_helper def resource_view_full_page(resource_view): ''' Returns if the edit view page should be full page. @@ -1897,11 +2033,13 @@ def resource_view_full_page(resource_view): return view_plugin.info().get('full_page_edit', False) +@core_helper def remove_linebreaks(string): '''Remove linebreaks from string to make it usable in JavaScript''' return unicode(string).replace('\n', '') +@core_helper def list_dict_filter(list_, search_field, output_field, value): ''' Takes a list of dicts and returns the value of a given key if the item has a matching value for a supplied key @@ -1924,6 +2062,7 @@ def list_dict_filter(list_, search_field, output_field, value): return value +@core_helper def SI_number_span(number): ''' outputs a span with the number in SI unit eg 14700 -> 14.7k ''' number = int(number) @@ -1941,6 +2080,7 @@ def SI_number_span(number): localised_filesize = formatters.localised_filesize +@core_helper def new_activities(): '''Return the number of activities for the current user. @@ -1954,12 +2094,14 @@ def new_activities(): return action({}, {}) +@core_helper def uploads_enabled(): if uploader.get_storage_path(): return True return False +@core_helper def get_featured_organizations(count=1): '''Returns a list of favourite organization in the form of organization_list action function @@ -1972,6 +2114,7 @@ def get_featured_organizations(count=1): return orgs +@core_helper def get_featured_groups(count=1): '''Returns a list of favourite group the form of organization_list action function @@ -1984,6 +2127,7 @@ def get_featured_groups(count=1): return groups +@core_helper def featured_group_org(items, get_action, list_action, count): def get_group(id): context = {'ignore_auth': True, @@ -2019,6 +2163,7 @@ def get_group(id): return groups_data +@core_helper def get_site_statistics(): stats = {} stats['dataset_count'] = logic.get_action('package_search')( @@ -2026,17 +2171,12 @@ def get_site_statistics(): stats['group_count'] = len(logic.get_action('group_list')({}, {})) stats['organization_count'] = len( logic.get_action('organization_list')({}, {})) - result = model.Session.execute( - '''select count(*) from related r - left join related_dataset rd on r.id = rd.related_id - where rd.status = 'active' or rd.id is null''').first()[0] - stats['related_count'] = result - return stats _RESOURCE_FORMATS = None +@core_helper def resource_formats(): ''' Returns the resource formats as a dict, sourced from the resource format JSON file. @@ -2083,6 +2223,7 @@ def resource_formats(): return _RESOURCE_FORMATS +@core_helper def unified_resource_format(format): formats = resource_formats() format_clean = format.lower() @@ -2093,10 +2234,12 @@ def unified_resource_format(format): return format_new +@core_helper def check_config_permission(permission): return authz.check_config_permission(permission) +@core_helper def get_organization(org=None, include_datasets=False): if org is None: return {} @@ -2107,6 +2250,7 @@ def get_organization(org=None, include_datasets=False): return {} +@core_helper def license_options(existing_license_id=None): '''Returns [(l.title, l.id), ...] for the licenses configured to be offered. Always includes the existing_license_id, if supplied. @@ -2122,123 +2266,44 @@ def license_options(existing_license_id=None): for license_id in license_ids] -# these are the functions that will end up in `h` template helpers -__allowed_functions__ = [ - # functions defined in ckan.lib.helpers - 'redirect_to', - 'url', - 'url_for', - 'url_for_static', - 'url_for_static_or_external', - 'is_url', - 'lang', - 'flash', - 'flash_error', - 'flash_notice', - 'flash_success', - 'nav_link', - 'nav_named_link', - 'subnav_link', - 'subnav_named_route', - 'default_group_type', - 'check_access', - 'get_action', - 'linked_user', - 'group_name_to_title', - 'markdown_extract', - 'icon', - 'icon_html', - 'icon_url', - 'resource_icon', - 'format_icon', - 'linked_gravatar', - 'gravatar', - 'pager_url', - 'render_datetime', - 'date_str_to_datetime', - 'parse_rfc_2822_date', - 'time_ago_in_words_from_str', - 'button_attr', - 'dataset_display_name', - 'dataset_link', - 'resource_display_name', - 'resource_link', - 'related_item_link', - 'tag_link', - 'group_link', - 'dump_json', - 'auto_log_message', - 'snippet', - 'convert_to_dict', - 'activity_div', - 'lang_native_name', - 'get_facet_items_dict', - 'unselected_facet_items', - 'include_resource', - 'urls_for_resource', - 'build_nav_main', - 'build_nav_icon', - 'build_nav', - 'build_extra_admin_nav', - 'debug_inspect', - 'dict_list_reduce', - 'full_current_url', - 'popular', - 'debug_full_info_as_list', - 'get_facet_title', - 'get_param_int', - 'sorted_extras', - 'follow_button', - 'follow_count', - 'remove_url_param', - 'add_url_param', - 'groups_available', - 'organizations_available', - 'user_in_org_or_group', - 'dashboard_activity_stream', - 'recently_changed_packages_activity_stream', - 'escape_js', - 'get_pkg_dict_extra', - 'get_request_param', - 'render_markdown', - 'format_resource_items', - 'resource_preview', - 'rendered_resource_view', - 'resource_view_get_fields', - 'resource_view_is_filterable', - 'resource_view_is_iframed', - 'resource_view_icon', - 'resource_view_display_preview', - 'resource_view_full_page', - 'remove_linebreaks', - 'SI_number_span', - 'localised_number', - 'localised_SI_number', - 'localised_nice_date', - 'localised_filesize', - 'list_dict_filter', - 'new_activities', - 'time_ago_from_timestamp', - 'get_organization', - 'has_more_facets', - # imported into ckan.lib.helpers - 'literal', - 'link_to', - 'get_available_locales', - 'get_locales_dict', - 'truncate', - 'file', - 'mail_to', - 'radio', - 'submit', - 'asbool', - 'uploads_enabled', - 'get_featured_organizations', - 'get_featured_groups', - 'get_site_statistics', - 'get_allowed_view_types', - 'urlencode', - 'check_config_permission', - 'view_resource_url', - 'license_options', -] +@core_helper +def get_translated(data_dict, field): + language = i18n.get_lang() + try: + return data_dict[field+'_translated'][language] + except KeyError: + return data_dict.get(field, '') + + +core_helper(flash, name='flash') +core_helper(localised_number) +core_helper(localised_SI_number) +core_helper(localised_nice_date) +core_helper(localised_filesize) +# Useful additionsfrom the i18n library. +core_helper(i18n.get_available_locales) +core_helper(i18n.get_locales_dict) +# Useful additions from the webhelpers library. +core_helper(tags.literal) +core_helper(tags.link_to) +core_helper(tags.file) +core_helper(tags.submit) +core_helper(tools.mail_to) +core_helper(whtext.truncate) +# Useful additions from the paste library. +core_helper(converters.asbool) +# Useful additions from the stdlib. +core_helper(urlencode) + + +def load_plugin_helpers(): + """ + (Re)loads the list of helpers provided by plugins. + """ + global helper_functions + + helper_functions.clear() + helper_functions.update(_builtin_functions) + + for plugin in reversed(list(p.PluginImplementations(p.ITemplateHelpers))): + helper_functions.update(plugin.get_helpers()) diff --git a/ckan/lib/i18n.py b/ckan/lib/i18n.py index 0d2d8e49499..033b86eeec9 100644 --- a/ckan/lib/i18n.py +++ b/ckan/lib/i18n.py @@ -1,11 +1,17 @@ import os +import gettext from babel import Locale, localedata from babel.core import LOCALE_ALIASES +from babel.support import Translations +from paste.deploy.converters import aslist from pylons import config from pylons import i18n +import pylons import ckan.i18n +from ckan.plugins import PluginImplementations +from ckan.plugins.interfaces import ITranslation LOCALE_ALIASES['pt'] = 'pt_BR' # Default Portuguese language to # Brazilian territory, since @@ -121,9 +127,11 @@ def _set_lang(lang): if config.get('ckan.i18n_directory'): fake_config = {'pylons.paths': {'root': config['ckan.i18n_directory']}, 'pylons.package': config['pylons.package']} - i18n.set_lang(lang, pylons_config=fake_config) + i18n.set_lang(lang, pylons_config=fake_config, class_=Translations) else: - i18n.set_lang(lang) + i18n.set_lang(lang, class_=Translations) + + def handle_request(request, tmpl_context): ''' Set the language for the request ''' @@ -131,9 +139,40 @@ def handle_request(request, tmpl_context): config.get('ckan.locale_default', 'en') if lang != 'en': set_lang(lang) + + + for plugin in PluginImplementations(ITranslation): + if lang in plugin.i18n_locales(): + _add_extra_translations(plugin.i18n_directory(), lang, + plugin.i18n_domain()) + + extra_directory = config.get('ckan.i18n.extra_directory') + extra_domain = config.get('ckan.i18n.extra_gettext_domain') + extra_locales = aslist(config.get('ckan.i18n.extra_locales')) + if extra_directory and extra_domain and extra_locales: + if lang in extra_locales: + _add_extra_translations(extra_directory, lang, extra_domain) + tmpl_context.language = lang return lang +def _add_extra_translations(dirname, locales, domain): + translator = Translations.load(dirname=dirname, locales=locales, + domain=domain) + try: + pylons.translator.merge(translator) + except AttributeError: + # this occurs when an extension has 'en' translations that + # replace the default strings. As set_lang has not been run, + # pylons.translation is the NullTranslation, so we have to + # replace the StackedObjectProxy ourselves manually. + environ = pylons.request.environ + environ['pylons.pylons'].translator = translator + if 'paste.registry' in environ: + environ['paste.registry'].replace(pylons.translator, + translator) + + def get_lang(): ''' Returns the current language. Based on babel.i18n.get_lang but works when set_lang has not been run (i.e. still in English). ''' diff --git a/ckan/lib/mailer.py b/ckan/lib/mailer.py index b98ceb5ba38..e80a7409bb9 100644 --- a/ckan/lib/mailer.py +++ b/ckan/lib/mailer.py @@ -13,26 +13,24 @@ import ckan import ckan.model as model import ckan.lib.helpers as h +from ckan.lib.base import render_jinja2 -from ckan.common import _, g +from ckan.common import _ log = logging.getLogger(__name__) + class MailerException(Exception): pass -def add_msg_niceties(recipient_name, body, sender_name, sender_url): - return _(u"Dear %s,") % recipient_name \ - + u"\r\n\r\n%s\r\n\r\n" % body \ - + u"--\r\n%s (%s)" % (sender_name, sender_url) def _mail_recipient(recipient_name, recipient_email, - sender_name, sender_url, subject, - body, headers={}): + sender_name, sender_url, subject, + body, headers={}): mail_from = config.get('smtp.mail_from') - body = add_msg_niceties(recipient_name, body, sender_name, sender_url) msg = MIMEText(body.encode('utf-8'), 'plain', 'utf-8') - for k, v in headers.items(): msg[k] = v + for k, v in headers.items(): + msg[k] = v subject = Header(subject.encode('utf-8'), 'utf-8') msg['Subject'] = subject msg['From'] = _("%s <%s>") % (sender_name, mail_from) @@ -53,13 +51,11 @@ def _mail_recipient(recipient_name, recipient_email, else: smtp_server = config.get('smtp.server', 'localhost') smtp_starttls = paste.deploy.converters.asbool( - config.get('smtp.starttls')) + config.get('smtp.starttls')) smtp_user = config.get('smtp.user') smtp_password = config.get('smtp.password') smtp_connection.connect(smtp_server) try: - #smtp_connection.set_debuglevel(True) - # Identify ourselves and prompt the server for supported features. smtp_connection.ehlo() @@ -76,7 +72,7 @@ def _mail_recipient(recipient_name, recipient_email, # If 'smtp.user' is in CKAN config, try to login to SMTP server. if smtp_user: assert smtp_password, ("If smtp.user is configured then " - "smtp.password must be configured as well.") + "smtp.password must be configured as well.") smtp_connection.login(smtp_user, smtp_password) smtp_connection.sendmail(mail_from, [recipient_email], msg.as_string()) @@ -89,81 +85,103 @@ def _mail_recipient(recipient_name, recipient_email, finally: smtp_connection.quit() + def mail_recipient(recipient_name, recipient_email, subject, - body, headers={}): + body, headers={}): + site_title = config.get('ckan.site_title') + site_url = config.get('ckan.site_url') return _mail_recipient(recipient_name, recipient_email, - g.site_title, g.site_url, subject, body, headers=headers) + site_title, site_url, subject, body, + headers=headers) + def mail_user(recipient, subject, body, headers={}): if (recipient.email is None) or not len(recipient.email): raise MailerException(_("No recipient email address available!")) mail_recipient(recipient.display_name, recipient.email, subject, - body, headers=headers) + body, headers=headers) + def get_reset_link_body(user): - reset_link_message = _( - "You have requested your password on {site_title} to be reset.\n" - "\n" - "Please click the following link to confirm this request:\n" - "\n" - " {reset_link}\n" - ) - - d = { + extra_vars = { 'reset_link': get_reset_link(user), - 'site_title': g.site_title + 'site_title': config.get('ckan.site_title'), + 'site_url': config.get('ckan.site_url'), + 'user_name': user.name, } - return reset_link_message.format(**d) - -def get_invite_body(user): - invite_message = _( - "You have been invited to {site_title}. A user has already been created " - "to you with the username {user_name}. You can change it later.\n" - "\n" - "To accept this invite, please reset your password at:\n" - "\n" - " {reset_link}\n" - ) - - d = { + # NOTE: This template is translated + return render_jinja2('emails/reset_password.txt', extra_vars) + + +def get_invite_body(user, group_dict=None, role=None): + if group_dict: + group_type = (_('organization') if group_dict['is_organization'] + else _('group')) + + extra_vars = { 'reset_link': get_reset_link(user), - 'site_title': g.site_title, + 'site_title': config.get('ckan.site_title'), + 'site_url': config.get('ckan.site_url'), 'user_name': user.name, } - return invite_message.format(**d) + if role: + extra_vars['role_name'] = h.roles_translated().get(role, _(role)) + if group_dict: + extra_vars['group_type'] = group_type + extra_vars['group_title'] = group_dict.get('title') + + # NOTE: This template is translated + return render_jinja2('emails/invite_user.txt', extra_vars) + def get_reset_link(user): - return urljoin(g.site_url, + return urljoin(config.get('site_url'), h.url_for(controller='user', - action='perform_reset', - id=user.id, - key=user.reset_key)) + action='perform_reset', + id=user.id, + key=user.reset_key)) + def send_reset_link(user): create_reset_key(user) body = get_reset_link_body(user) - subject = _('Reset your password') + extra_vars = { + 'site_title': config.get('ckan.site_title') + } + subject = render_jinja2('emails/reset_password_subject.txt', extra_vars) + + # Make sure we only use the first line + subject = subject.split('\n')[0] + mail_user(user, subject, body) -def send_invite(user): + +def send_invite(user, group_dict=None, role=None): create_reset_key(user) - body = get_invite_body(user) - subject = _('Invite for {site_title}').format(site_title=g.site_title) + body = get_invite_body(user, group_dict, role) + extra_vars = { + 'site_title': config.get('ckan.site_title') + } + subject = render_jinja2('emails/invite_user_subject.txt', extra_vars) + + # Make sure we only use the first line + subject = subject.split('\n')[0] + mail_user(user, subject, body) + def create_reset_key(user): user.reset_key = unicode(make_key()) model.repo.commit_and_remove() + def make_key(): return uuid.uuid4().hex[:10] + def verify_reset_link(user, key): if not key: return False if not user.reset_key or len(user.reset_key) < 5: return False return key.strip() == user.reset_key - - - diff --git a/ckan/lib/munge.py b/ckan/lib/munge.py index 484e0f5b0df..c486e6ef9bf 100644 --- a/ckan/lib/munge.py +++ b/ckan/lib/munge.py @@ -34,7 +34,7 @@ def munge_title_to_name(name): # take out not-allowed characters name = re.sub('[^a-zA-Z0-9-_]', '', name).lower() # remove doubles - name = re.sub('--', '-', name) + name = re.sub('-+', '-', name) # remove leading or trailing hyphens name = name.strip('-') # if longer than max_length, keep last word if a year diff --git a/ckan/lib/plugins.py b/ckan/lib/plugins.py index ff596c9e2c7..132e5b4598f 100644 --- a/ckan/lib/plugins.py +++ b/ckan/lib/plugins.py @@ -1,4 +1,6 @@ import logging +import os +import sys from pylons import c from ckan.lib import base @@ -273,10 +275,6 @@ def setup_template_variables(self, context, data_dict): maintain.deprecate_context_item('licences', 'Use `c.licenses` instead') c.is_sysadmin = ckan.authz.is_sysadmin(c.user) - if c.pkg: - # Used by the disqus plugin - c.related_count = c.pkg.related_count - if context.get('revision_id') or context.get('revision_date'): if context.get('revision_id'): rev = base.model.Session.query(base.model.Revision) \ @@ -339,6 +337,9 @@ class DefaultGroupForm(object): Note - this isn't a plugin implementation. This is deliberate, as we don't want this being registered. """ + def group_controller(self): + return 'group' + def new_template(self): """ Returns a string representing the location of the template to be @@ -439,7 +440,7 @@ def db_to_form_schema(self): into a format suitable for the form (optional)''' def db_to_form_schema_options(self, options): - '''This allows the selectino of different schemas for different + '''This allows the selection of different schemas for different purposes. It is optional and if not available, ``db_to_form_schema`` should be used. If a context is provided, and it contains a schema, it will be @@ -489,6 +490,9 @@ def setup_template_variables(self, context, data_dict): class DefaultOrganizationForm(DefaultGroupForm): + def group_controller(self): + return 'organization' + def group_form(self): return 'organization/new_organization_form.html' @@ -522,3 +526,38 @@ def activity_template(self): return 'organization/activity_stream.html' _default_organization_plugin = DefaultOrganizationForm() + + +class DefaultTranslation(object): + def i18n_directory(self): + '''Change the directory of the *.mo translation files + + The default implementation assumes the plugin is + ckanext/myplugin/plugin.py and the translations are stored in + i18n/ + ''' + # assume plugin is called ckanext..<...>.PluginClass + extension_module_name = '.'.join(self.__module__.split('.')[:3]) + module = sys.modules[extension_module_name] + return os.path.join(os.path.dirname(module.__file__), 'i18n') + + def i18n_locales(self): + '''Change the list of locales that this plugin handles + + By default the will assume any directory in subdirectory in the + directory defined by self.directory() is a locale handled by this + plugin + ''' + directory = self.i18n_directory() + return [ d for + d in os.listdir(directory) + if os.path.isdir(os.path.join(directory, d)) + ] + + def i18n_domain(self): + '''Change the gettext domain handled by this plugin + + This implementation assumes the gettext domain is + ckanext-{extension name}, hence your pot, po and mo files should be + named ckanext-{extension name}.mo''' + return 'ckanext-{name}'.format(name=self.name) diff --git a/ckan/lib/render.py b/ckan/lib/render.py index c14905b6bba..1534bd0e6f7 100644 --- a/ckan/lib/render.py +++ b/ckan/lib/render.py @@ -21,22 +21,6 @@ def find_template(template_name): return os.path.join(path, template_name) def template_type(template_path): - ''' returns best guess for template type - returns 'jinja2', 'genshi', 'genshi-text' ''' - if template_path.endswith('.txt'): - return 'genshi-text' - try: - f = open(template_path, 'r') - except IOError: - # do the import here due to circular import hell functions like - # abort should be in a none circular importing file but that - # refactor has not yet happened - import ckan.lib.base as base - base.abort(404) - source = f.read() - f.close() - if re.search('genshi\.edgewall\.org', source): - return 'genshi' return 'jinja2' class TemplateNotFound(Exception): @@ -61,45 +45,3 @@ def template_info(template_name): 'template_type' : t_type,} _template_info_cache[template_name] = t_data return template_path, t_type - - -def deprecated_lazy_render(target_template, snippet_template, render, - message): - ''' - If either target_template is a genshi template this function renders - immediately and returns a string, otherwise an object that will lazily - render when {{ the_object | safe }} is used in the jinja template - is returned. - - :param target_template: name of jinja or genshi template - that may include the object returned - :param snippet_template: name of jinja or genshi template - that will be rendered - :param render: function to call to render the template snippet - :param message: message to log.warn() if render is called - ''' - lazy = DeprecatedLazyRenderer(render, message) - t_path, t_type = template_info(target_template) - if t_type.startswith('genshi'): - return lazy.__html__() - return lazy - -class DeprecatedLazyRenderer(object): - ''' - An object that will defer rendering until absolutely necessary to - pass to a template that might do {{ the_object | safe }}. - - Used maintain backwards compatibility with templates that used to - expect a pre-rendered HTML snippet but have been updated to use - a normal {% snippet %} tag. - ''' - def __init__(self, render, message): - self._html = None - self._render = render - self._message = message - - def __html__(self): - if not self._html: - log.warn(self._message) - self._html = self._render() - return self._html diff --git a/ckan/lib/search/__init__.py b/ckan/lib/search/__init__.py index ea28b0410f0..182d2e6d1bb 100644 --- a/ckan/lib/search/__init__.py +++ b/ckan/lib/search/__init__.py @@ -135,7 +135,8 @@ def notify(self, entity, operation): log.warn("Discarded Sync. indexing for: %s" % entity) -def rebuild(package_id=None, only_missing=False, force=False, refresh=False, defer_commit=False, package_ids=None): +def rebuild(package_id=None, only_missing=False, force=False, refresh=False, + defer_commit=False, package_ids=None, quiet=False): ''' Rebuilds the search index. @@ -183,7 +184,14 @@ def rebuild(package_id=None, only_missing=False, force=False, refresh=False, def if not refresh: package_index.clear() - for pkg_id in package_ids: + total_packages = len(package_ids) + for counter, pkg_id in enumerate(package_ids): + if not quiet: + sys.stdout.write( + "\rIndexing dataset {0}/{1}".format( + counter +1, total_packages) + ) + sys.stdout.flush() try: package_index.update_dict( logic.get_action('package_show')(context, @@ -192,8 +200,8 @@ def rebuild(package_id=None, only_missing=False, force=False, refresh=False, def defer_commit ) except Exception, e: - log.error('Error while indexing dataset %s: %s' % - (pkg_id, str(e))) + log.error(u'Error while indexing dataset %s: %s' % + (pkg_id, repr(e))) if force: log.error(text_traceback()) continue @@ -231,13 +239,16 @@ def show(package_reference): return package_query.get_index(package_reference) -def clear(package_reference=None): +def clear(package_reference): package_index = index_for(model.Package) - if package_reference: - log.debug("Clearing search index for dataset %s..." % - package_reference) - package_index.delete_package({'id': package_reference}) - elif not SIMPLE_SEARCH: + log.debug("Clearing search index for dataset %s..." % + package_reference) + package_index.delete_package({'id': package_reference}) + + +def clear_all(): + if not SIMPLE_SEARCH: + package_index = index_for(model.Package) log.debug("Clearing search index...") package_index.clear() diff --git a/ckan/lib/search/query.py b/ckan/lib/search/query.py index 20a5e58a644..7a4a6069d7e 100644 --- a/ckan/lib/search/query.py +++ b/ckan/lib/search/query.py @@ -341,37 +341,49 @@ def run(self, query): query['mm'] = query.get('mm', '2<-1 5<80%') query['qf'] = query.get('qf', QUERY_FIELDS) - conn = make_connection(decode_dates=False) log.debug('Package query: %r' % query) try: solr_response = conn.search(**query) except pysolr.SolrError, e: + # Error with the sort parameter. You see slightly different + # error messages depending on whether the SOLR JSON comes back + # or Jetty gets in the way converting it to HTML - not sure why + # + if "Can't determine a Sort Order" in e.body or \ + "Can't determine Sort Order" in e.body or \ + 'Unknown sort order' in e.body: + raise SearchQueryError('Invalid "sort" parameter') raise SearchError('SOLR returned an error running query: %r Error: %r' % (query, e)) self.count = solr_response.hits self.results = solr_response.docs - # #1683 Filter out the last row that is sometimes out of order - self.results = self.results[:rows_to_return] - - # get any extras and add to 'extras' dict - for result in self.results: - extra_keys = filter(lambda x: x.startswith('extras_'), result.keys()) - extras = {} - for extra_key in extra_keys: - value = result.pop(extra_key) - extras[extra_key[len('extras_'):]] = value - if extra_keys: - result['extras'] = extras - - # if just fetching the id or name, return a list instead of a dict - if query.get('fl') in ['id', 'name']: - self.results = [r.get(query.get('fl')) for r in self.results] - - # get facets and convert facets list to a dict - self.facets = solr_response.facets.get('facet_fields', {}) - for field, values in self.facets.iteritems(): - self.facets[field] = dict(zip(values[0::2], values[1::2])) + # #1683 Filter out the last row that is sometimes out of order + self.results = self.results[:rows_to_return] + + # get any extras and add to 'extras' dict + for result in self.results: + extra_keys = filter(lambda x: x.startswith('extras_'), result.keys()) + extras = {} + for extra_key in extra_keys: + value = result.pop(extra_key) + extras[extra_key[len('extras_'):]] = value + if extra_keys: + result['extras'] = extras + + # if just fetching the id or name, return a list instead of a dict + if query.get('fl') in ['id', 'name']: + self.results = [r.get(query.get('fl')) for r in self.results] + + # get facets and convert facets list to a dict + self.facets = data.get('facet_counts', {}).get('facet_fields', {}) + for field, values in self.facets.iteritems(): + self.facets[field] = dict(zip(values[0::2], values[1::2])) + except Exception, e: + log.exception(e) + raise SearchError(e) + finally: + conn.close() return {'results': self.results, 'count': self.count} diff --git a/ckan/logic/__init__.py b/ckan/logic/__init__.py index 2bc7626af4f..7c9ded26c64 100644 --- a/ckan/logic/__init__.py +++ b/ckan/logic/__init__.py @@ -25,7 +25,14 @@ class UsernamePasswordError(Exception): class ActionError(Exception): - pass + + def __init__(self, message=''): + self.message = message + super(ActionError, self).__init__(message) + + def __str__(self): + return self.message + class NotFound(ActionError): '''Exception raised by logic functions when a given object is not found. @@ -44,7 +51,6 @@ class NotAuthorized(ActionError): For example :py:func:`~ckan.logic.action.create.package_create` raises :py:exc:`~ckan.plugins.toolkit.NotAuthorized` if the user is not authorized to create packages. - ''' pass @@ -90,8 +96,8 @@ def prettify(field_name): elif key == 'extras': errors_extras = [] for item in error: - if (item.get('key') - and item['key'][0] not in errors_extras): + if (item.get('key') and + item['key'][0] not in errors_extras): errors_extras.append(item.get('key')[0]) summary[_('Extras')] = ', '.join(errors_extras) elif key == 'extras_validation': @@ -211,7 +217,7 @@ def _prepopulate_context(context): context.setdefault('model', model) context.setdefault('session', model.Session) try: - context.setdefault('user', c.user or c.author) + context.setdefault('user', c.user) except TypeError: # c not registered pass @@ -267,7 +273,7 @@ def check_access(action, context, data_dict=None): user = context.get('user') try: - if not 'auth_user_obj' in context: + if 'auth_user_obj' not in context: context['auth_user_obj'] = None if not context.get('ignore_auth'): @@ -294,6 +300,8 @@ def check_access(action, context, data_dict=None): _actions = {} + + def clear_actions_cache(): _actions.clear() @@ -322,7 +330,7 @@ def get_action(action): As the context parameter passed to an action function is commonly:: context = {'model': ckan.model, 'session': ckan.model.Session, - 'user': pylons.c.user or pylons.c.author} + 'user': pylons.c.user} an action function returned by ``get_action()`` will automatically add these parameters to the context if they are not defined. This is @@ -343,7 +351,7 @@ def get_action(action): ''' if _actions: - if not action in _actions: + if action not in _actions: raise KeyError("Action '%s' not found" % action) return _actions.get(action) # Otherwise look in all the plugins to resolve all possible @@ -360,9 +368,9 @@ def get_action(action): if not k.startswith('_'): # Only load functions from the action module or already # replaced functions. - if (hasattr(v, '__call__') - and (v.__module__ == module_path - or hasattr(v, '__replaced'))): + if (hasattr(v, '__call__') and + (v.__module__ == module_path or + hasattr(v, '__replaced'))): _actions[k] = v # Whitelist all actions defined in logic/action/get.py as @@ -371,7 +379,6 @@ def get_action(action): not hasattr(v, 'side_effect_free'): v.side_effect_free = True - # Then overwrite them with any specific ones in the plugins: resolved_action_plugins = {} fetched_actions = {} @@ -421,7 +428,8 @@ def wrapped(context=None, data_dict=None, **kw): log.debug('No auth function for %s' % action_name) elif not getattr(_action, 'auth_audit_exempt', False): raise Exception( - 'Action function {0} did not call its auth function' + 'Action function {0} did not call its ' + 'auth function' .format(action_name)) # remove from audit stack context['__auth_audit'].pop() @@ -485,6 +493,7 @@ def get_or_bust(data_dict, keys): return values[0] return tuple(values) + def validate(schema_func, can_skip_validator=False): ''' A decorator that validates an action function against a given schema ''' @@ -503,6 +512,7 @@ def wrapper(context, data_dict): return wrapper return action_decorator + def side_effect_free(action): '''A decorator that marks the given action function as side-effect-free. @@ -564,6 +574,7 @@ def wrapper(context, data_dict): wrapper.auth_audit_exempt = True return wrapper + def auth_allow_anonymous_access(action): ''' Flag an auth function as not requiring a logged in user @@ -578,6 +589,7 @@ def wrapper(context, data_dict): wrapper.auth_allow_anonymous_access = True return wrapper + def auth_disallow_anonymous_access(action): ''' Flag an auth function as requiring a logged in user @@ -591,6 +603,7 @@ def wrapper(context, data_dict): wrapper.auth_allow_anonymous_access = False return wrapper + class UnknownValidator(Exception): '''Exception raised when a requested validator function cannot be found. @@ -600,6 +613,7 @@ class UnknownValidator(Exception): _validators_cache = {} + def clear_validators_cache(): _validators_cache.clear() @@ -620,7 +634,7 @@ def get_validator(validator): :rtype: ``types.FunctionType`` ''' - if not _validators_cache: + if not _validators_cache: validators = _import_module_functions('ckan.lib.navl.validators') _validators_cache.update(validators) validators = _import_module_functions('ckan.logic.validators') @@ -635,7 +649,8 @@ def get_validator(validator): raise NameConflict( 'The validator %r is already defined' % (name,) ) - log.debug('Validator function {0} from plugin {1} was inserted'.format(name, plugin.name)) + log.debug('Validator function {0} from plugin {1} was inserted' + .format(name, plugin.name)) _validators_cache[name] = fn try: return _validators_cache[validator] @@ -644,7 +659,8 @@ def get_validator(validator): def model_name_to_class(model_module, model_name): - '''Return the class in model_module that has the same name as the received string. + '''Return the class in model_module that has the same name as the + received string. Raises AttributeError if there's no model in model_module named model_name. ''' @@ -654,6 +670,7 @@ def model_name_to_class(model_module, model_name): except AttributeError: raise ValidationError("%s isn't a valid model" % model_class_name) + def _import_module_functions(module_path): '''Import a module and get the functions and return them in a dict''' functions_dict = {} diff --git a/ckan/logic/action/create.py b/ckan/logic/action/create.py index acaa09e2dee..9290ecd98cc 100644 --- a/ckan/logic/action/create.py +++ b/ckan/logic/action/create.py @@ -255,8 +255,6 @@ def resource_create(context, data_dict): :type mimetype: string :param mimetype_inner: (optional) :type mimetype_inner: string - :param webstore_url: (optional) - :type webstore_url: string :param cache_url: (optional) :type cache_url: string :param size: (optional) @@ -267,8 +265,6 @@ def resource_create(context, data_dict): :type last_modified: iso date string :param cache_last_updated: (optional) :type cache_last_updated: iso date string - :param webstore_last_updated: (optional) - :type webstore_last_updated: iso date string :param upload: (optional) :type upload: FieldStorage (optional) needs multipart/form-data @@ -467,86 +463,6 @@ def package_create_default_resource_views(context, data_dict): create_datastore_views=create_datastore_views) -def related_create(context, data_dict): - '''Add a new related item to a dataset. - - You must provide your API key in the Authorization header. - - :param title: the title of the related item - :type title: string - :param type: the type of the related item, e.g. ``'Application'``, - ``'Idea'`` or ``'Visualisation'`` - :type type: string - :param id: the id of the related item (optional) - :type id: string - :param description: the description of the related item (optional) - :type description: string - :param url: the URL to the related item (optional) - :type url: string - :param image_url: the URL to the image for the related item (optional) - :type image_url: string - :param dataset_id: the name or id of the dataset that the related item - belongs to (optional) - :type dataset_id: string - - :returns: the newly created related item - :rtype: dictionary - - ''' - model = context['model'] - session = context['session'] - user = context['user'] - userobj = model.User.get(user) - - _check_access('related_create', context, data_dict) - - data_dict["owner_id"] = userobj.id - data, errors = _validate( - data_dict, ckan.logic.schema.default_related_schema(), context) - if errors: - model.Session.rollback() - raise ValidationError(errors) - - related = model_save.related_dict_save(data, context) - if not context.get('defer_commit'): - model.repo.commit_and_remove() - - dataset_dict = None - if 'dataset_id' in data_dict: - dataset = model.Package.get(data_dict['dataset_id']) - dataset.related.append(related) - model.repo.commit_and_remove() - dataset_dict = ckan.lib.dictization.table_dictize(dataset, context) - - session.flush() - - related_dict = model_dictize.related_dictize(related, context) - activity_dict = { - 'user_id': userobj.id, - 'object_id': related.id, - 'activity_type': 'new related item', - } - activity_dict['data'] = { - 'related': related_dict, - 'dataset': dataset_dict, - } - activity_create_context = { - 'model': model, - 'user': user, - 'defer_commit': True, - 'ignore_auth': True, - 'session': session - } - logic.get_action('activity_create')(activity_create_context, - activity_dict) - session.commit() - - context["related"] = related - context["id"] = related.id - log.debug('Created object %s' % related.title) - return related_dict - - def package_relationship_create(context, data_dict): '''Create a relationship between two datasets (packages). @@ -1000,7 +916,7 @@ def user_create(context, data_dict): :param openid: (optional) :type openid: string - :returns: the newly created yser + :returns: the newly created user :rtype: dictionary ''' @@ -1016,6 +932,10 @@ def user_create(context, data_dict): session.rollback() raise ValidationError(errors) + # user schema prevents non-sysadmins from providing password_hash + if 'password_hash' in data: + data['_password'] = data.pop('password_hash') + user = model_save.user_dict_save(data, context) # Flush the session to cause user.id to be initialised, because @@ -1071,7 +991,7 @@ def user_invite(context, data_dict): or ``admin`` :type role: string - :returns: the newly created yser + :returns: the newly created user :rtype: dictionary ''' _check_access('user_invite', context, data_dict) @@ -1082,6 +1002,11 @@ def user_invite(context, data_dict): if errors: raise ValidationError(errors) + model = context['model'] + group = model.Group.get(data['group_id']) + if not group: + raise NotFound() + name = _get_random_username_from_email(data['email']) password = str(random.SystemRandom().random()) data['name'] = name @@ -1094,8 +1019,17 @@ def user_invite(context, data_dict): 'id': data['group_id'], 'role': data['role'] } - _get_action('group_member_create')(context, member_dict) - mailer.send_invite(user) + + if group.is_organization: + _get_action('organization_member_create')(context, member_dict) + group_dict = _get_action('organization_show')(context, + {'id': data['group_id']}) + else: + _get_action('group_member_create')(context, member_dict) + group_dict = _get_action('group_show')(context, + {'id': data['group_id']}) + + mailer.send_invite(user, group_dict, data['role']) return model_dictize.user_dictize(user, context) @@ -1420,6 +1354,9 @@ def _group_or_org_member_create(context, data_dict, is_org=False): role = data_dict.get('role') group_id = data_dict.get('id') group = model.Group.get(group_id) + if not group: + msg = _('Organization not found') if is_org else _('Group not found') + raise NotFound(msg) result = model.User.get(username) if result: user_id = result.id diff --git a/ckan/logic/action/delete.py b/ckan/logic/action/delete.py index dd562201f19..17af80ba388 100644 --- a/ckan/logic/action/delete.py +++ b/ckan/logic/action/delete.py @@ -1,9 +1,12 @@ '''API functions for deleting data from CKAN.''' +import sqlalchemy as sqla + import ckan.logic import ckan.logic.action import ckan.plugins as plugins import ckan.lib.dictization.model_dictize as model_dictize +from ckan import authz from ckan.common import _ @@ -44,6 +47,9 @@ def user_delete(context, data_dict): def package_delete(context, data_dict): '''Delete a dataset (package). + This makes the dataset disappear from all web & API views, apart from the + trash. + You must be authorized to delete the dataset. :param id: the id or name of the dataset to delete @@ -73,6 +79,46 @@ def package_delete(context, data_dict): entity.delete() model.repo.commit() + +def dataset_purge(context, data_dict): + '''Purge a dataset. + + .. warning:: Purging a dataset cannot be undone! + + Purging a database completely removes the dataset from the CKAN database, + whereas deleting a dataset simply marks the dataset as deleted (it will no + longer show up in the front-end, but is still in the db). + + You must be authorized to purge the dataset. + + :param id: the name or id of the dataset to be purged + :type id: string + + ''' + model = context['model'] + id = _get_or_bust(data_dict, 'id') + + pkg = model.Package.get(id) + context['package'] = pkg + if pkg is None: + raise NotFound('Dataset was not found') + + _check_access('dataset_purge', context, data_dict) + + members = model.Session.query(model.Member) \ + .filter(model.Member.table_id == pkg.id) \ + .filter(model.Member.table_name == 'package') + if members.count() > 0: + for m in members.all(): + m.purge() + + pkg = model.Package.get(id) + # no new_revision() needed since there are no object_revisions created + # during purge + pkg.purge() + model.repo.commit_and_remove() + + def resource_delete(context, data_dict): '''Delete a resource from a dataset. @@ -197,53 +243,6 @@ def package_relationship_delete(context, data_dict): relationship.delete() model.repo.commit() -def related_delete(context, data_dict): - '''Delete a related item from a dataset. - - You must be a sysadmin or the owner of the related item to delete it. - - :param id: the id of the related item - :type id: string - - ''' - model = context['model'] - session = context['session'] - user = context['user'] - userobj = model.User.get(user) - - id = _get_or_bust(data_dict, 'id') - - entity = model.Related.get(id) - - if entity is None: - raise NotFound - - _check_access('related_delete',context, data_dict) - - related_dict = model_dictize.related_dictize(entity, context) - activity_dict = { - 'user_id': userobj.id, - 'object_id': entity.id, - 'activity_type': 'deleted related item', - } - activity_dict['data'] = { - 'related': related_dict - } - activity_create_context = { - 'model': model, - 'user': user, - 'defer_commit': True, - 'ignore_auth': True, - 'session': session - } - - _get_action('activity_create')(activity_create_context, activity_dict) - session.commit() - - entity.delete() - model.repo.commit() - - def member_delete(context, data_dict=None): '''Remove an object (e.g. a user, dataset or group) from a group. @@ -397,12 +396,34 @@ def _group_or_org_purge(context, data_dict, is_org=False): else: _check_access('group_purge', context, data_dict) - members = model.Session.query(model.Member) - members = members.filter(model.Member.group_id == group.id) + if is_org: + # Clear the owner_org field + datasets = model.Session.query(model.Package) \ + .filter_by(owner_org=group.id) \ + .filter(model.Package.state != 'deleted') \ + .count() + if datasets: + if not authz.check_config_permission('ckan.auth.create_unowned_dataset'): + raise ValidationError('Organization cannot be purged while it ' + 'still has datasets') + pkg_table = model.package_table + # using Core SQLA instead of the ORM should be faster + model.Session.execute( + pkg_table.update().where( + sqla.and_(pkg_table.c.owner_org == group.id, + pkg_table.c.state != 'deleted') + ).values(owner_org=None) + ) + + # Delete related Memberships + members = model.Session.query(model.Member) \ + .filter(sqla.or_(model.Member.group_id == group.id, + model.Member.table_id == group.id)) if members.count() > 0: - model.repo.new_revision() + # no need to do new_revision() because Member is not revisioned, nor + # does it cascade delete any revisioned objects for m in members.all(): - m.delete() + m.purge() model.repo.commit_and_remove() group = model.Group.get(id) @@ -419,6 +440,8 @@ def group_purge(context, data_dict): whereas deleting a group simply marks the group as deleted (it will no longer show up in the frontend, but is still in the db). + Datasets in the organization will remain, just not in the purged group. + You must be authorized to purge the group. :param id: the name or id of the group to be purged @@ -437,6 +460,9 @@ def organization_purge(context, data_dict): deleted (it will no longer show up in the frontend, but is still in the db). + Datasets owned by the organization will remain, just not in an + organization any more. + You must be authorized to purge the organization. :param id: the name or id of the organization to be purged diff --git a/ckan/logic/action/get.py b/ckan/logic/action/get.py index 377a83dbac9..fdbe7143b3c 100644 --- a/ckan/logic/action/get.py +++ b/ckan/logic/action/get.py @@ -264,92 +264,6 @@ def package_revision_list(context, data_dict): return revision_dicts -def related_show(context, data_dict=None): - '''Return a single related item. - - :param id: the id of the related item to show - :type id: string - - :rtype: dictionary - - ''' - model = context['model'] - id = _get_or_bust(data_dict, 'id') - - related = model.Related.get(id) - context['related'] = related - - if related is None: - raise NotFound - - _check_access('related_show', context, data_dict) - schema = context.get('schema') \ - or ckan.logic.schema.default_related_schema() - related_dict = model_dictize.related_dictize(related, context) - related_dict, errors = _validate(related_dict, schema, context=context) - - return related_dict - - -def related_list(context, data_dict=None): - '''Return a dataset's related items. - - :param id: id or name of the dataset (optional) - :type id: string - :param dataset: dataset dictionary of the dataset (optional) - :type dataset: dictionary - :param type_filter: the type of related item to show (optional, - default: None, show all items) - :type type_filter: string - :param sort: the order to sort the related items in, possible values are - 'view_count_asc', 'view_count_desc', 'created_asc' or 'created_desc' - (optional) - :type sort: string - :param featured: whether or not to restrict the results to only featured - related items (optional, default: False) - :type featured: bool - - :rtype: list of dictionaries - - ''' - model = context['model'] - dataset = data_dict.get('dataset', None) - if not dataset: - dataset = model.Package.get(data_dict.get('id')) - _check_access('related_show', context, data_dict) - related_list = [] - if not dataset: - related_list = model.Session.query(model.Related) - - filter_on_type = data_dict.get('type_filter', None) - if filter_on_type: - related_list = related_list.filter( - model.Related.type == filter_on_type) - - sort = data_dict.get('sort', None) - if sort: - sortables = { - 'view_count_asc': model.Related.view_count.asc, - 'view_count_desc': model.Related.view_count.desc, - 'created_asc': model.Related.created.asc, - 'created_desc': model.Related.created.desc, - } - s = sortables.get(sort, None) - if s: - related_list = related_list.order_by(s()) - - if data_dict.get('featured', False): - related_list = related_list.filter(model.Related.featured == 1) - related_items = related_list.all() - context['sorted'] = True - else: - relateds = model.Related.get_for_dataset(dataset, status='active') - related_items = (r.related for r in relateds) - related_list = model_dictize.related_list_dictize( - related_items, context) - return related_list - - def member_list(context, data_dict=None): '''Return the members of a group. @@ -1143,7 +1057,7 @@ def resource_show(context, data_dict): if resource_dict['id'] == id: break else: - log.error('Could not find resource ' + id) + log.error('Could not find resource %s after all', id) raise NotFound(_('Resource was not found.')) return resource_dict @@ -1198,6 +1112,7 @@ def resource_view_list(context, data_dict): ] return model_dictize.resource_view_list_dictize(resource_views, context) + def resource_status_show(context, data_dict): '''Return the statuses of a resource's tasks. @@ -1207,6 +1122,9 @@ def resource_status_show(context, data_dict): :rtype: list of (status, date_done, traceback, task_status) dictionaries ''' + + _check_access('resource_status_show', context, data_dict) + try: import ckan.lib.celery_app as celery_app except ImportError: @@ -1215,8 +1133,6 @@ def resource_status_show(context, data_dict): model = context['model'] id = _get_or_bust(data_dict, 'id') - _check_access('resource_status_show', context, data_dict) - # needs to be text query as celery tables are not in our model q = _text(""" select status, date_done, traceback, task_status.* @@ -1225,7 +1141,12 @@ def resource_status_show(context, data_dict): and key = 'celery_task_id' where entity_id = :entity_id """) - result = model.Session.connection().execute(q, entity_id=id) + try: + result = model.Session.connection().execute(q, entity_id=id) + except sqlalchemy.exc.ProgrammingError: + # celery tables (celery_taskmeta) may not be created even with celery + # installed, causing ProgrammingError exception. + return {'message': 'queue tables not installed on this instance'} result_list = [_table_dictize(row, context) for row in result] return result_list @@ -1472,8 +1393,11 @@ def user_show(context, data_dict): (optional, default:``False``, limit:50) :type include_datasets: boolean :param include_num_followers: Include the number of followers the user has - (optional, default:``False``) + (optional, default:``False``) :type include_num_followers: boolean + :param include_password_hash: Include the stored password hash + (sysadmin only, optional, default:``False``) + :type include_password_hash: boolean :returns: the details of the user. Includes email_hash, number_of_edits and number_created_packages (which excludes draft or private datasets @@ -1501,24 +1425,29 @@ def user_show(context, data_dict): # include private and draft datasets? requester = context.get('user') + sysadmin = False if requester: + sysadmin = authz.is_sysadmin(requester) requester_looking_at_own_account = requester == user_obj.name - include_private_and_draft_datasets = \ - authz.is_sysadmin(requester) or \ - requester_looking_at_own_account + include_private_and_draft_datasets = ( + sysadmin or requester_looking_at_own_account) else: include_private_and_draft_datasets = False context['count_private_and_draft_datasets'] = \ include_private_and_draft_datasets - user_dict = model_dictize.user_dictize(user_obj, context) + include_password_hash = sysadmin and asbool( + data_dict.get('include_password_hash', False)) + + user_dict = model_dictize.user_dictize( + user_obj, context, include_password_hash) if context.get('return_minimal'): log.warning('Use of the "return_minimal" in user_show is ' 'deprecated.') return user_dict - if data_dict.get('include_datasets', False): + if asbool(data_dict.get('include_datasets', False)): user_dict['datasets'] = [] fq = "+creator_user_id:{0}".format(user_dict['id']) @@ -1536,7 +1465,7 @@ def user_show(context, data_dict): data_dict=search_dict) \ .get('results') - if data_dict.get('include_num_followers', False): + if asbool(data_dict.get('include_num_followers', False)): user_dict['num_followers'] = logic.get_action('user_follower_count')( {'model': model, 'session': model.Session}, {'id': user_dict['id']}) @@ -1761,7 +1690,8 @@ def package_search(context, data_dict): documentation, this is a comma-separated string of field names and sort-orderings. :type sort: string - :param rows: the number of matching rows to return. + :param rows: the number of matching rows to return. There is a hard limit + of 1000 datasets per query. :type rows: int :param start: the offset in the complete result for where the set of returned datasets should begin. @@ -1783,6 +1713,10 @@ def package_search(context, data_dict): sysadmin will be returned all draft datasets. Optional, the default is ``False``. :type include_drafts: boolean + :param use_default_schema: use default package schema instead of + a custom schema defined with an IDatasetForm plugin (default: False) + :type use_default_schema: bool + The following advanced Solr parameters are supported as well. Note that some of these are only available on particular Solr versions. See Solr's @@ -1822,9 +1756,6 @@ def package_search(context, data_dict): "count", "display_name" and "name" entries. The display_name is a form of the name that can be used in titles. :type search_facets: nested dict of dicts. - :param use_default_schema: use default package schema instead of - a custom schema defined with an IDatasetForm plugin (default: False) - :type use_default_schema: bool An example result: :: @@ -1886,7 +1817,11 @@ def package_search(context, data_dict): results = [] if not abort: - data_source = 'data_dict' if data_dict.get('use_default_schema') else 'validated_data_dict' + if asbool(data_dict.get('use_default_schema')): + data_source = 'data_dict' + else: + data_source = 'validated_data_dict' + data_dict.pop('use_default_schema', None) # return a list of package ids data_dict['fl'] = 'id {0}'.format(data_source) @@ -1926,19 +1861,8 @@ def package_search(context, data_dict): for package in query.results: # get the package object - package, package_dict = package['id'], package.get(data_source) - pkg_query = session.query(model.Package)\ - .filter(model.Package.id == package)\ - .filter(model.Package.state.in_((u'active', u'draft'))) - pkg = pkg_query.first() - - # if the index has got a package that is not in ckan then - # ignore it. - if not pkg: - log.warning('package %s in index but not in database' - % package) - continue - # use data in search index if there + package_dict = package.get(data_source) + ## use data in search index if there if package_dict: # the package_dict still needs translating when being viewed package_dict = json.loads(package_dict) @@ -1948,7 +1872,8 @@ def package_search(context, data_dict): package_dict = item.before_view(package_dict) results.append(package_dict) else: - results.append(model_dictize.package_dictize(pkg, context)) + log.error('No package_dict is coming from solr for package ' + 'id %s', package['id']) count = query.count facets = query.facets @@ -1964,6 +1889,17 @@ def package_search(context, data_dict): 'sort': data_dict['sort'] } + # create a lookup table of group name to title for all the groups and + # organizations in the current search's facets. + group_names = [] + for field_name in ('groups', 'organization'): + group_names.extend(facets.get(field_name, {}).keys()) + + groups = session.query(model.Group.name, model.Group.title) \ + .filter(model.Group.name.in_(group_names)) \ + .all() + group_titles_by_name = dict(groups) + # Transform facets into a more useful data structure. restructured_facets = {} for key, value in facets.items(): @@ -1975,11 +1911,9 @@ def package_search(context, data_dict): new_facet_dict = {} new_facet_dict['name'] = key_ if key in ('groups', 'organization'): - group = model.Group.get(key_) - if group: - new_facet_dict['display_name'] = group.display_name - else: - new_facet_dict['display_name'] = key_ + display_name = group_titles_by_name.get(key_, key_) + display_name = display_name if display_name and display_name.strip() else key_ + new_facet_dict['display_name'] = display_name elif key == 'license_id': license = model.Package.get_license_register().get(key_) if license: @@ -3508,8 +3442,8 @@ def config_option_show(context, data_dict): :py:func:`~ckan.logic.action.get.config_option_list`), which can be updated with the :py:func:`~ckan.logic.action.update.config_option_update` action. - :param id: The configuration option key - :type id: string + :param key: The configuration option key + :type key: string :returns: The value of the config option from either the system_info table or ini file. diff --git a/ckan/logic/action/update.py b/ckan/logic/action/update.py index 6e6cc3e46bb..cb580049246 100644 --- a/ckan/logic/action/update.py +++ b/ckan/logic/action/update.py @@ -39,72 +39,6 @@ _get_or_bust = logic.get_or_bust -def related_update(context, data_dict): - '''Update a related item. - - You must be the owner of a related item to update it. - - For further parameters see - :py:func:`~ckan.logic.action.create.related_create`. - - :param id: the id of the related item to update - :type id: string - - :returns: the updated related item - :rtype: dictionary - - ''' - model = context['model'] - id = _get_or_bust(data_dict, "id") - - session = context['session'] - schema = context.get('schema') or schema_.default_update_related_schema() - - related = model.Related.get(id) - context["related"] = related - - if not related: - log.error('Could not find related ' + id) - raise NotFound(_('Item was not found.')) - - _check_access('related_update', context, data_dict) - data, errors = _validate(data_dict, schema, context) - if errors: - model.Session.rollback() - raise ValidationError(errors) - - related = model_save.related_dict_save(data, context) - - dataset_dict = None - if 'package' in context: - dataset = context['package'] - dataset_dict = ckan.lib.dictization.table_dictize(dataset, context) - - related_dict = model_dictize.related_dictize(related, context) - activity_dict = { - 'user_id': context['user'], - 'object_id': related.id, - 'activity_type': 'changed related item', - } - activity_dict['data'] = { - 'related': related_dict, - 'dataset': dataset_dict, - } - activity_create_context = { - 'model': model, - 'user': context['user'], - 'defer_commit': True, - 'ignore_auth': True, - 'session': session - } - - _get_action('activity_create')(activity_create_context, activity_dict) - - if not context.get('defer_commit'): - model.repo.commit() - return model_dictize.related_dictize(related, context) - - def resource_update(context, data_dict): '''Update a resource. @@ -129,7 +63,7 @@ def resource_update(context, data_dict): context["resource"] = resource if not resource: - log.error('Could not find resource ' + id) + log.debug('Could not find resource %s', id) raise NotFound(_('Resource was not found.')) _check_access('resource_update', context, data_dict) @@ -143,7 +77,7 @@ def resource_update(context, data_dict): if p['id'] == id: break else: - log.error('Could not find resource ' + id) + log.error('Could not find resource %s after all', id) raise NotFound(_('Resource was not found.')) for plugin in plugins.PluginImplementations(plugins.IResourceController): @@ -699,6 +633,10 @@ def user_update(context, data_dict): session.rollback() raise ValidationError(errors) + # user schema prevents non-sysadmins from providing password_hash + if 'password_hash' in data: + data['_password'] = data.pop('password_hash') + user = model_save.user_dict_save(data, context) activity_dict = { diff --git a/ckan/logic/auth/__init__.py b/ckan/logic/auth/__init__.py index 8b0883739a0..eb14562921c 100644 --- a/ckan/logic/auth/__init__.py +++ b/ckan/logic/auth/__init__.py @@ -26,10 +26,6 @@ def _get_object(context, data_dict, name, class_name): return obj -def get_related_object(context, data_dict=None): - return _get_object(context, data_dict, 'related', 'Related') - - def get_package_object(context, data_dict=None): return _get_object(context, data_dict, 'package', 'Package') diff --git a/ckan/logic/auth/create.py b/ckan/logic/auth/create.py index 31f67c35907..ee34afa43a0 100644 --- a/ckan/logic/auth/create.py +++ b/ckan/logic/auth/create.py @@ -43,24 +43,6 @@ def file_upload(context, data_dict=None): return {'success': False, 'msg': _('User %s not authorized to create packages') % user} return {'success': True} -def related_create(context, data_dict=None): - '''Users must be logged-in to create related items. - - To create a featured item the user must be a sysadmin. - ''' - model = context['model'] - user = context['user'] - userobj = model.User.get( user ) - - if userobj: - if data_dict.get('featured', 0) != 0: - return {'success': False, - 'msg': _('You must be a sysadmin to create a featured ' - 'related item')} - return {'success': True} - - return {'success': False, 'msg': _('You must be logged in to add a related item')} - def resource_create(context, data_dict): model = context['model'] diff --git a/ckan/logic/auth/delete.py b/ckan/logic/auth/delete.py index 1c94918c394..ca4f2463bff 100644 --- a/ckan/logic/auth/delete.py +++ b/ckan/logic/auth/delete.py @@ -1,6 +1,6 @@ import ckan.logic as logic import ckan.authz as authz -from ckan.logic.auth import get_group_object, get_related_object +from ckan.logic.auth import get_group_object from ckan.logic.auth import get_resource_object import ckan.logic.auth.create as _auth_create import ckan.logic.auth.update as _auth_update @@ -17,6 +17,10 @@ def package_delete(context, data_dict): # are essentially changing the state field return _auth_update.package_update(context, data_dict) +def dataset_purge(context, data_dict): + # Only sysadmins are authorized to purge datasets + return {'success': False} + def resource_delete(context, data_dict): model = context['model'] user = context.get('user') @@ -57,30 +61,6 @@ def resource_view_clear(context, data_dict): # sysadmins only return {'success': False} - -def related_delete(context, data_dict): - model = context['model'] - user = context['user'] - if not user: - return {'success': False, 'msg': _('Only the owner can delete a related item')} - - related = get_related_object(context, data_dict) - userobj = model.User.get( user ) - - if related.datasets: - package = related.datasets[0] - - pkg_dict = { 'id': package.id } - authorized = package_delete(context, pkg_dict).get('success') - if authorized: - return {'success': True} - - if not userobj or userobj.id != related.owner_id: - return {'success': False, 'msg': _('Only the owner can delete a related item')} - - return {'success': True} - - def package_relationship_delete(context, data_dict): user = context['user'] relationship = context['relationship'] diff --git a/ckan/logic/auth/get.py b/ckan/logic/auth/get.py index ef3748fc046..5d3745cc755 100644 --- a/ckan/logic/auth/get.py +++ b/ckan/logic/auth/get.py @@ -2,7 +2,7 @@ import ckan.authz as authz from ckan.lib.base import _ from ckan.logic.auth import (get_package_object, get_group_object, - get_resource_object, get_related_object) + get_resource_object) def sysadmin(context, data_dict): @@ -120,9 +120,6 @@ def package_show(context, data_dict): else: return {'success': True} -def related_show(context, data_dict=None): - return {'success': True} - def resource_show(context, data_dict): model = context['model'] diff --git a/ckan/logic/auth/update.py b/ckan/logic/auth/update.py index a5f4a0e24f1..bee4e1d7f38 100644 --- a/ckan/logic/auth/update.py +++ b/ckan/logic/auth/update.py @@ -129,28 +129,6 @@ def organization_update(context, data_dict): return {'success': True} -def related_update(context, data_dict): - model = context['model'] - user = context['user'] - if not user: - return {'success': False, - 'msg': _('Only the owner can update a related item')} - - related = logic_auth.get_related_object(context, data_dict) - userobj = model.User.get(user) - if not userobj or userobj.id != related.owner_id: - return {'success': False, - 'msg': _('Only the owner can update a related item')} - - # Only sysadmins can change the featured field. - if ('featured' in data_dict and data_dict['featured'] != related.featured): - return {'success': False, - 'msg': _('You must be a sysadmin to change a related item\'s ' - 'featured field.')} - - return {'success': True} - - def group_change_state(context, data_dict): user = context['user'] group = logic_auth.get_group_object(context, data_dict) diff --git a/ckan/logic/schema.py b/ckan/logic/schema.py index 4bf3a6ba6a2..c3145dd8054 100644 --- a/ckan/logic/schema.py +++ b/ckan/logic/schema.py @@ -90,15 +90,13 @@ def default_resource_schema(): 'url_type': [ignore_missing, unicode], 'mimetype': [ignore_missing, unicode], 'mimetype_inner': [ignore_missing, unicode], - 'webstore_url': [ignore_missing, unicode], 'cache_url': [ignore_missing, unicode], 'size': [ignore_missing, int_validator], 'created': [ignore_missing, isodate], 'last_modified': [ignore_missing, isodate], 'cache_last_updated': [ignore_missing, isodate], - 'webstore_last_updated': [ignore_missing, isodate], 'tracking_summary': [ignore_missing], - 'datastore_active': [ignore], + 'datastore_active': [ignore_missing], '__extras': [ignore_missing, extras_unicode_convert, keep_extras], } @@ -215,18 +213,15 @@ def default_show_package_schema(): 'position': [not_empty], 'last_modified': [ckan.lib.navl.validators.ignore_missing], 'cache_last_updated': [ckan.lib.navl.validators.ignore_missing], - 'webstore_last_updated': [ckan.lib.navl.validators.ignore_missing], 'revision_id': [], 'package_id': [], 'cache_last_updated': [], - 'webstore_last_updated': [], 'size': [], 'state': [], 'last_modified': [], 'mimetype': [], 'cache_url': [], 'name': [], - 'webstore_url': [], 'mimetype_inner': [], 'resource_type': [], 'url_type': [], @@ -348,31 +343,6 @@ def default_show_group_schema(): return schema - -def default_related_schema(): - schema = { - 'id': [ignore_missing, unicode], - 'title': [not_empty, unicode], - 'description': [ignore_missing, unicode], - 'type': [not_empty, unicode], - 'image_url': [ignore_missing, unicode, url_validator], - 'url': [ignore_missing, unicode, url_validator], - 'owner_id': [not_empty, unicode], - 'created': [ignore], - 'featured': [ignore_missing, int], - } - return schema - - -def default_update_related_schema(): - schema = default_related_schema() - schema['id'] = [not_empty, unicode] - schema['title'] = [ignore_missing, unicode] - schema['type'] = [ignore_missing, unicode] - schema['owner_id'] = [ignore_missing, unicode] - return schema - - def default_extras_schema(): schema = { @@ -430,6 +400,7 @@ def default_user_schema(): 'name': [not_empty, name_validator, user_name_validator, unicode], 'fullname': [ignore_missing, unicode], 'password': [user_password_validator, user_password_not_empty, ignore_missing, unicode], + 'password_hash': [ignore_missing, ignore_not_sysadmin, unicode], 'email': [not_empty, unicode], 'about': [ignore_missing, user_about_validator, unicode], 'created': [ignore], diff --git a/ckan/logic/validators.py b/ckan/logic/validators.py index 4788849ac46..f1321d7e007 100644 --- a/ckan/logic/validators.py +++ b/ckan/logic/validators.py @@ -241,20 +241,6 @@ def group_id_exists(group_id, context): raise Invalid('%s: %s' % (_('Not found'), _('Group'))) return group_id - -def related_id_exists(related_id, context): - '''Raises Invalid if the given related_id does not exist in the model - given in the context, otherwise returns the given related_id. - - ''' - model = context['model'] - session = context['session'] - - result = session.query(model.Related).get(related_id) - if not result: - raise Invalid('%s: %s' % (_('Not found'), _('Related'))) - return related_id - def group_id_or_name_exists(reference, context): ''' Raises Invalid if a group identified by the name or id cannot be found. @@ -278,15 +264,6 @@ def activity_type_exists(activity_type): else: raise Invalid('%s: %s' % (_('Not found'), _('Activity type'))) -def resource_id_exists(value, context): - - model = context['model'] - session = context['session'] - - result = session.query(model.Resource).get(value) - if not result: - raise Invalid('%s: %s' % (_('Not found'), _('Resource'))) - return value # A dictionary mapping activity_type values from activity dicts to functions # for validating the object_id values from those same activity dicts. @@ -305,9 +282,6 @@ def resource_id_exists(value, context): 'changed organization' : group_id_exists, 'deleted organization' : group_id_exists, 'follow group' : group_id_exists, - 'new related item': related_id_exists, - 'deleted related item': related_id_exists, - 'changed related item': related_id_exists, } def object_id_validator(key, activity_dict, errors, context): @@ -619,6 +593,11 @@ def user_password_not_empty(key, data, errors, context): '''Only check if password is present if the user is created via action API. If not, user_both_passwords_entered will handle the validation''' + # sysadmin may provide password_hash directly for importing users + if (data.get(('password_hash',), missing) is not missing and + authz.is_sysadmin(context.get('user'))): + return + if not ('password1',) in data and not ('password2',) in data: password = data.get(('password',),None) if not password: diff --git a/ckan/migration/versions/079_resource_revision_index.py b/ckan/migration/versions/079_resource_revision_index.py new file mode 100644 index 00000000000..70d985bfce0 --- /dev/null +++ b/ckan/migration/versions/079_resource_revision_index.py @@ -0,0 +1,7 @@ +def upgrade(migrate_engine): + migrate_engine.execute( + ''' + CREATE INDEX idx_resource_continuity_id + ON resource_revision (continuity_id); + ''' + ) diff --git a/ckan/migration/versions/080_continuity_id_indexes.py b/ckan/migration/versions/080_continuity_id_indexes.py new file mode 100644 index 00000000000..1b223ecf47d --- /dev/null +++ b/ckan/migration/versions/080_continuity_id_indexes.py @@ -0,0 +1,13 @@ +def upgrade(migrate_engine): + migrate_engine.execute( + ''' + CREATE INDEX idx_member_continuity_id + ON member_revision (continuity_id); + CREATE INDEX idx_package_tag_continuity_id + ON package_tag_revision (continuity_id); + CREATE INDEX idx_package_continuity_id + ON package_revision (continuity_id); + CREATE INDEX idx_package_extra_continuity_id + ON package_extra_revision (continuity_id); + ''' + ) diff --git a/ckan/migration/versions/081_set_datastore_active.py b/ckan/migration/versions/081_set_datastore_active.py new file mode 100644 index 00000000000..1ea5ddd61f9 --- /dev/null +++ b/ckan/migration/versions/081_set_datastore_active.py @@ -0,0 +1,65 @@ +import json +from sqlalchemy import create_engine +from sqlalchemy.sql import text +from sqlalchemy.exc import SQLAlchemyError +from pylons import config + + +def upgrade(migrate_engine): + + datastore_connection_url = config.get( + 'ckan.datastore.read_url', config.get('ckan.datastore.write_url')) + + if not datastore_connection_url: + return + + try: + datastore_engine = create_engine(datastore_connection_url) + except SQLAlchemyError: + return + + try: + datastore_connection = datastore_engine.connect() + except SQLAlchemyError: + datastore_engine.dispose() + return + + try: + + resources_in_datastore = datastore_connection.execute(''' + SELECT table_name + FROM information_schema.tables + WHERE table_schema = 'public' + AND table_name != '_table_metadata' + ''') + + if resources_in_datastore.rowcount: + + resources = migrate_engine.execute(''' + SELECT id, extras + FROM resource + WHERE id IN ({0}) AND extras IS NOT NULL + '''.format( + ','.join(['\'{0}\''.format(_id[0]) + for _id + in resources_in_datastore]) + ) + ) + if resources.rowcount: + params = [] + for resource in resources: + new_extras = json.loads(resource[1]) + new_extras.update({'datastore_active': True}) + params.append( + {'id': resource[0], + 'extras': json.dumps(new_extras)}) + + migrate_engine.execute( + text(''' + UPDATE resource + SET extras = :extras + WHERE id = :id'''), + params) + finally: + datastore_connection.close() + datastore_engine.dispose() diff --git a/ckan/migration/versions/082_create_index_creator_user_id.py b/ckan/migration/versions/082_create_index_creator_user_id.py new file mode 100644 index 00000000000..18bc9501822 --- /dev/null +++ b/ckan/migration/versions/082_create_index_creator_user_id.py @@ -0,0 +1,7 @@ +def upgrade(migrate_engine): + migrate_engine.execute( + ''' + CREATE INDEX idx_package_creator_user_id ON package + USING BTREE (creator_user_id); + ''' + ) diff --git a/ckan/migration/versions/083_remove_related_items.py b/ckan/migration/versions/083_remove_related_items.py new file mode 100644 index 00000000000..befb3b13d6c --- /dev/null +++ b/ckan/migration/versions/083_remove_related_items.py @@ -0,0 +1,27 @@ + +WARNING = """ + +WARNING: The 'related' tables were not deleted as they currently contain data. +Once you have archived the existing data or migrated the data to +ckanext-showcase, you can safely delete the 'related' and 'related_dataset' +tables using: + + psql ckan_default -c 'BEGIN; DROP TABLE related_dataset; \\ + DROP TABLE related; COMMIT;' + +""" + + +def upgrade(migrate_engine): + existing = migrate_engine.execute("SELECT COUNT(*) FROM related;")\ + .fetchone() + if existing[0] > 0: + print WARNING + return + + migrate_engine.execute(''' +BEGIN; +DROP TABLE related_dataset; +DROP TABLE related; +COMMIT; + ''') diff --git a/ckan/migration/versions/084_add_metadata_created.py b/ckan/migration/versions/084_add_metadata_created.py new file mode 100644 index 00000000000..c7ba2ca61a1 --- /dev/null +++ b/ckan/migration/versions/084_add_metadata_created.py @@ -0,0 +1,14 @@ +def upgrade(migrate_engine): + migrate_engine.execute(''' + ALTER TABLE package_revision + ADD COLUMN metadata_created timestamp without time zone; + ALTER TABLE package + ADD COLUMN metadata_created timestamp without time zone; + + UPDATE package SET metadata_created= + (SELECT revision_timestamp + FROM package_revision + WHERE id=package.id + ORDER BY revision_timestamp ASC + LIMIT 1); + ''') diff --git a/ckan/model/__init__.py b/ckan/model/__init__.py index 6bb938b4d79..3a4b8f7582b 100644 --- a/ckan/model/__init__.py +++ b/ckan/model/__init__.py @@ -86,12 +86,6 @@ MIN_RATING, MAX_RATING, ) -from related import ( - Related, - RelatedDataset, - related_dataset_table, - related_table, -) from package_relationship import ( PackageRelationship, package_relationship_table, diff --git a/ckan/model/domain_object.py b/ckan/model/domain_object.py index 4237d77aea7..ac1b39aba43 100644 --- a/ckan/model/domain_object.py +++ b/ckan/model/domain_object.py @@ -36,7 +36,7 @@ def __init__(self, **kwargs): @classmethod def count(cls): - cls.Session.query(cls).count() + return cls.Session.query(cls).count() @classmethod def by_name(cls, name, autoflush=True): @@ -76,15 +76,12 @@ def remove(self): self.Session.remove() def delete(self): + # stateful objects have this method overridden - see + # vmd.base.StatefulObjectMixin self.Session.delete(self) def purge(self): self.Session().autoflush = False - if hasattr(self, '__revisioned__'): # only for versioned objects ... - # this actually should auto occur due to cascade relationships but - # ... - for rev in self.all_revisions: - self.Session.delete(rev) self.Session.delete(self) def as_dict(self): diff --git a/ckan/model/group.py b/ckan/model/group.py index 0882e9e245b..b1046f50b22 100644 --- a/ckan/model/group.py +++ b/ckan/model/group.py @@ -80,22 +80,14 @@ def __init__(self, group=None, table_id=None, group_id=None, @classmethod def get(cls, reference): '''Returns a group object referenced by its id or name.''' - query = meta.Session.query(cls).filter(cls.id == reference) - member = query.first() + if not reference: + return None + + member = meta.Session.query(cls).get(reference) if member is None: member = cls.by_name(reference) return member - def get_related(self, type): - """ TODO: Determine if this is useful - Get all objects that are members of the group of the specified - type. - - Should the type be used to get table_name or should we use the - one in the constructor - """ - pass - def related_packages(self): # TODO do we want to return all related packages or certain ones? return meta.Session.query(_package.Package).filter_by( @@ -104,11 +96,11 @@ def related_packages(self): def __unicode__(self): # refer to objects by name, not ID, to help debugging if self.table_name == 'package': - table_info = 'package=%s' % meta.Session.query(_package.Package).\ - get(self.table_id).name + pkg = meta.Session.query(_package.Package).get(self.table_id) + table_info = 'package=%s' % pkg.name if pkg else 'None' elif self.table_name == 'group': - table_info = 'group=%s' % meta.Session.query(Group).\ - get(self.table_id).name + group = meta.Session.query(Group).get(self.table_id) + table_info = 'group=%s' % group.name if group else 'None' else: table_info = 'table_name=%s table_id=%s' % (self.table_name, self.table_id) diff --git a/ckan/model/modification.py b/ckan/model/modification.py index c06c72902b9..a7be9c37f51 100644 --- a/ckan/model/modification.py +++ b/ckan/model/modification.py @@ -88,7 +88,7 @@ def notify(self, entity, operation): log.exception(search_error) # Reraise, since it's pretty crucial to ckan if it can't index # a dataset - raise search_error + raise except Exception, ex: log.exception(ex) # Don't reraise other exceptions since they are generally of @@ -103,7 +103,7 @@ def notify_after_commit(self, entity, operation): log.exception(search_error) # Reraise, since it's pretty crucial to ckan if it can't index # a dataset - raise search_error + raise except Exception, ex: log.exception(ex) # Don't reraise other exceptions since they are generally of diff --git a/ckan/model/package.py b/ckan/model/package.py index 9bd7d695c6e..c81f12ce640 100644 --- a/ckan/model/package.py +++ b/ckan/model/package.py @@ -47,6 +47,7 @@ Column('type', types.UnicodeText, default=u'dataset'), Column('owner_org', types.UnicodeText), Column('creator_user_id', types.UnicodeText), + Column('metadata_created', types.DateTime, default=datetime.datetime.utcnow), Column('metadata_modified', types.DateTime, default=datetime.datetime.utcnow), Column('private', types.Boolean, default=False), ) @@ -76,8 +77,10 @@ def search_by_name(cls, text_query): @classmethod def get(cls, reference): '''Returns a package object referenced by its id or name.''' - query = meta.Session.query(cls).filter(cls.id==reference) - pkg = query.first() + if not reference: + return None + + pkg = meta.Session.query(cls).get(reference) if pkg == None: pkg = cls.by_name(reference) return pkg @@ -481,16 +484,6 @@ def get_groups(self, group_type=None, capacity=None): groups = [g[0] for g in groupcaps if g[1] == capacity] return groups - @property - def metadata_created(self): - import ckan.model as model - q = meta.Session.query(model.PackageRevision.revision_timestamp)\ - .filter(model.PackageRevision.id == self.id)\ - .order_by(model.PackageRevision.revision_timestamp.asc()) - ts = q.first() - if ts: - return ts[0] - @staticmethod def get_fields(core_only=False, fields_to_ignore=None): '''Returns a list of the properties of a package. diff --git a/ckan/model/related.py b/ckan/model/related.py deleted file mode 100644 index ad95b7f4d9d..00000000000 --- a/ckan/model/related.py +++ /dev/null @@ -1,93 +0,0 @@ -import datetime - -import sqlalchemy as sa -from sqlalchemy import orm -from sqlalchemy import types, Column, Table, ForeignKey, and_, func - -import meta -import domain_object -import types as _types -import package as _package - -__all__ = ['Related', 'RelatedDataset', 'related_dataset_table', - 'related_table'] - -related_table = sa.Table('related',meta.metadata, - sa.Column('id', types.UnicodeText, primary_key=True, default=_types.make_uuid), - sa.Column('type', types.UnicodeText, default=u'idea'), - sa.Column('title', types.UnicodeText), - sa.Column('description', types.UnicodeText), - sa.Column('image_url', types.UnicodeText), - sa.Column('url', types.UnicodeText), - sa.Column('created', types.DateTime, default=datetime.datetime.now), - sa.Column('owner_id', types.UnicodeText), - sa.Column('view_count', types.Integer, default=0), - sa.Column('featured', types.Integer, default=0) -) - -related_dataset_table = Table('related_dataset', meta.metadata, - Column('id', types.UnicodeText, primary_key=True, default=_types.make_uuid), - Column('dataset_id', types.UnicodeText, ForeignKey('package.id'), - nullable=False), - Column('related_id', types.UnicodeText, ForeignKey('related.id'), nullable=False), - Column('status', types.UnicodeText, default=u'active'), - ) - -class RelatedDataset(domain_object.DomainObject): - pass - -class Related(domain_object.DomainObject): - - @classmethod - def get(cls, id): - return meta.Session.query(Related).filter(Related.id == id).first() - - @classmethod - def get_for_dataset(cls, package, status=u'active'): - """ - Allows the caller to get non-active state relations between - the dataset and related, using the RelatedDataset object - """ - query = meta.Session.query(RelatedDataset).\ - filter(RelatedDataset.dataset_id==package.id).\ - filter(RelatedDataset.status==status).all() - return query - - def deactivate(self, package): - related_ds = meta.Session.query(RelatedDataset).\ - filter(RelatedDataset.dataset_id==package.id).\ - filter(RelatedDataset.status=='active').first() - if related_ds: - related_ds.status = 'inactive' - meta.Session.commit() - - -# We have avoided using SQLAlchemy association objects see -# http://bit.ly/sqlalchemy_association_object by only having the -# relation be for 'active' related objects. For non-active states -# the caller will have to use get_for_dataset() in Related. -meta.mapper(RelatedDataset, related_dataset_table, properties={ - 'related': orm.relation(Related), - 'dataset': orm.relation(_package.Package) -}) -meta.mapper(Related, related_table, properties={ -'datasets': orm.relation(_package.Package, - backref=orm.backref('related'), - secondary=related_dataset_table, - secondaryjoin=and_(related_dataset_table.c.dataset_id==_package.Package.id, - RelatedDataset.status=='active')) -}) - -def _related_count(dataset): - """ - Returns the *number* of (active) related items for the given dataset. - """ - return meta.Session.query(func.count(RelatedDataset.id)).\ - filter(RelatedDataset.dataset_id==dataset.id).\ - filter(RelatedDataset.status=='active').\ - scalar() - -if hasattr(_package.Package, 'related_count'): - raise Exception, 'Unable to attach `related_count` to Package class.' - -_package.Package.related_count = property(_related_count) diff --git a/ckan/model/resource.py b/ckan/model/resource.py index ceca568898a..33358afca33 100644 --- a/ckan/model/resource.py +++ b/ckan/model/resource.py @@ -26,8 +26,7 @@ CORE_RESOURCE_COLUMNS = ['url', 'format', 'description', 'hash', 'name', 'resource_type', 'mimetype', 'mimetype_inner', 'size', 'created', 'last_modified', 'cache_url', - 'cache_last_updated', 'webstore_url', - 'webstore_last_updated', 'url_type'] + 'cache_last_updated', 'url_type'] ##formally package_resource resource_table = Table( @@ -51,8 +50,6 @@ Column('last_modified', types.DateTime), Column('cache_url', types.UnicodeText), Column('cache_last_updated', types.DateTime), - Column('webstore_url', types.UnicodeText), - Column('webstore_last_updated', types.DateTime), Column('url_type', types.UnicodeText), Column('extras', _types.JsonDictType), ) @@ -111,8 +108,10 @@ def get_package_id(self): @classmethod def get(cls, reference): '''Returns a resource object referenced by its name or id.''' - query = meta.Session.query(Resource).filter(Resource.id == reference) - resource = query.first() + if not reference: + return None + + resource = meta.Session.query(cls).get(reference) if resource is None: resource = cls.by_name(reference) return resource diff --git a/ckan/model/resource_view.py b/ckan/model/resource_view.py index a216c7813b9..bf134f15495 100644 --- a/ckan/model/resource_view.py +++ b/ckan/model/resource_view.py @@ -24,8 +24,12 @@ class ResourceView(domain_object.DomainObject): @classmethod def get(cls, reference): '''Returns a ResourceView object referenced by its id.''' - query = meta.Session.query(cls).filter(cls.id == reference) - return query.first() + if not reference: + return None + + view = meta.Session.query(cls).get(reference) + + return view @classmethod def get_columns(cls): diff --git a/ckan/model/task_status.py b/ckan/model/task_status.py index 2daad424f71..07310720cca 100644 --- a/ckan/model/task_status.py +++ b/ckan/model/task_status.py @@ -24,7 +24,10 @@ class TaskStatus(domain_object.DomainObject): @classmethod def get(cls, reference): '''Returns a task status object referenced by its id.''' - query = meta.Session.query(cls).filter(cls.id==reference) - return query.first() + if not reference: + return None + + task = meta.Session.query(cls).get(reference) + return task meta.mapper(TaskStatus, task_status_table) diff --git a/ckan/new_authz.py b/ckan/new_authz.py deleted file mode 100644 index 7ea3f0f1194..00000000000 --- a/ckan/new_authz.py +++ /dev/null @@ -1,8 +0,0 @@ -import warnings - -warnings.warn( - "ckan.new_authz has been renamed to ckan.authz. " - "The ckan.new_authz module will be removed in a future release.", - FutureWarning) - -from ckan.authz import * diff --git a/ckan/new_tests.py b/ckan/new_tests.py deleted file mode 100644 index efff232df02..00000000000 --- a/ckan/new_tests.py +++ /dev/null @@ -1,26 +0,0 @@ -# FIXME: remove this for ckan 2.5 -import sys - - -class _NewTestsBackwardsCompat(object): - """ - Provide (temporarily) backward compatibility for extensions that - pre-date the move of tests from ckan.new_tests to ckan.tests. - """ - - # things our object-pretending-to-be-a-module need: - __name__ = __name__ - - def __getattr__(self, name): - import ckan.tests - import logging - value = getattr(ckan.tests, name) - log = logging.getLogger('ckan.tests') - log.warn( - "ckan.new_tests has been renamed to ckan.tests." - "In the next release tests will only be available " - "from ckan.tests.") - return value - -# https://mail.python.org/pipermail/python-ideas/2012-May/014969.html -sys.modules[__name__] = _NewTestsBackwardsCompat() diff --git a/ckan/pastertemplates/__init__.py b/ckan/pastertemplates/__init__.py index ce5eb5e5741..8277b33e2b3 100644 --- a/ckan/pastertemplates/__init__.py +++ b/ckan/pastertemplates/__init__.py @@ -51,6 +51,11 @@ class CkanextTemplate(Template): def check_vars(self, vars, cmd): vars = Template.check_vars(self, vars, cmd) + # workaround for a paster issue https://github.com/ckan/ckan/issues/2636 + # this is only used from a short-lived paster command + reload(sys) + sys.setdefaultencoding('utf-8') + if not vars['project'].startswith('ckanext-'): print "\nError: Project name must start with 'ckanext-'" sys.exit(1) @@ -63,7 +68,7 @@ def check_vars(self, vars, cmd): keywords = [keyword for keyword in keywords if keyword not in ('ckan', 'CKAN')] keywords.insert(0, 'CKAN') - vars['keywords'] = ' '.join(keywords) + vars['keywords'] = u' '.join(keywords) # For an extension named ckanext-example we want a plugin class # named ExamplePlugin. diff --git a/ckan/pastertemplates/template/+dot+travis.yml_tmpl b/ckan/pastertemplates/template/+dot+travis.yml_tmpl index 1cc24d6ebc2..536ae829969 100644 --- a/ckan/pastertemplates/template/+dot+travis.yml_tmpl +++ b/ckan/pastertemplates/template/+dot+travis.yml_tmpl @@ -1,4 +1,5 @@ language: python +sudo: required python: - "2.6" - "2.7" diff --git a/ckan/pastertemplates/template/MANIFEST.in_tmpl b/ckan/pastertemplates/template/MANIFEST.in_tmpl index a32b0e03e87..dc63f8f739d 100644 --- a/ckan/pastertemplates/template/MANIFEST.in_tmpl +++ b/ckan/pastertemplates/template/MANIFEST.in_tmpl @@ -1,2 +1,2 @@ include README.rst -recursive-include ckanext/{{ project_shortname }} *.html *.json *.js *.less *.css +recursive-include ckanext/{{ project_shortname }} *.html *.json *.js *.less *.css *.mo diff --git a/ckan/pastertemplates/template/bin/travis-build.bash_tmpl b/ckan/pastertemplates/template/bin/travis-build.bash_tmpl index 1d996170989..44d0531e4d6 100755 --- a/ckan/pastertemplates/template/bin/travis-build.bash_tmpl +++ b/ckan/pastertemplates/template/bin/travis-build.bash_tmpl @@ -10,7 +10,9 @@ sudo apt-get install postgresql-$PGVERSION solr-jetty libcommons-fileupload-java echo "Installing CKAN and its Python dependencies..." git clone https://github.com/ckan/ckan cd ckan -git checkout release-v2.2 +export latest_ckan_release_branch=`git branch --all | grep remotes/origin/release-v | sort -r | sed 's/remotes\/origin\///g' | head -n 1` +echo "CKAN branch: $latest_ckan_release_branch" +git checkout $latest_ckan_release_branch python setup.py develop pip install -r requirements.txt --allow-all-external pip install -r dev-requirements.txt --allow-all-external @@ -25,7 +27,7 @@ cd ckan paster db init -c test-core.ini cd - -echo "Installing ckanext-{{ project }} and its requirements..." +echo "Installing {{ project }} and its requirements..." python setup.py develop pip install -r dev-requirements.txt diff --git a/ckan/pastertemplates/template/setup.cfg_tmpl b/ckan/pastertemplates/template/setup.cfg_tmpl new file mode 100644 index 00000000000..7b6b145410d --- /dev/null +++ b/ckan/pastertemplates/template/setup.cfg_tmpl @@ -0,0 +1,21 @@ +[extract_messages] +keywords = translate isPlural +add_comments = TRANSLATORS: +output_file = i18n/ckanext-{{ project_shortname }}.pot +width = 80 + +[init_catalog] +domain = ckanext-{{ project_shortname }} +input_file = i18n/ckanext-{{ project_shortname }}.pot +output_dir = i18n + +[update_catalog] +domain = ckanext-{{ project_shortname }} +input_file = i18n/ckanext-{{ project_shortname }}.pot +output_dir = i18n +previous = true + +[compile_catalog] +domain = ckanext-{{ project_shortname }} +directory = i18n +statistics = true diff --git a/ckan/pastertemplates/template/setup.py_tmpl b/ckan/pastertemplates/template/setup.py_tmpl index e1bc849280b..921035fefd2 100644 --- a/ckan/pastertemplates/template/setup.py_tmpl +++ b/ckan/pastertemplates/template/setup.py_tmpl @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- from setuptools import setup, find_packages # Always prefer setuptools over distutils from codecs import open # To use a consistent encoding from os import path @@ -53,6 +54,7 @@ setup( # You can just specify the packages manually here if your project is # simple. Or you can use find_packages(). packages=find_packages(exclude=['contrib', 'docs', 'tests*']), + namespace_packages=['ckanext'], # List run-time dependencies here. These will be installed by pip when your # project is installed. For an analysis of "install_requires" vs pip's @@ -79,6 +81,20 @@ setup( entry_points=''' [ckan.plugins] {{ project_shortname }}=ckanext.{{ project_shortname }}.plugin:{{ plugin_class_name }} + [babel.extractors] + ckan = ckan.lib.extract:extract_ckan ''', + + # If you are changing from the default layout of your extension, you may + # have to change the message extractors, you can read more about babel + # message extraction at + # http://babel.pocoo.org/docs/messages/#extraction-method-mapping-and-configuration + message_extractors={ + 'ckanext': [ + ('**.py', 'python', None), + ('**.js', 'javascript', None), + ('**/templates/**.html', 'ckan', None), + ], + } ) diff --git a/ckan/plugins/core.py b/ckan/plugins/core.py index 8e4fd41117f..864805590d0 100644 --- a/ckan/plugins/core.py +++ b/ckan/plugins/core.py @@ -152,10 +152,6 @@ def load(*plugins): for observer_plugin in observers: observer_plugin.after_load(service) - if interfaces.IGenshiStreamFilter in service.__interfaces__: - log.warn("Plugin '%s' is using deprecated interface " - 'IGenshiStreamFilter' % plugin) - _PLUGINS.append(plugin) _PLUGINS_CLASS.append(service.__class__) diff --git a/ckan/plugins/interfaces.py b/ckan/plugins/interfaces.py index a2cecc56fbc..005b5d6a68b 100644 --- a/ckan/plugins/interfaces.py +++ b/ckan/plugins/interfaces.py @@ -4,7 +4,7 @@ ''' __all__ = [ 'Interface', - 'IGenshiStreamFilter', 'IRoutes', + 'IRoutes', 'IMapper', 'ISession', 'IMiddleware', 'IAuthFunctions', @@ -22,6 +22,7 @@ 'ITemplateHelpers', 'IFacets', 'IAuthenticator', + 'ITranslation', 'IUploader' ] @@ -59,23 +60,6 @@ def make_error_log_middleware(self, app, config): return app -class IGenshiStreamFilter(Interface): - ''' - Hook into template rendering. - See ckan.lib.base.py:render - ''' - - def filter(self, stream): - """ - Return a filtered Genshi stream. - Called when any page is rendered. - - :param stream: Genshi stream of the current output document - :returns: filtered Genshi stream - """ - return stream - - class IRoutes(Interface): """ Plugin into the setup of the routes map creation. @@ -105,7 +89,7 @@ def after_map(self, map): class IMapper(Interface): """ A subset of the SQLAlchemy mapper extension hooks. - See http://www.sqlalchemy.org/docs/05/reference/orm/interfaces.html#sqlalchemy.orm.interfaces.MapperExtension + See http://docs.sqlalchemy.org/en/rel_0_9/orm/deprecated.html#sqlalchemy.orm.interfaces.MapperExtension Example:: @@ -195,9 +179,21 @@ class IDomainObjectModification(Interface): """ def notify(self, entity, operation): + """ + Send a notification on entity modification. + + :param entity: instance of module.Package. + :param operation: 'new', 'changed' or 'deleted'. + """ pass def notify_after_commit(self, entity, operation): + """ + Send a notification after entity modification. + + :param entity: instance of module.Package. + :param operation: 'new', 'changed' or 'deleted'. + """ pass @@ -207,6 +203,11 @@ class IResourceUrlChange(Interface): """ def notify(self, resource): + """ + Give user a notify is resource url has changed. + + :param resource, instance of model.Resource + """ pass @@ -1172,7 +1173,7 @@ class IGroupForm(Interface): The behaviour of the plugin is determined by 5 method hooks: - - package_form(self) + - group_form(self) - form_to_db_schema(self) - db_to_form_schema(self) - check_data_dict(self, data_dict) @@ -1187,6 +1188,7 @@ class IGroupForm(Interface): - is_fallback(self) - group_types(self) + - group_controller(self) Implementations might want to consider mixing in ckan.lib.plugins.DefaultGroupForm which provides @@ -1219,9 +1221,20 @@ def group_types(self): type will raise an exception at startup. """ + def group_controller(self): + """ + Returns the name of the group controller. + + The group controller is the controller, that is used to handle requests + of the group type(s) of this plugin. + + If this method is not provided, the default group controller is used + (`group`). + """ + ##### End of control methods - ##### Hooks for customising the PackageController's behaviour ##### + ##### Hooks for customising the GroupController's behaviour ##### ##### TODO: flesh out the docstrings a little more. ##### def new_template(self): """ @@ -1255,7 +1268,7 @@ def edit_template(self): rendered for the edit page """ - def package_form(self): + def group_form(self): """ Returns a string representing the location of the template to be rendered. e.g. "group/new_group_form.html". @@ -1462,6 +1475,17 @@ def abort(self, status_code, detail, headers, comment): return (status_code, detail, headers, comment) +class ITranslation(Interface): + def i18n_directory(self): + '''Change the directory of the .mo translation files''' + + def i18n_locales(self): + '''Change the list of locales that this plugin handles ''' + + def i18n_domain(self): + '''Change the gettext domain handled by this plugin''' + + class IUploader(Interface): ''' Extensions implementing this interface can provide custom uploaders to diff --git a/ckan/plugins/toolkit.py b/ckan/plugins/toolkit.py index 2e95a6f9d57..bc8344fa78a 100644 --- a/ckan/plugins/toolkit.py +++ b/ckan/plugins/toolkit.py @@ -16,44 +16,84 @@ class _Toolkit(object): # contents should describe the available functions/objects. We check # that this list matches the actual availables in the initialisation contents = [ - ## Imported functions/objects ## - '_', # i18n translation - 'c', # template context - 'request', # http request object - 'render', # template render function - 'render_text', # Genshi NewTextTemplate render function - 'render_snippet', # snippet render function - 'asbool', # converts an object to a boolean - 'asint', # converts an object to an integer - 'aslist', # converts an object to a list - 'literal', # stop tags in a string being escaped - 'get_action', # get logic action function - 'get_converter', # get navl schema converter - 'get_validator', # get navl schema validator - 'check_access', # check logic function authorisation - 'navl_validate', # implements validate method with navl schema - 'missing', # placeholder for missing values for validation - 'ObjectNotFound', # action not found exception - # (ckan.logic.NotFound) - 'NotAuthorized', # action not authorized exception - 'UnknownValidator', # validator not found exception - 'ValidationError', # model update validation error - 'Invalid', # validation invalid exception - 'CkanCommand', # class for providing cli interfaces - 'DefaultDatasetForm', # base class for IDatasetForm plugins - 'DefaultGroupForm', # base class for IGroupForm plugins - 'response', # response object for cookies etc - 'BaseController', # Allow controllers to be created - 'abort', # abort actions - 'redirect_to', # allow redirections - 'url_for', # create urls - 'get_or_bust', # helpful for actions - 'side_effect_free', # actions can be accessed via api - 'auth_sysadmins_check', # allow auth functions to be checked for sysadmins - 'auth_allow_anonymous_access', # allow anonymous access to an auth function - 'auth_disallow_anonymous_access', # disallow anonymous access to an auth function - - ## Fully defined in this file ## + # i18n translation + '_', + # i18n translation (plural form) + 'ungettext', + # template context + 'c', + # template helpers + 'h', + # http request object + 'request', + # template render function + 'render', + # snippet render function + 'render_snippet', + # converts an object to a boolean + 'asbool', + # converts an object to an integer + 'asint', + # converts an object to a list + 'aslist', + # stop tags in a string being escaped + 'literal', + # get logic action function + 'get_action', + # get navl schema converter + 'get_converter', + # get navl schema validator + 'get_validator', + # check logic function authorisation + 'check_access', + # implements validate method with navl schema + 'navl_validate', + # placeholder for missing values for validation + 'missing', + # action not found exception (ckan.logic.NotFound) + 'ObjectNotFound', + # action not authorized exception + 'NotAuthorized', + # validator not found exception + 'UnknownValidator', + # model update validation error + 'ValidationError', + # validation exception to stop further validators from being called + 'StopOnError', + # validation invalid exception + 'Invalid', + # class for providing cli interfaces + 'CkanCommand', + # base class for IDatasetForm plugins + 'DefaultDatasetForm', + # base class for IGroupForm plugins + 'DefaultGroupForm', + # base class for IGroupForm plugins for orgs + 'DefaultOrganizationForm', + # response object for cookies etc + 'response', + # Allow controllers to be created + 'BaseController', + # abort actions + 'abort', + # allow redirections + 'redirect_to', + # create urls + 'url_for', + # helpful for actions + 'get_or_bust', + # actions can be accessed via api + 'side_effect_free', + # allow auth functions to be checked for sysadmins + 'auth_sysadmins_check', + # allow anonymous access to an auth function + 'auth_allow_anonymous_access', + # disallow anonymous access to an auth function + 'auth_disallow_anonymous_access', + # Helper not found error. + 'HelperError', + + # Fully defined in this file ## 'add_template_directory', 'add_resource', 'add_public_directory', @@ -86,14 +126,15 @@ def _initialize(self): import ckan.lib.cli as cli import ckan.lib.plugins as lib_plugins import ckan.common as common - import ckan.lib.datapreview as datapreview - from ckan.exceptions import CkanVersionException + from ckan.exceptions import ( + CkanVersionException, + HelperError + ) from paste.deploy import converters import pylons import webhelpers.html.tags - # Allow class access to these modules self.__class__.ckan = ckan self.__class__.base = base @@ -111,6 +152,19 @@ def _initialize(self): msg = toolkit._("Hello") +''' + t['ungettext'] = common.ungettext + self.docstring_overrides['ungettext'] = '''The Pylons ``ungettext`` + function. + +Mark a string for translation that has pural forms in the format +``ungettext(singular, plural, n)``. Returns the localized unicode string of +the pluralized value. + +Mark a string to be localized as follows:: + + msg = toolkit.ungettext("Mouse", "Mice", len(mouses)) + ''' t['c'] = common.c self.docstring_overrides['c'] = '''The Pylons template context object. @@ -124,6 +178,7 @@ def _initialize(self): current request. ''' + t['h'] = h.helper_functions t['request'] = common.request self.docstring_overrides['request'] = '''The Pylons request object. @@ -133,7 +188,6 @@ def _initialize(self): ''' t['render'] = base.render - t['render_text'] = base.render_text t['asbool'] = converters.asbool self.docstring_overrides['asbool'] = '''Convert a string from the config file into a boolean. @@ -166,12 +220,14 @@ def _initialize(self): t['ObjectNotFound'] = logic.NotFound # Name change intentional t['NotAuthorized'] = logic.NotAuthorized t['ValidationError'] = logic.ValidationError + t['StopOnError'] = dictization_functions.StopOnError t['UnknownValidator'] = logic.UnknownValidator t['Invalid'] = logic_validators.Invalid t['CkanCommand'] = cli.CkanCommand t['DefaultDatasetForm'] = lib_plugins.DefaultDatasetForm t['DefaultGroupForm'] = lib_plugins.DefaultGroupForm + t['DefaultOrganizationForm'] = lib_plugins.DefaultOrganizationForm t['response'] = pylons.response self.docstring_overrides['response'] = '''The Pylons response object. @@ -189,7 +245,9 @@ def _initialize(self): t['side_effect_free'] = logic.side_effect_free t['auth_sysadmins_check'] = logic.auth_sysadmins_check t['auth_allow_anonymous_access'] = logic.auth_allow_anonymous_access - t['auth_disallow_anonymous_access'] = logic.auth_disallow_anonymous_access + t['auth_disallow_anonymous_access'] = ( + logic.auth_disallow_anonymous_access + ) # class functions t['render_snippet'] = self._render_snippet @@ -200,6 +258,7 @@ def _initialize(self): t['requires_ckan_version'] = self._requires_ckan_version t['check_ckan_version'] = self._check_ckan_version t['CkanVersionException'] = CkanVersionException + t['HelperError'] = HelperError # check contents list correct errors = set(t).symmetric_difference(set(self.contents)) @@ -364,8 +423,10 @@ def _requires_ckan_version(cls, min_version, max_version=None): if not max_version: error = 'Requires ckan version %s or higher' % min_version else: - error = 'Requires ckan version between %s and %s' % \ - (min_version, max_version) + error = 'Requires ckan version between {0} and {1}'.format( + min_version, + max_version + ) raise CkanVersionException(error) def __getattr__(self, name): diff --git a/ckan/public/base/images/ckan-logo-white.svg b/ckan/public/base/images/ckan-logo-white.svg new file mode 100644 index 00000000000..66d036f3dab --- /dev/null +++ b/ckan/public/base/images/ckan-logo-white.svg @@ -0,0 +1,28 @@ + + diff --git a/ckan/public/base/images/ckan-logo.svg b/ckan/public/base/images/ckan-logo.svg new file mode 100644 index 00000000000..000394d80a7 --- /dev/null +++ b/ckan/public/base/images/ckan-logo.svg @@ -0,0 +1,25 @@ + + diff --git a/ckan/public/base/javascript/modules/image-upload.js b/ckan/public/base/javascript/modules/image-upload.js index e6cb99cd31a..7fef17dfcc4 100644 --- a/ckan/public/base/javascript/modules/image-upload.js +++ b/ckan/public/base/javascript/modules/image-upload.js @@ -1,6 +1,6 @@ /* Image Upload - * - */ + * + */ this.ckan.module('image-upload', function($, _) { return { /* options object can be extended using data-module-* attributes */ @@ -10,6 +10,7 @@ this.ckan.module('image-upload', function($, _) { field_upload: 'image_upload', field_url: 'image_url', field_clear: 'clear_upload', + field_name: 'name', upload_label: '', i18n: { upload: _('Upload'), @@ -21,6 +22,12 @@ this.ckan.module('image-upload', function($, _) { } }, + /* Should be changed to true if user modifies resource's name + * + * @type {Boolean} + */ + _nameIsDirty: false, + /* Initialises the module setting up elements and event listeners. * * Returns nothing. @@ -33,11 +40,13 @@ this.ckan.module('image-upload', function($, _) { var field_upload = 'input[name="' + options.field_upload + '"]'; var field_url = 'input[name="' + options.field_url + '"]'; var field_clear = 'input[name="' + options.field_clear + '"]'; + var field_name = 'input[name="' + options.field_name + '"]'; this.input = $(field_upload, this.el); this.field_url = $(field_url, this.el).parents('.control-group'); this.field_image = this.input.parents('.control-group'); this.field_url_input = $('input', this.field_url); + this.field_name = this.el.parents('form').find(field_name); // Is there a clear checkbox on the form already? var checkbox = $(field_clear, this.el); @@ -85,6 +94,15 @@ this.ckan.module('image-upload', function($, _) { .add(this.field_url) .add(this.field_image); + // Disables autoName if user modifies name field + this.field_name + .on('change', this._onModifyName); + // Disables autoName if resource name already has value, + // i.e. we on edit page + if (this.field_name.val()){ + this._nameIsDirty = true; + } + if (options.is_url) { this._showOnlyFieldUrl(); } else if (options.is_upload) { @@ -101,7 +119,8 @@ this.ckan.module('image-upload', function($, _) { */ _onFromWeb: function() { this._showOnlyFieldUrl(); - this.field_url_input.focus(); + this.field_url_input.focus() + .on('blur', this._onFromWebBlur); if (this.options.is_upload) { this.field_clear.val('true'); } @@ -128,6 +147,7 @@ this.ckan.module('image-upload', function($, _) { this.field_url_input.prop('readonly', true); this.field_clear.val(''); this._showOnlyFieldUrl(); + this._autoName(file_name); }, /* Show only the buttons, hiding all others @@ -166,7 +186,36 @@ this.ckan.module('image-upload', function($, _) { */ _onInputMouseOut: function() { this.button_upload.removeClass('hover'); - } + }, + /* Event listener for changes in resource's name by direct input from user + * + * Returns nothing + */ + _onModifyName: function() { + this._nameIsDirty = true; + }, + + /* Event listener for when someone loses focus of URL field + * + * Returns nothing + */ + _onFromWebBlur: function() { + var url = this.field_url_input.val().match(/([^\/]+)\/?$/) + if (url) { + this._autoName(url.pop()); + } + }, + + /* Automatically add file name into field Name + * + * Select by attribute [name] to be on the safe side and allow to change field id + * Returns nothing + */ + _autoName: function(name) { + if (!this._nameIsDirty){ + this.field_name.val(name); + } + } }; }); diff --git a/ckan/public/base/javascript/modules/related-item.js b/ckan/public/base/javascript/modules/related-item.js deleted file mode 100644 index 4c16ec41fcf..00000000000 --- a/ckan/public/base/javascript/modules/related-item.js +++ /dev/null @@ -1,80 +0,0 @@ -/* Module that handles related item elements, at the moment this consists of - * truncating the descriptions and allowing them to be toggled. - * - * truncate - The max number of characters in the description element. - * truncateMore - A locale string for the "more" text. - * truncateLess - A locale string for the "less" text. - * truncatePrefix - A prefix for the more/less strings. - * truncateSuffix - A suffix for the more/less strings. - * truncateSelector - A selector for the element to truncate. - * expandedClass - A class to apply to the element when expanded. - */ -this.ckan.module('related-item', function (jQuery, _) { - return { - /* options object can be extended using data-module-* attributes */ - options: { - truncate: 55, - truncateMore: null, - truncateLess: null, - truncatePrefix: '', - truncateSuffix: '', - truncateSelector: '.prose', - expandedClass: 'expanded', - hasExpanderClass: 'is-expander', - i18n: { - more: _('show more'), - less: _('show less') - } - }, - - /* Initialises the module setting up elements and event listeners. - * - * Returns nothing. - */ - initialize: function () { - jQuery.proxyAll(this, /_on/); - - var options = this.options; - this.description = this.$(options.truncateSelector); - this.truncated = this.description.truncate({ - max_length: options.truncate, - more: options.truncateMore || this.i18n('more'), - less: options.truncateLess || this.i18n('less'), - link_prefix: options.truncatePrefix, - link_suffix: options.truncateSuffix - }); - - this.collapsedHeight = this.el.height(); - this.truncated.on('expand.truncate', this._onExpand); - this.truncated.on('collapse.truncate', this._onCollapse); - - if ($('.truncator-link', this.description).length > 0) { - this.el.addClass(options.hasExpanderClass); - } - - }, - - /* Event handler called when the truncated text expands. - * - * event - An event object. - * - * Returns nothing. - */ - _onExpand: function () { - var diff = this.el.height() - this.collapsedHeight; - this.el.addClass(this.options.expandedClass); - this.el.css('margin-bottom', diff * -1); - }, - - /* Event handler called when the truncated text is collapsed. - * - * event - An event object. - * - * Returns nothing. - */ - _onCollapse: function () { - this.el.removeClass(this.options.expandedClass); - this.el.css('margin-bottom', ''); - } - }; -}); diff --git a/ckan/public/base/javascript/resource.config b/ckan/public/base/javascript/resource.config index fbf6996d19c..0e3c535081f 100644 --- a/ckan/public/base/javascript/resource.config +++ b/ckan/public/base/javascript/resource.config @@ -27,7 +27,6 @@ ckan = modules/api-info.js modules/autocomplete.js modules/custom-fields.js - modules/related-item.js modules/data-viewer.js modules/table-selectable-rows.js modules/resource-form.js diff --git a/ckan/public/base/test/index.html b/ckan/public/base/test/index.html index bdadaa48622..1c9317807f5 100644 --- a/ckan/public/base/test/index.html +++ b/ckan/public/base/test/index.html @@ -46,6 +46,7 @@ + @@ -59,6 +60,7 @@ + diff --git a/ckan/public/base/test/spec/modules/image-upload.spec.js b/ckan/public/base/test/spec/modules/image-upload.spec.js new file mode 100644 index 00000000000..f0f2939494d --- /dev/null +++ b/ckan/public/base/test/spec/modules/image-upload.spec.js @@ -0,0 +1,65 @@ +/*globals describe beforeEach afterEach it assert sinon ckan jQuery */ +describe('ckan.modules.ImageUploadModule()', function () { + var ImageUploadModule = ckan.module.registry['image-upload']; + + beforeEach(function () { + this.el = document.createElement('div'); + this.sandbox = ckan.sandbox(); + this.module = new ImageUploadModule(this.el, {}, this.sandbox); + this.module.el.html([ + '
    ', + '', + ]); + this.module.initialize(); + this.module.field_name = jQuery('', {type: 'text'}) + }); + + afterEach(function () { + this.module.teardown(); + }); + + describe('._onFromWeb()', function () { + + it('should change name when url changed', function () { + this.module.field_url_input.val('http://example.com/some_image.png'); + this.module._onFromWebBlur(); + assert.equal(this.module.field_name.val(), 'some_image.png'); + + this.module.field_url_input.val('http://example.com/undefined_file'); + this.module._onFromWebBlur(); + assert.equal(this.module.field_name.val(), 'undefined_file'); + }); + + it('should ignore url changes if name was manualy changed', function () { + this.module.field_url_input.val('http://example.com/some_image.png'); + this.module._onFromWebBlur(); + assert.equal(this.module.field_name.val(), 'some_image.png'); + + this.module._onModifyName(); + + this.module.field_url_input.val('http://example.com/undefined_file'); + this.module._onFromWebBlur(); + assert.equal(this.module.field_name.val(), 'some_image.png'); + }); + + it('should ignore url changes if name was filled before', function () { + this.module._nameIsDirty = true; + this.module.field_name.val('prefilled'); + + this.module.field_url_input.val('http://example.com/some_image.png'); + this.module._onFromWebBlur(); + assert.equal(this.module.field_name.val(), 'prefilled'); + + this.module.field_url_input.val('http://example.com/second_some_image.png'); + this.module._onFromWebBlur(); + assert.equal(this.module.field_name.val(), 'prefilled'); + + this.module._onModifyName() + + this.module.field_url_input.val('http://example.com/undefined_file'); + this.module._onFromWebBlur(); + assert.equal(this.module.field_name.val(), 'prefilled'); + }); + }); + +}); diff --git a/ckan/public/base/test/spec/modules/related-item.spec.js b/ckan/public/base/test/spec/modules/related-item.spec.js deleted file mode 100644 index b1486e90040..00000000000 --- a/ckan/public/base/test/spec/modules/related-item.spec.js +++ /dev/null @@ -1,87 +0,0 @@ -/*globals describe before beforeEach afterEach it assert sinon ckan jQuery */ -describe('ckan.module.RelatedItemModule()', function () { - var RelatedItemModule = ckan.module.registry['related-item']; - - before(function (done) { - // Load our fixture into the this.fixture element. - this.loadFixture('related-item.html', function (html) { - this.template = html; - done(); - }); - }); - - beforeEach(function () { - this.truncated = jQuery('
    '); - jQuery.fn.truncate = sinon.stub().returns(this.truncated); - - // Grab the loaded fixture. - this.el = this.fixture.html(this.template).children(); - this.sandbox = ckan.sandbox(); - this.sandbox.body = this.fixture; - this.module = new RelatedItemModule(this.el, {}, this.sandbox); - }); - - afterEach(function () { - this.module.teardown(); - delete jQuery.fn.truncate; - }); - - describe('.initialize()', function () { - it('should truncate the .prose element', function () { - this.module.initialize(); - assert.called(jQuery.fn.truncate); - }); - - it('should pass the various options into the truncate plugin'); - - it('should cache the collapsed height of the plugin', function () { - this.module.initialize(); - assert.ok(this.module.collapsedHeight); - }); - - it('should listen for the "truncate" events', function () { - var target = sinon.stub(this.truncated, 'on'); - this.module.initialize(); - - assert.called(target); - assert.calledWith(target, 'expand.truncate', this.module._onExpand); - assert.calledWith(target, 'collapse.truncate', this.module._onCollapse); - }); - }); - - describe('._onExpand(event)', function () { - it('should add the "expanded" class to the element', function () { - this.module._onExpand(jQuery.Event()); - assert.isTrue(this.el.hasClass(this.module.options.expandedClass)); - }); - - it('should add a bottom margin to the element', function () { - this.module._onExpand(jQuery.Event()); - assert.ok(this.el.css('margin-bottom')); - }); - - it('should calcualte the difference between the current and cached height', function () { - var target = sinon.stub(this.el, 'css'); - sinon.stub(this.el, 'height').returns(30); - this.module.collapsedHeight = 10; - this.module._onExpand(jQuery.Event()); - - assert.called(target); - assert.calledWith(target, 'margin-bottom', -20); - }); - }); - - describe('._onCollapse(event)', function () { - it('should remove the "expanded" class from the element', function () { - this.el.addClass(this.module.options.expandedClass); - this.module._onCollapse(jQuery.Event()); - assert.isFalse(this.el.hasClass(this.module.options.expandedClass)); - }); - - it('should remove the bottom margin from the element', function () { - this.el.css('margin-bottom', -90); - this.module._onCollapse(jQuery.Event()); - assert.equal(this.el.css('margin-bottom'), '0px'); - }); - }); -}); diff --git a/ckan/public/css/boilerplate.css b/ckan/public/css/boilerplate.css deleted file mode 100755 index 14aab14aa3d..00000000000 --- a/ckan/public/css/boilerplate.css +++ /dev/null @@ -1,111 +0,0 @@ -/* HTML5 ✰ Boilerplate */ - -html, body, div, span, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, -small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, figcaption, figure, -footer, header, hgroup, menu, nav, section, summary, -time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; -} - -article, aside, details, figcaption, figure, -footer, header, hgroup, menu, nav, section { - display: block; -} - -blockquote, q { quotes: none; } -blockquote:before, blockquote:after, -q:before, q:after { content: ""; content: none; } -ins { background-color: #ff9; color: #000; text-decoration: none; } -mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; } -del { text-decoration: line-through; } -abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; } -table { border-collapse: collapse; border-spacing: 0; } -hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } -input, select { vertical-align: middle; } - -body { font:13px/1.231 sans-serif; *font-size:small; } -select, input, textarea, button { font:99% sans-serif; } -pre, code, kbd, samp { font-family: monospace, sans-serif; } - -html { overflow-y: scroll; } -a:hover, a:active { outline: none; } -ul, ol { margin-left: 2em; } -ol { list-style-type: decimal; } -nav ul, nav li { margin: 0; list-style:none; list-style-image: none; } -small { font-size: 85%; } -strong, th { font-weight: bold; } -td { vertical-align: top; } -sub, sup { font-size: 75%; line-height: 0; position: relative; } -sup { top: -0.5em; } -sub { bottom: -0.25em; } - -pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; padding: 15px; } -textarea { overflow: auto; } -.ie6 legend, .ie7 legend { margin-left: -7px; } -input[type="radio"] { vertical-align: text-bottom; } -input[type="checkbox"] { vertical-align: bottom; } -.ie7 input[type="checkbox"] { vertical-align: baseline; } -.ie6 input { vertical-align: text-bottom; } -label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; } -button, input, select, textarea { margin: 0; } -input:valid, textarea:valid { } -input:invalid, textarea:invalid { border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red; } -.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; } - - -a:link { -webkit-tap-highlight-color: #FF5E99; } -button { width: auto; overflow: visible; } -.ie7 img { -ms-interpolation-mode: bicubic; } - -body, select, input, textarea { color: #444; } -h1, h2, h3, h4, h5, h6 { font-weight: bold; } -a, a:active, a:visited { color: #607890; } -a:hover { color: #036; } - -.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; } -.hidden { display: none; visibility: hidden; } -.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } -.visuallyhidden.focusable:active, -.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } -.invisible { visibility: hidden; } -.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; } -.clearfix:after { clear: both; } -.clearfix { zoom: 1; } - - -@media all and (orientation:portrait) { -} - -@media all and (orientation:landscape) { -} - -@media screen and (max-device-width: 480px) { - /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */ -} - - -@media print { - * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; - -ms-filter: none !important; } - a, a:visited { color: #444 !important; text-decoration: underline; } - a[href]:after { content: " (" attr(href) ")"; } - abbr[title]:after { content: " (" attr(title) ")"; } - .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } - pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } - thead { display: table-header-group; } - tr, img { page-break-inside: avoid; } - @page { margin: 0.5cm; } - p, h2, h3 { orphans: 3; widows: 3; } - h2, h3{ page-break-after: avoid; } -} - diff --git a/ckan/public/css/bootstrap.min.css b/ckan/public/css/bootstrap.min.css deleted file mode 100644 index 1c75d0c07a4..00000000000 --- a/ckan/public/css/bootstrap.min.css +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * Bootstrap v2.0.3 - * - * Copyright 2012 Twitter, Inc - * Licensed under the Apache License v2.0 - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Designed and built with all the love in the world @twitter by @mdo and @fat. - */article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{max-width:100%;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle}button,input{*overflow:visible;line-height:normal}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}textarea{overflow:auto;vertical-align:top}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;color:#333;background-color:#fff}a{color:#08c;text-decoration:none}a:hover{color:#005580;text-decoration:underline}.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:""}.row:after{clear:both}[class*="span"]{float:left;margin-left:20px}.container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.span12{width:940px}.span11{width:860px}.span10{width:780px}.span9{width:700px}.span8{width:620px}.span7{width:540px}.span6{width:460px}.span5{width:380px}.span4{width:300px}.span3{width:220px}.span2{width:140px}.span1{width:60px}.offset12{margin-left:980px}.offset11{margin-left:900px}.offset10{margin-left:820px}.offset9{margin-left:740px}.offset8{margin-left:660px}.offset7{margin-left:580px}.offset6{margin-left:500px}.offset5{margin-left:420px}.offset4{margin-left:340px}.offset3{margin-left:260px}.offset2{margin-left:180px}.offset1{margin-left:100px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:28px;margin-left:2.127659574%;*margin-left:2.0744680846382977%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .span12{width:99.99999998999999%;*width:99.94680850063828%}.row-fluid .span11{width:91.489361693%;*width:91.4361702036383%}.row-fluid .span10{width:82.97872339599999%;*width:82.92553190663828%}.row-fluid .span9{width:74.468085099%;*width:74.4148936096383%}.row-fluid .span8{width:65.95744680199999%;*width:65.90425531263828%}.row-fluid .span7{width:57.446808505%;*width:57.3936170156383%}.row-fluid .span6{width:48.93617020799999%;*width:48.88297871863829%}.row-fluid .span5{width:40.425531911%;*width:40.3723404216383%}.row-fluid .span4{width:31.914893614%;*width:31.8617021246383%}.row-fluid .span3{width:23.404255317%;*width:23.3510638276383%}.row-fluid .span2{width:14.89361702%;*width:14.8404255306383%}.row-fluid .span1{width:6.382978723%;*width:6.329787233638298%}.container{margin-right:auto;margin-left:auto;*zoom:1}.container:before,.container:after{display:table;content:""}.container:after{clear:both}.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:""}.container-fluid:after{clear:both}p{margin:0 0 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px}p small{font-size:11px;color:#999}.lead{margin-bottom:18px;font-size:20px;font-weight:200;line-height:27px}h1,h2,h3,h4,h5,h6{margin:0;font-family:inherit;font-weight:bold;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;color:#999}h1{font-size:30px;line-height:36px}h1 small{font-size:18px}h2{font-size:24px;line-height:36px}h2 small{font-size:18px}h3{font-size:18px;line-height:27px}h3 small{font-size:14px}h4,h5,h6{line-height:18px}h4{font-size:14px}h4 small{font-size:12px}h5{font-size:12px}h6{font-size:11px;color:#999;text-transform:uppercase}.page-header{padding-bottom:17px;margin:18px 0;border-bottom:1px solid #eee}.page-header h1{line-height:1}ul,ol{padding:0;margin:0 0 9px 25px}ul ul,ul ol,ol ol,ol ul{margin-bottom:0}ul{list-style:disc}ol{list-style:decimal}li{line-height:18px}ul.unstyled,ol.unstyled{margin-left:0;list-style:none}dl{margin-bottom:18px}dt,dd{line-height:18px}dt{font-weight:bold;line-height:17px}dd{margin-left:9px}.dl-horizontal dt{float:left;width:120px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:130px}hr{margin:18px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}strong{font-weight:bold}em{font-style:italic}.muted{color:#999}abbr[title]{cursor:help;border-bottom:1px dotted #ddd}abbr.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:0 0 0 15px;margin:0 0 18px;border-left:5px solid #eee}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:22.5px}blockquote small{display:block;line-height:18px;color:#999}blockquote small:before{content:'\2014 \00A0'}blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small{text-align:right}q:before,q:after,blockquote:before,blockquote:after{content:""}address{display:block;margin-bottom:18px;font-style:normal;line-height:18px}small{font-size:100%}cite{font-style:normal}code,pre{padding:0 3px 2px;font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:12px;color:#333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8}pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12.025px;line-height:18px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:18px}pre code{padding:0;color:inherit;background-color:transparent;border:0}.pre-scrollable{max-height:340px;overflow-y:scroll}form{margin:0 0 18px}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:27px;font-size:19.5px;line-height:36px;color:#333;border:0;border-bottom:1px solid #eee}legend small{font-size:13.5px;color:#999}label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:18px}input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}label{display:block;margin-bottom:5px;color:#333}input,textarea,select,.uneditable-input{display:inline-block;width:210px;height:18px;padding:4px;margin-bottom:9px;font-size:13px;line-height:18px;color:#555;background-color:#fff;border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.uneditable-textarea{width:auto;height:auto}label input,label textarea,label select{display:block}input[type="image"],input[type="checkbox"],input[type="radio"]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;cursor:pointer;background-color:transparent;border:0 \9;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}input[type="image"]{border:0}input[type="file"]{width:auto;padding:initial;line-height:initial;background-color:#fff;background-color:initial;border:initial;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}input[type="button"],input[type="reset"],input[type="submit"]{width:auto;height:auto}select,input[type="file"]{height:28px;*margin-top:4px;line-height:28px}input[type="file"]{line-height:18px \9}select{width:220px;background-color:#fff}select[multiple],select[size]{height:auto}input[type="image"]{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}textarea{height:auto}input[type="hidden"]{display:none}.radio,.checkbox{min-height:18px;padding-left:18px}.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px}.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px}.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle}.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px}input,textarea{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-ms-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}input:focus,textarea:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6)}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.input-mini{width:60px}.input-small{width:90px}.input-medium{width:150px}.input-large{width:210px}.input-xlarge{width:270px}.input-xxlarge{width:530px}input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0}input,textarea,.uneditable-input{margin-left:0}input.span12,textarea.span12,.uneditable-input.span12{width:930px}input.span11,textarea.span11,.uneditable-input.span11{width:850px}input.span10,textarea.span10,.uneditable-input.span10{width:770px}input.span9,textarea.span9,.uneditable-input.span9{width:690px}input.span8,textarea.span8,.uneditable-input.span8{width:610px}input.span7,textarea.span7,.uneditable-input.span7{width:530px}input.span6,textarea.span6,.uneditable-input.span6{width:450px}input.span5,textarea.span5,.uneditable-input.span5{width:370px}input.span4,textarea.span4,.uneditable-input.span4{width:290px}input.span3,textarea.span3,.uneditable-input.span3{width:210px}input.span2,textarea.span2,.uneditable-input.span2{width:130px}input.span1,textarea.span1,.uneditable-input.span1{width:50px}input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee;border-color:#ddd}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent}.control-group.warning>label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853}.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;border-color:#c09853}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:0 0 6px #dbc59e;-moz-box-shadow:0 0 6px #dbc59e;box-shadow:0 0 6px #dbc59e}.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853}.control-group.error>label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48}.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;border-color:#b94a48}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:0 0 6px #d59392;-moz-box-shadow:0 0 6px #d59392;box-shadow:0 0 6px #d59392}.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.control-group.success>label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847}.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;border-color:#468847}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:0 0 6px #7aba7b;-moz-box-shadow:0 0 6px #7aba7b;box-shadow:0 0 6px #7aba7b}.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847}input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7}.form-actions{padding:17px 20px 18px;margin-top:18px;margin-bottom:18px;background-color:#f5f5f5;border-top:1px solid #ddd;*zoom:1}.form-actions:before,.form-actions:after{display:table;content:""}.form-actions:after{clear:both}.uneditable-input{overflow:hidden;white-space:nowrap;cursor:not-allowed;background-color:#fff;border-color:#eee;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025)}:-moz-placeholder{color:#999}::-webkit-input-placeholder{color:#999}.help-block,.help-inline{color:#555}.help-block{display:block;margin-bottom:9px}.help-inline{display:inline-block;*display:inline;padding-left:5px;vertical-align:middle;*zoom:1}.input-prepend,.input-append{margin-bottom:5px}.input-prepend input,.input-append input,.input-prepend select,.input-append select,.input-prepend .uneditable-input,.input-append .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:middle;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.input-prepend input:focus,.input-append input:focus,.input-prepend select:focus,.input-append select:focus,.input-prepend .uneditable-input:focus,.input-append .uneditable-input:focus{z-index:2}.input-prepend .uneditable-input,.input-append .uneditable-input{border-left-color:#ccc}.input-prepend .add-on,.input-append .add-on{display:inline-block;width:auto;height:18px;min-width:16px;padding:4px 5px;font-weight:normal;line-height:18px;text-align:center;text-shadow:0 1px 0 #fff;vertical-align:middle;background-color:#eee;border:1px solid #ccc}.input-prepend .add-on,.input-append .add-on,.input-prepend .btn,.input-append .btn{margin-left:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend .active,.input-append .active{background-color:#a9dba9;border-color:#46a546}.input-prepend .add-on,.input-prepend .btn{margin-right:-1px}.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-append .uneditable-input{border-right-color:#ccc;border-left-color:#eee}.input-append .add-on:last-child,.input-append .btn:last-child{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px}.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;margin-bottom:0;*zoom:1}.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none}.form-search label,.form-inline label{display:inline-block}.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0}.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle}.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0}.control-group{margin-bottom:9px}legend+.control-group{margin-top:18px;-webkit-margin-top-collapse:separate}.form-horizontal .control-group{margin-bottom:18px;*zoom:1}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:""}.form-horizontal .control-group:after{clear:both}.form-horizontal .control-label{float:left;width:140px;padding-top:5px;text-align:right}.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:160px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:160px}.form-horizontal .help-block{margin-top:9px;margin-bottom:0}.form-horizontal .form-actions{padding-left:160px}table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0}.table{width:100%;margin-bottom:18px}.table th,.table td{padding:8px;line-height:18px;text-align:left;vertical-align:top;border-top:1px solid #ddd}.table th{font-weight:bold}.table thead th{vertical-align:bottom}.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0}.table tbody+tbody{border-top:2px solid #ddd}.table-condensed th,.table-condensed td{padding:4px 5px}.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapsed;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.table-bordered th,.table-bordered td{border-left:1px solid #ddd}.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0}.table-bordered thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px}.table-bordered thead:first-child tr:first-child th:last-child,.table-bordered tbody:first-child tr:first-child td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px}.table-bordered thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px}.table-bordered thead:last-child tr:last-child th:last-child,.table-bordered tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px}.table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:#f9f9f9}.table tbody tr:hover td,.table tbody tr:hover th{background-color:#f5f5f5}table .span1{float:none;width:44px;margin-left:0}table .span2{float:none;width:124px;margin-left:0}table .span3{float:none;width:204px;margin-left:0}table .span4{float:none;width:284px;margin-left:0}table .span5{float:none;width:364px;margin-left:0}table .span6{float:none;width:444px;margin-left:0}table .span7{float:none;width:524px;margin-left:0}table .span8{float:none;width:604px;margin-left:0}table .span9{float:none;width:684px;margin-left:0}table .span10{float:none;width:764px;margin-left:0}table .span11{float:none;width:844px;margin-left:0}table .span12{float:none;width:924px;margin-left:0}table .span13{float:none;width:1004px;margin-left:0}table .span14{float:none;width:1084px;margin-left:0}table .span15{float:none;width:1164px;margin-left:0}table .span16{float:none;width:1244px;margin-left:0}table .span17{float:none;width:1324px;margin-left:0}table .span18{float:none;width:1404px;margin-left:0}table .span19{float:none;width:1484px;margin-left:0}table .span20{float:none;width:1564px;margin-left:0}table .span21{float:none;width:1644px;margin-left:0}table .span22{float:none;width:1724px;margin-left:0}table .span23{float:none;width:1804px;margin-left:0}table .span24{float:none;width:1884px;margin-left:0}[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat}[class^="icon-"]:last-child,[class*=" icon-"]:last-child{*margin-left:0}.icon-white{background-image:url("../img/glyphicons-halflings-white.png")}.icon-glass{background-position:0 0}.icon-music{background-position:-24px 0}.icon-search{background-position:-48px 0}.icon-envelope{background-position:-72px 0}.icon-heart{background-position:-96px 0}.icon-star{background-position:-120px 0}.icon-star-empty{background-position:-144px 0}.icon-user{background-position:-168px 0}.icon-film{background-position:-192px 0}.icon-th-large{background-position:-216px 0}.icon-th{background-position:-240px 0}.icon-th-list{background-position:-264px 0}.icon-ok{background-position:-288px 0}.icon-remove{background-position:-312px 0}.icon-zoom-in{background-position:-336px 0}.icon-zoom-out{background-position:-360px 0}.icon-off{background-position:-384px 0}.icon-signal{background-position:-408px 0}.icon-cog{background-position:-432px 0}.icon-trash{background-position:-456px 0}.icon-home{background-position:0 -24px}.icon-file{background-position:-24px -24px}.icon-time{background-position:-48px -24px}.icon-road{background-position:-72px -24px}.icon-download-alt{background-position:-96px -24px}.icon-download{background-position:-120px -24px}.icon-upload{background-position:-144px -24px}.icon-inbox{background-position:-168px -24px}.icon-play-circle{background-position:-192px -24px}.icon-repeat{background-position:-216px -24px}.icon-refresh{background-position:-240px -24px}.icon-list-alt{background-position:-264px -24px}.icon-lock{background-position:-287px -24px}.icon-flag{background-position:-312px -24px}.icon-headphones{background-position:-336px -24px}.icon-volume-off{background-position:-360px -24px}.icon-volume-down{background-position:-384px -24px}.icon-volume-up{background-position:-408px -24px}.icon-qrcode{background-position:-432px -24px}.icon-barcode{background-position:-456px -24px}.icon-tag{background-position:0 -48px}.icon-tags{background-position:-25px -48px}.icon-book{background-position:-48px -48px}.icon-bookmark{background-position:-72px -48px}.icon-print{background-position:-96px -48px}.icon-camera{background-position:-120px -48px}.icon-font{background-position:-144px -48px}.icon-bold{background-position:-167px -48px}.icon-italic{background-position:-192px -48px}.icon-text-height{background-position:-216px -48px}.icon-text-width{background-position:-240px -48px}.icon-align-left{background-position:-264px -48px}.icon-align-center{background-position:-288px -48px}.icon-align-right{background-position:-312px -48px}.icon-align-justify{background-position:-336px -48px}.icon-list{background-position:-360px -48px}.icon-indent-left{background-position:-384px -48px}.icon-indent-right{background-position:-408px -48px}.icon-facetime-video{background-position:-432px -48px}.icon-picture{background-position:-456px -48px}.icon-pencil{background-position:0 -72px}.icon-map-marker{background-position:-24px -72px}.icon-adjust{background-position:-48px -72px}.icon-tint{background-position:-72px -72px}.icon-edit{background-position:-96px -72px}.icon-share{background-position:-120px -72px}.icon-check{background-position:-144px -72px}.icon-move{background-position:-168px -72px}.icon-step-backward{background-position:-192px -72px}.icon-fast-backward{background-position:-216px -72px}.icon-backward{background-position:-240px -72px}.icon-play{background-position:-264px -72px}.icon-pause{background-position:-288px -72px}.icon-stop{background-position:-312px -72px}.icon-forward{background-position:-336px -72px}.icon-fast-forward{background-position:-360px -72px}.icon-step-forward{background-position:-384px -72px}.icon-eject{background-position:-408px -72px}.icon-chevron-left{background-position:-432px -72px}.icon-chevron-right{background-position:-456px -72px}.icon-plus-sign{background-position:0 -96px}.icon-minus-sign{background-position:-24px -96px}.icon-remove-sign{background-position:-48px -96px}.icon-ok-sign{background-position:-72px -96px}.icon-question-sign{background-position:-96px -96px}.icon-info-sign{background-position:-120px -96px}.icon-screenshot{background-position:-144px -96px}.icon-remove-circle{background-position:-168px -96px}.icon-ok-circle{background-position:-192px -96px}.icon-ban-circle{background-position:-216px -96px}.icon-arrow-left{background-position:-240px -96px}.icon-arrow-right{background-position:-264px -96px}.icon-arrow-up{background-position:-289px -96px}.icon-arrow-down{background-position:-312px -96px}.icon-share-alt{background-position:-336px -96px}.icon-resize-full{background-position:-360px -96px}.icon-resize-small{background-position:-384px -96px}.icon-plus{background-position:-408px -96px}.icon-minus{background-position:-433px -96px}.icon-asterisk{background-position:-456px -96px}.icon-exclamation-sign{background-position:0 -120px}.icon-gift{background-position:-24px -120px}.icon-leaf{background-position:-48px -120px}.icon-fire{background-position:-72px -120px}.icon-eye-open{background-position:-96px -120px}.icon-eye-close{background-position:-120px -120px}.icon-warning-sign{background-position:-144px -120px}.icon-plane{background-position:-168px -120px}.icon-calendar{background-position:-192px -120px}.icon-random{background-position:-216px -120px}.icon-comment{background-position:-240px -120px}.icon-magnet{background-position:-264px -120px}.icon-chevron-up{background-position:-288px -120px}.icon-chevron-down{background-position:-313px -119px}.icon-retweet{background-position:-336px -120px}.icon-shopping-cart{background-position:-360px -120px}.icon-folder-close{background-position:-384px -120px}.icon-folder-open{background-position:-408px -120px}.icon-resize-vertical{background-position:-432px -119px}.icon-resize-horizontal{background-position:-456px -118px}.icon-hdd{background-position:0 -144px}.icon-bullhorn{background-position:-24px -144px}.icon-bell{background-position:-48px -144px}.icon-certificate{background-position:-72px -144px}.icon-thumbs-up{background-position:-96px -144px}.icon-thumbs-down{background-position:-120px -144px}.icon-hand-right{background-position:-144px -144px}.icon-hand-left{background-position:-168px -144px}.icon-hand-up{background-position:-192px -144px}.icon-hand-down{background-position:-216px -144px}.icon-circle-arrow-right{background-position:-240px -144px}.icon-circle-arrow-left{background-position:-264px -144px}.icon-circle-arrow-up{background-position:-288px -144px}.icon-circle-arrow-down{background-position:-312px -144px}.icon-globe{background-position:-336px -144px}.icon-wrench{background-position:-360px -144px}.icon-tasks{background-position:-384px -144px}.icon-filter{background-position:-408px -144px}.icon-briefcase{background-position:-432px -144px}.icon-fullscreen{background-position:-456px -144px}.dropup,.dropdown{position:relative}.dropdown-toggle{*margin-bottom:-3px}.dropdown-toggle:active,.open .dropdown-toggle{outline:0}.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";opacity:.3;filter:alpha(opacity=30)}.dropdown .caret{margin-top:8px;margin-left:2px}.dropdown:hover .caret,.open .caret{opacity:1;filter:alpha(opacity=100)}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:4px 0;margin:1px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{*width:100%;height:1px;margin:8px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.dropdown-menu a{display:block;padding:3px 15px;clear:both;font-weight:normal;line-height:18px;color:#333;white-space:nowrap}.dropdown-menu li>a:hover,.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#fff;text-decoration:none;background-color:#08c}.open{*z-index:1000}.open .dropdown-menu{display:block}.pull-right .dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:"\2191"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}.typeahead{margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #eee;border:1px solid rgba(0,0,0,0.05);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.fade{opacity:0;filter:alpha(opacity=0);-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-ms-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1;filter:alpha(opacity=100)}.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-ms-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.collapse.in{height:auto}.close{float:right;font-size:20px;font-weight:bold;line-height:18px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.btn{display:inline-block;*display:inline;padding:4px 10px 4px;margin-bottom:0;*margin-left:.3em;font-size:13px;line-height:18px;*line-height:20px;color:#333;text-align:center;text-shadow:0 1px 1px rgba(255,255,255,0.75);vertical-align:middle;cursor:pointer;background-color:#f5f5f5;*background-color:#e6e6e6;background-image:-ms-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(top,#fff,#e6e6e6);background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-repeat:repeat-x;border:1px solid #ccc;*border:0;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff',endColorstr='#e6e6e6',GradientType=0);filter:progid:dximagetransform.microsoft.gradient(enabled=false);*zoom:1;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{background-color:#e6e6e6;*background-color:#d9d9d9}.btn:active,.btn.active{background-color:#ccc \9}.btn:first-child{*margin-left:0}.btn:hover{color:#333;text-decoration:none;background-color:#e6e6e6;*background-color:#d9d9d9;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-ms-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.active,.btn:active{background-color:#e6e6e6;background-color:#d9d9d9 \9;background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn.disabled,.btn[disabled]{cursor:default;background-color:#e6e6e6;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-large{padding:9px 14px;font-size:15px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.btn-large [class^="icon-"]{margin-top:1px}.btn-small{padding:5px 9px;font-size:11px;line-height:16px}.btn-small [class^="icon-"]{margin-top:-1px}.btn-mini{padding:2px 6px;font-size:11px;line-height:14px}.btn-primary,.btn-primary:hover,.btn-warning,.btn-warning:hover,.btn-danger,.btn-danger:hover,.btn-success,.btn-success:hover,.btn-info,.btn-info:hover,.btn-inverse,.btn-inverse:hover{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75)}.btn{border-color:#ccc;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25)}.btn-primary{background-color:#0074cc;*background-color:#05c;background-image:-ms-linear-gradient(top,#08c,#05c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#05c));background-image:-webkit-linear-gradient(top,#08c,#05c);background-image:-o-linear-gradient(top,#08c,#05c);background-image:-moz-linear-gradient(top,#08c,#05c);background-image:linear-gradient(top,#08c,#05c);background-repeat:repeat-x;border-color:#05c #05c #003580;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:dximagetransform.microsoft.gradient(startColorstr='#0088cc',endColorstr='#0055cc',GradientType=0);filter:progid:dximagetransform.microsoft.gradient(enabled=false)}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{background-color:#05c;*background-color:#004ab3}.btn-primary:active,.btn-primary.active{background-color:#004099 \9}.btn-warning{background-color:#faa732;*background-color:#f89406;background-image:-ms-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(top,#fbb450,#f89406);background-repeat:repeat-x;border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:dximagetransform.microsoft.gradient(startColorstr='#fbb450',endColorstr='#f89406',GradientType=0);filter:progid:dximagetransform.microsoft.gradient(enabled=false)}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{background-color:#f89406;*background-color:#df8505}.btn-warning:active,.btn-warning.active{background-color:#c67605 \9}.btn-danger{background-color:#da4f49;*background-color:#bd362f;background-image:-ms-linear-gradient(top,#ee5f5b,#bd362f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));background-image:-webkit-linear-gradient(top,#ee5f5b,#bd362f);background-image:-o-linear-gradient(top,#ee5f5b,#bd362f);background-image:-moz-linear-gradient(top,#ee5f5b,#bd362f);background-image:linear-gradient(top,#ee5f5b,#bd362f);background-repeat:repeat-x;border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:dximagetransform.microsoft.gradient(startColorstr='#ee5f5b',endColorstr='#bd362f',GradientType=0);filter:progid:dximagetransform.microsoft.gradient(enabled=false)}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{background-color:#bd362f;*background-color:#a9302a}.btn-danger:active,.btn-danger.active{background-color:#942a25 \9}.btn-success{background-color:#5bb75b;*background-color:#51a351;background-image:-ms-linear-gradient(top,#62c462,#51a351);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));background-image:-webkit-linear-gradient(top,#62c462,#51a351);background-image:-o-linear-gradient(top,#62c462,#51a351);background-image:-moz-linear-gradient(top,#62c462,#51a351);background-image:linear-gradient(top,#62c462,#51a351);background-repeat:repeat-x;border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:dximagetransform.microsoft.gradient(startColorstr='#62c462',endColorstr='#51a351',GradientType=0);filter:progid:dximagetransform.microsoft.gradient(enabled=false)}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{background-color:#51a351;*background-color:#499249}.btn-success:active,.btn-success.active{background-color:#408140 \9}.btn-info{background-color:#49afcd;*background-color:#2f96b4;background-image:-ms-linear-gradient(top,#5bc0de,#2f96b4);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));background-image:-webkit-linear-gradient(top,#5bc0de,#2f96b4);background-image:-o-linear-gradient(top,#5bc0de,#2f96b4);background-image:-moz-linear-gradient(top,#5bc0de,#2f96b4);background-image:linear-gradient(top,#5bc0de,#2f96b4);background-repeat:repeat-x;border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:dximagetransform.microsoft.gradient(startColorstr='#5bc0de',endColorstr='#2f96b4',GradientType=0);filter:progid:dximagetransform.microsoft.gradient(enabled=false)}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{background-color:#2f96b4;*background-color:#2a85a0}.btn-info:active,.btn-info.active{background-color:#24748c \9}.btn-inverse{background-color:#414141;*background-color:#222;background-image:-ms-linear-gradient(top,#555,#222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#555),to(#222));background-image:-webkit-linear-gradient(top,#555,#222);background-image:-o-linear-gradient(top,#555,#222);background-image:-moz-linear-gradient(top,#555,#222);background-image:linear-gradient(top,#555,#222);background-repeat:repeat-x;border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:dximagetransform.microsoft.gradient(startColorstr='#555555',endColorstr='#222222',GradientType=0);filter:progid:dximagetransform.microsoft.gradient(enabled=false)}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{background-color:#222;*background-color:#151515}.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9}button.btn,input[type="submit"].btn{*padding-top:2px;*padding-bottom:2px}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0}button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px}button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px}button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px}.btn-group{position:relative;*margin-left:.3em;*zoom:1}.btn-group:before,.btn-group:after{display:table;content:""}.btn-group:after{clear:both}.btn-group:first-child{*margin-left:0}.btn-group+.btn-group{margin-left:5px}.btn-toolbar{margin-top:9px;margin-bottom:9px}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1}.btn-group>.btn{position:relative;float:left;margin-left:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group>.btn:first-child{margin-left:0;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px}.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.dropdown-toggle{*padding-top:4px;padding-right:8px;*padding-bottom:4px;padding-left:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.btn-group>.btn-mini.dropdown-toggle{padding-right:5px;padding-left:5px}.btn-group>.btn-small.dropdown-toggle{*padding-top:4px;*padding-bottom:4px}.btn-group>.btn-large.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6}.btn-group.open .btn-primary.dropdown-toggle{background-color:#05c}.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406}.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f}.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351}.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4}.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222}.btn .caret{margin-top:7px;margin-left:0}.btn:hover .caret,.open.btn-group .caret{opacity:1;filter:alpha(opacity=100)}.btn-mini .caret{margin-top:5px}.btn-small .caret{margin-top:6px}.btn-large .caret{margin-top:6px;border-top-width:5px;border-right-width:5px;border-left-width:5px}.dropup .btn-large .caret{border-top:0;border-bottom:5px solid #000}.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:.75;filter:alpha(opacity=75)}.alert{padding:8px 35px 8px 14px;margin-bottom:18px;color:#c09853;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.alert-heading{color:inherit}.alert .close{position:relative;top:-2px;right:-21px;line-height:18px}.alert-success{color:#468847;background-color:#dff0d8;border-color:#d6e9c6}.alert-danger,.alert-error{color:#b94a48;background-color:#f2dede;border-color:#eed3d7}.alert-info{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1}.alert-block{padding-top:14px;padding-bottom:14px}.alert-block>p,.alert-block>ul{margin-bottom:0}.alert-block p+p{margin-top:5px}.nav{margin-bottom:18px;margin-left:0;list-style:none}.nav>li>a{display:block}.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>.pull-right{float:right}.nav .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:18px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase}.nav li+.nav-header{margin-top:9px}.nav-list{padding-right:15px;padding-left:15px;margin-bottom:0}.nav-list>li>a,.nav-list .nav-header{margin-right:-15px;margin-left:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5)}.nav-list>li>a{padding:3px 15px}.nav-list>.active>a,.nav-list>.active>a:hover{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c}.nav-list [class^="icon-"]{margin-right:2px}.nav-list .divider{*width:100%;height:1px;margin:8px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff}.nav-tabs,.nav-pills{*zoom:1}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:""}.nav-tabs:after,.nav-pills:after{clear:both}.nav-tabs>li,.nav-pills>li{float:left}.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{margin-bottom:-1px}.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:18px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.nav-pills>.active>a,.nav-pills>.active>a:hover{color:#fff;background-color:#08c}.nav-stacked>li{float:none}.nav-stacked>li>a{margin-right:0}.nav-tabs.nav-stacked{border-bottom:0}.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.nav-tabs.nav-stacked>li>a:hover{z-index:2;border-color:#ddd}.nav-pills.nav-stacked>li>a{margin-bottom:3px}.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px}.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px}.nav-pills .dropdown-menu{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.nav-tabs .dropdown-toggle .caret,.nav-pills .dropdown-toggle .caret{margin-top:6px;border-top-color:#08c;border-bottom-color:#08c}.nav-tabs .dropdown-toggle:hover .caret,.nav-pills .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580}.nav-tabs .active .dropdown-toggle .caret,.nav-pills .active .dropdown-toggle .caret{border-top-color:#333;border-bottom-color:#333}.nav>.dropdown.active>a:hover{color:#000;cursor:pointer}.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover{color:#fff;background-color:#999;border-color:#999}.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100)}.tabs-stacked .open>a:hover{border-color:#999}.tabbable{*zoom:1}.tabbable:before,.tabbable:after{display:table;content:""}.tabbable:after{clear:both}.tab-content{overflow:auto}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #ddd}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below>.nav-tabs>li>a:hover{border-top-color:#ddd;border-bottom-color:transparent}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover{border-color:transparent #ddd #ddd #ddd}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd}.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.tabs-left>.nav-tabs>li>a:hover{border-color:#eee #ddd #eee #eee}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd}.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.tabs-right>.nav-tabs>li>a:hover{border-color:#eee #eee #eee #ddd}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff}.navbar{*position:relative;*z-index:2;margin-bottom:18px;overflow:visible}.navbar-inner{min-height:40px;padding-right:20px;padding-left:20px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top,#333,#222);background-image:-ms-linear-gradient(top,#333,#222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#333),to(#222));background-image:-webkit-linear-gradient(top,#333,#222);background-image:-o-linear-gradient(top,#333,#222);background-image:linear-gradient(top,#333,#222);background-repeat:repeat-x;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:dximagetransform.microsoft.gradient(startColorstr='#333333',endColorstr='#222222',GradientType=0);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.25),inset 0 -1px 0 rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.25),inset 0 -1px 0 rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.25),inset 0 -1px 0 rgba(0,0,0,0.1)}.navbar .container{width:auto}.nav-collapse.collapse{height:auto}.navbar{color:#999}.navbar .brand:hover{text-decoration:none}.navbar .brand{display:block;float:left;padding:8px 20px 12px;margin-left:-20px;font-size:20px;font-weight:200;line-height:1;color:#999}.navbar .navbar-text{margin-bottom:0;line-height:40px}.navbar .navbar-link{color:#999}.navbar .navbar-link:hover{color:#fff}.navbar .btn,.navbar .btn-group{margin-top:5px}.navbar .btn-group .btn{margin:0}.navbar-form{margin-bottom:0;*zoom:1}.navbar-form:before,.navbar-form:after{display:table;content:""}.navbar-form:after{clear:both}.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px}.navbar-form input,.navbar-form select{display:inline-block;margin-bottom:0}.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px}.navbar-form .input-append,.navbar-form .input-prepend{margin-top:6px;white-space:nowrap}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0}.navbar-search{position:relative;float:left;margin-top:6px;margin-bottom:0}.navbar-search .search-query{padding:4px 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;color:#fff;background-color:#626262;border:1px solid #151515;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.navbar-search .search-query:-moz-placeholder{color:#ccc}.navbar-search .search-query::-webkit-input-placeholder{color:#ccc}.navbar-search .search-query:focus,.navbar-search .search-query.focused{padding:5px 10px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;outline:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15)}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-right:0;padding-left:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px}.navbar-fixed-top{top:0}.navbar-fixed-bottom{bottom:0}.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0}.navbar .nav.pull-right{float:right}.navbar .nav>li{display:block;float:left}.navbar .nav>li>a{float:none;padding:9px 10px 11px;line-height:19px;color:#999;text-decoration:none;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar .btn{display:inline-block;padding:4px 10px 4px;margin:5px 5px 6px;line-height:18px}.navbar .btn-group{padding:5px 5px 6px;margin:0}.navbar .nav>li>a:hover{color:#fff;text-decoration:none;background-color:transparent}.navbar .nav .active>a,.navbar .nav .active>a:hover{color:#fff;text-decoration:none;background-color:#222}.navbar .divider-vertical{width:1px;height:40px;margin:0 9px;overflow:hidden;background-color:#222;border-right:1px solid #333}.navbar .nav.pull-right{margin-right:0;margin-left:10px}.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-right:5px;margin-left:5px;background-color:#2c2c2c;*background-color:#222;background-image:-ms-linear-gradient(top,#333,#222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#333),to(#222));background-image:-webkit-linear-gradient(top,#333,#222);background-image:-o-linear-gradient(top,#333,#222);background-image:linear-gradient(top,#333,#222);background-image:-moz-linear-gradient(top,#333,#222);background-repeat:repeat-x;border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:dximagetransform.microsoft.gradient(startColorstr='#333333',endColorstr='#222222',GradientType=0);filter:progid:dximagetransform.microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075)}.navbar .btn-navbar:hover,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{background-color:#222;*background-color:#151515}.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#080808 \9}.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25)}.btn-navbar .icon-bar+.icon-bar{margin-top:3px}.navbar .dropdown-menu:before{position:absolute;top:-7px;left:9px;display:inline-block;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-left:7px solid transparent;border-bottom-color:rgba(0,0,0,0.2);content:''}.navbar .dropdown-menu:after{position:absolute;top:-6px;left:10px;display:inline-block;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent;content:''}.navbar-fixed-bottom .dropdown-menu:before{top:auto;bottom:-7px;border-top:7px solid #ccc;border-bottom:0;border-top-color:rgba(0,0,0,0.2)}.navbar-fixed-bottom .dropdown-menu:after{top:auto;bottom:-6px;border-top:6px solid #fff;border-bottom:0}.navbar .nav li.dropdown .dropdown-toggle .caret,.navbar .nav li.dropdown.open .caret{border-top-color:#fff;border-bottom-color:#fff}.navbar .nav li.dropdown.active .caret{opacity:1;filter:alpha(opacity=100)}.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:transparent}.navbar .nav li.dropdown.active>.dropdown-toggle:hover{color:#fff}.navbar .pull-right .dropdown-menu,.navbar .dropdown-menu.pull-right{right:0;left:auto}.navbar .pull-right .dropdown-menu:before,.navbar .dropdown-menu.pull-right:before{right:12px;left:auto}.navbar .pull-right .dropdown-menu:after,.navbar .dropdown-menu.pull-right:after{right:13px;left:auto}.breadcrumb{padding:7px 14px;margin:0 0 18px;list-style:none;background-color:#fbfbfb;background-image:-moz-linear-gradient(top,#fff,#f5f5f5);background-image:-ms-linear-gradient(top,#fff,#f5f5f5);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f5f5f5));background-image:-webkit-linear-gradient(top,#fff,#f5f5f5);background-image:-o-linear-gradient(top,#fff,#f5f5f5);background-image:linear-gradient(top,#fff,#f5f5f5);background-repeat:repeat-x;border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;filter:progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff',endColorstr='#f5f5f5',GradientType=0);-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.breadcrumb li{display:inline-block;*display:inline;text-shadow:0 1px 0 #fff;*zoom:1}.breadcrumb .divider{padding:0 5px;color:#999}.breadcrumb .active a{color:#333}.pagination{height:36px;margin:18px 0}.pagination ul{display:inline-block;*display:inline;margin-bottom:0;margin-left:0;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;*zoom:1;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.pagination li{display:inline}.pagination a{float:left;padding:0 14px;line-height:34px;text-decoration:none;border:1px solid #ddd;border-left-width:0}.pagination a:hover,.pagination .active a{background-color:#f5f5f5}.pagination .active a{color:#999;cursor:default}.pagination .disabled span,.pagination .disabled a,.pagination .disabled a:hover{color:#999;cursor:default;background-color:transparent}.pagination li:first-child a{border-left-width:1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.pagination li:last-child a{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.pagination-centered{text-align:center}.pagination-right{text-align:right}.pager{margin-bottom:18px;margin-left:0;text-align:center;list-style:none;*zoom:1}.pager:before,.pager:after{display:table;content:""}.pager:after{clear:both}.pager li{display:inline}.pager a{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px}.pager a:hover{text-decoration:none;background-color:#f5f5f5}.pager .next a{float:right}.pager .previous a{float:left}.pager .disabled a,.pager .disabled a:hover{color:#999;cursor:default;background-color:#fff}.modal-open .dropdown-menu{z-index:2050}.modal-open .dropdown.open{*z-index:2050}.modal-open .popover{z-index:2060}.modal-open .tooltip{z-index:2070}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)}.modal{position:fixed;top:50%;left:50%;z-index:1050;width:560px;margin:-250px 0 0 -280px;overflow:auto;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.modal.fade{top:-25%;-webkit-transition:opacity .3s linear,top .3s ease-out;-moz-transition:opacity .3s linear,top .3s ease-out;-ms-transition:opacity .3s linear,top .3s ease-out;-o-transition:opacity .3s linear,top .3s ease-out;transition:opacity .3s linear,top .3s ease-out}.modal.fade.in{top:50%}.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px}.modal-body{max-height:400px;padding:15px;overflow-y:auto}.modal-form{margin-bottom:0}.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;*zoom:1;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.modal-footer:before,.modal-footer:after{display:table;content:""}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.tooltip{position:absolute;z-index:1020;display:block;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{margin-top:-2px}.tooltip.right{margin-left:2px}.tooltip.bottom{margin-top:2px}.tooltip.left{margin-left:-2px}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top:5px solid #000;border-right:5px solid transparent;border-left:5px solid transparent}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-right:5px solid transparent;border-bottom:5px solid #000;border-left:5px solid transparent}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-right:5px solid #000;border-bottom:5px solid transparent}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;padding:5px}.popover.top{margin-top:-5px}.popover.right{margin-left:5px}.popover.bottom{margin-top:5px}.popover.left{margin-left:-5px}.popover.top .arrow{bottom:0;left:50%;margin-left:-5px;border-top:5px solid #000;border-right:5px solid transparent;border-left:5px solid transparent}.popover.right .arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-right:5px solid #000;border-bottom:5px solid transparent}.popover.bottom .arrow{top:0;left:50%;margin-left:-5px;border-right:5px solid transparent;border-bottom:5px solid #000;border-left:5px solid transparent}.popover.left .arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000}.popover .arrow{position:absolute;width:0;height:0}.popover-inner{width:280px;padding:3px;overflow:hidden;background:#000;background:rgba(0,0,0,0.8);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3)}.popover-title{padding:9px 15px;line-height:1;background-color:#f5f5f5;border-bottom:1px solid #eee;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0}.popover-content{padding:14px;background-color:#fff;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0}.thumbnails{margin-left:-20px;list-style:none;*zoom:1}.thumbnails:before,.thumbnails:after{display:table;content:""}.thumbnails:after{clear:both}.row-fluid .thumbnails{margin-left:0}.thumbnails>li{float:left;margin-bottom:18px;margin-left:20px}.thumbnail{display:block;padding:4px;line-height:1;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:0 1px 1px rgba(0,0,0,0.075);box-shadow:0 1px 1px rgba(0,0,0,0.075)}a.thumbnail:hover{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25)}.thumbnail>img{display:block;max-width:100%;margin-right:auto;margin-left:auto}.thumbnail .caption{padding:9px}.label,.badge{font-size:10.998px;font-weight:bold;line-height:14px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);white-space:nowrap;vertical-align:baseline;background-color:#999}.label{padding:1px 4px 2px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.badge{padding:1px 9px 2px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px}a.label:hover,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.label-important,.badge-important{background-color:#b94a48}.label-important[href],.badge-important[href]{background-color:#953b39}.label-warning,.badge-warning{background-color:#f89406}.label-warning[href],.badge-warning[href]{background-color:#c67605}.label-success,.badge-success{background-color:#468847}.label-success[href],.badge-success[href]{background-color:#356635}.label-info,.badge-info{background-color:#3a87ad}.label-info[href],.badge-info[href]{background-color:#2d6987}.label-inverse,.badge-inverse{background-color:#333}.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:18px;margin-bottom:18px;overflow:hidden;background-color:#f7f7f7;background-image:-moz-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-ms-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));background-image:-webkit-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-o-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:linear-gradient(top,#f5f5f5,#f9f9f9);background-repeat:repeat-x;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5',endColorstr='#f9f9f9',GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress .bar{width:0;height:18px;font-size:12px;color:#fff;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top,#149bdf,#0480be);background-image:-webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));background-image:-webkit-linear-gradient(top,#149bdf,#0480be);background-image:-o-linear-gradient(top,#149bdf,#0480be);background-image:linear-gradient(top,#149bdf,#0480be);background-image:-ms-linear-gradient(top,#149bdf,#0480be);background-repeat:repeat-x;filter:progid:dximagetransform.microsoft.gradient(startColorstr='#149bdf',endColorstr='#0480be',GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-ms-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .bar{background-color:#149bdf;background-image:-o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px}.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-danger .bar{background-color:#dd514c;background-image:-moz-linear-gradient(top,#ee5f5b,#c43c35);background-image:-ms-linear-gradient(top,#ee5f5b,#c43c35);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35));background-image:-webkit-linear-gradient(top,#ee5f5b,#c43c35);background-image:-o-linear-gradient(top,#ee5f5b,#c43c35);background-image:linear-gradient(top,#ee5f5b,#c43c35);background-repeat:repeat-x;filter:progid:dximagetransform.microsoft.gradient(startColorstr='#ee5f5b',endColorstr='#c43c35',GradientType=0)}.progress-danger.progress-striped .bar{background-color:#ee5f5b;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-success .bar{background-color:#5eb95e;background-image:-moz-linear-gradient(top,#62c462,#57a957);background-image:-ms-linear-gradient(top,#62c462,#57a957);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#57a957));background-image:-webkit-linear-gradient(top,#62c462,#57a957);background-image:-o-linear-gradient(top,#62c462,#57a957);background-image:linear-gradient(top,#62c462,#57a957);background-repeat:repeat-x;filter:progid:dximagetransform.microsoft.gradient(startColorstr='#62c462',endColorstr='#57a957',GradientType=0)}.progress-success.progress-striped .bar{background-color:#62c462;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-info .bar{background-color:#4bb1cf;background-image:-moz-linear-gradient(top,#5bc0de,#339bb9);background-image:-ms-linear-gradient(top,#5bc0de,#339bb9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#339bb9));background-image:-webkit-linear-gradient(top,#5bc0de,#339bb9);background-image:-o-linear-gradient(top,#5bc0de,#339bb9);background-image:linear-gradient(top,#5bc0de,#339bb9);background-repeat:repeat-x;filter:progid:dximagetransform.microsoft.gradient(startColorstr='#5bc0de',endColorstr='#339bb9',GradientType=0)}.progress-info.progress-striped .bar{background-color:#5bc0de;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-warning .bar{background-color:#faa732;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-ms-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(top,#fbb450,#f89406);background-repeat:repeat-x;filter:progid:dximagetransform.microsoft.gradient(startColorstr='#fbb450',endColorstr='#f89406',GradientType=0)}.progress-warning.progress-striped .bar{background-color:#fbb450;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.accordion{margin-bottom:18px}.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.accordion-heading{border-bottom:0}.accordion-heading .accordion-toggle{display:block;padding:8px 15px}.accordion-toggle{cursor:pointer}.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5}.carousel{position:relative;margin-bottom:18px;line-height:1}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel .item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-ms-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel .item>img{display:block;line-height:1}.carousel .active,.carousel .next,.carousel .prev{display:block}.carousel .active{left:0}.carousel .next,.carousel .prev{position:absolute;top:0;width:100%}.carousel .next{left:100%}.carousel .prev{left:-100%}.carousel .next.left,.carousel .prev.right{left:0}.carousel .active.left{left:-100%}.carousel .active.right{left:100%}.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50)}.carousel-control.right{right:15px;left:auto}.carousel-control:hover{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-caption{position:absolute;right:0;bottom:0;left:0;padding:10px 15px 5px;background:#333;background:rgba(0,0,0,0.75)}.carousel-caption h4,.carousel-caption p{color:#fff}.hero-unit{padding:60px;margin-bottom:30px;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;letter-spacing:-1px;color:inherit}.hero-unit p{font-size:18px;font-weight:200;line-height:27px;color:inherit}.pull-right{float:right}.pull-left{float:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden} diff --git a/ckan/public/css/chosen.css b/ckan/public/css/chosen.css deleted file mode 100644 index 1405ebbfc5a..00000000000 --- a/ckan/public/css/chosen.css +++ /dev/null @@ -1,390 +0,0 @@ -/* @group Base */ -.chzn-container { - font-size: 13px; - position: relative; - display: inline-block; - zoom: 1; - *display: inline; -} -.chzn-container .chzn-drop { - background: #fff; - border: 1px solid #aaa; - border-top: 0; - position: absolute; - top: 29px; - left: 0; - -webkit-box-shadow: 0 4px 5px rgba(0,0,0,.15); - -moz-box-shadow : 0 4px 5px rgba(0,0,0,.15); - -o-box-shadow : 0 4px 5px rgba(0,0,0,.15); - box-shadow : 0 4px 5px rgba(0,0,0,.15); - z-index: 999; -} -/* @end */ - -/* @group Single Chosen */ -.chzn-container-single .chzn-single { - background-color: #ffffff; - background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f4f4f4), color-stop(0.48, #eeeeee), color-stop(0.5, #f6f6f6), color-stop(0.8, #ffffff)); - background-image: -webkit-linear-gradient(center bottom, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%); - background-image: -moz-linear-gradient(center bottom, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%); - background-image: -o-linear-gradient(top, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%); - background-image: -ms-linear-gradient(top, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 ); - background-image: linear-gradient(top, #f4f4f4 0%, #eeeeee 48%, #f6f6f6 50%, #ffffff 80%); - -webkit-border-radius: 5px; - -moz-border-radius : 5px; - border-radius : 5px; - -moz-background-clip : padding; - -webkit-background-clip: padding-box; - background-clip : padding-box; - border: 1px solid #aaaaaa; - -webkit-box-shadow: 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1); - -moz-box-shadow : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1); - box-shadow : 0 0 3px #ffffff inset, 0 1px 1px rgba(0,0,0,0.1); - display: block; - overflow: hidden; - white-space: nowrap; - position: relative; - height: 23px; - line-height: 24px; - padding: 0 0 0 8px; - color: #444444; - text-decoration: none; -} -.chzn-container-single .chzn-single span { - margin-right: 26px; - display: block; - overflow: hidden; - white-space: nowrap; - -o-text-overflow: ellipsis; - -ms-text-overflow: ellipsis; - text-overflow: ellipsis; -} -.chzn-container-single .chzn-single abbr { - display: block; - position: absolute; - right: 26px; - top: 6px; - width: 12px; - height: 13px; - font-size: 1px; - background: url('../images/chosen-sprite.png') right top no-repeat; -} -.chzn-container-single .chzn-single abbr:hover { - background-position: right -11px; -} -.chzn-container-single .chzn-single div { - position: absolute; - right: 0; - top: 0; - display: block; - height: 100%; - width: 18px; -} -.chzn-container-single .chzn-single div b { - background: url('../images/chosen-sprite.png') no-repeat 0 0; - display: block; - width: 100%; - height: 100%; -} -.chzn-container-single .chzn-search { - padding: 3px 4px; - position: relative; - margin: 0; - white-space: nowrap; - z-index: 1010; -} -.chzn-container-single .chzn-search input { - background: #fff url('../images/chosen-sprite.png') no-repeat 100% -22px; - background: url('../images/chosen-sprite.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee)); - background: url('../images/chosen-sprite.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%); - background: url('../images/chosen-sprite.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%); - background: url('../images/chosen-sprite.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%); - background: url('../images/chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%); - background: url('../images/chosen-sprite.png') no-repeat 100% -22px, linear-gradient(top, #ffffff 85%,#eeeeee 99%); - margin: 1px 0; - padding: 4px 20px 4px 5px; - outline: 0; - border: 1px solid #aaa; - font-family: sans-serif; - font-size: 1em; -} -.chzn-container-single .chzn-drop { - -webkit-border-radius: 0 0 4px 4px; - -moz-border-radius : 0 0 4px 4px; - border-radius : 0 0 4px 4px; - -moz-background-clip : padding; - -webkit-background-clip: padding-box; - background-clip : padding-box; -} -/* @end */ - -.chzn-container-single-nosearch .chzn-search input { - position: absolute; - left: -9000px; -} - -/* @group Multi Chosen */ -.chzn-container-multi .chzn-choices { - background-color: #fff; - background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee)); - background-image: -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%); - background-image: -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%); - background-image: -o-linear-gradient(bottom, white 85%, #eeeeee 99%); - background-image: -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 ); - background-image: linear-gradient(top, #ffffff 85%, #eeeeee 99%); - border: 1px solid #aaa; - margin: 0; - padding: 0; - cursor: text; - overflow: hidden; - height: auto !important; - height: 1%; - position: relative; -} -.chzn-container-multi .chzn-choices li { - float: left; - list-style: none; -} -.chzn-container-multi .chzn-choices .search-field { - white-space: nowrap; - margin: 0; - padding: 0; -} -.chzn-container-multi .chzn-choices .search-field input { - color: #666; - background: transparent !important; - border: 0 !important; - font-family: sans-serif; - font-size: 100%; - height: 15px; - padding: 5px; - margin: 1px 0; - outline: 0; - -webkit-box-shadow: none; - -moz-box-shadow : none; - -o-box-shadow : none; - box-shadow : none; -} -.chzn-container-multi .chzn-choices .search-field .default { - color: #999; -} -.chzn-container-multi .chzn-choices .search-choice { - -webkit-border-radius: 3px; - -moz-border-radius : 3px; - border-radius : 3px; - -moz-background-clip : padding; - -webkit-background-clip: padding-box; - background-clip : padding-box; - background-color: #e4e4e4; - background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.48, #e8e8e8), color-stop(0.5, #f0f0f0), color-stop(0.8, #f4f4f4)); - background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, #e8e8e8 48%, #f0f0f0 50%, #f4f4f4 80%); - background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, #e8e8e8 48%, #f0f0f0 50%, #f4f4f4 80%); - background-image: -o-linear-gradient(top, #eeeeee 0%, #e8e8e8 48%, #f0f0f0 50%, #f4f4f4 80%); - background-image: -ms-linear-gradient(top, #eeeeee 0%, #e8e8e8 48%, #f0f0f0 50%, #f4f4f4 80%); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#f4f4f4',GradientType=0 ); - background-image: linear-gradient(top, #eeeeee 0%, #e8e8e8 48%, #f0f0f0 50%, #f4f4f4 80%); - -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05); - -moz-box-shadow : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05); - box-shadow : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05); - color: #333; - border: 1px solid #aaaaaa; - line-height: 13px; - padding: 3px 20px 3px 5px; - margin: 3px 0 3px 5px; - position: relative; -} -.chzn-container-multi .chzn-choices .search-choice span { - cursor: default; -} -.chzn-container-multi .chzn-choices .search-choice-focus { - background: #d4d4d4; -} -.chzn-container-multi .chzn-choices .search-choice .search-choice-close { - display: block; - position: absolute; - right: 3px; - top: 4px; - width: 12px; - height: 13px; - font-size: 1px; - background: url('../images/chosen-sprite.png') right top no-repeat; -} -.chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover { - background-position: right -11px; -} -.chzn-container-multi .chzn-choices .search-choice-focus .search-choice-close { - background-position: right -11px; -} -/* @end */ - -/* @group Results */ -.chzn-container .chzn-results { - margin: 0 4px 4px 0; - max-height: 240px; - padding: 0 0 0 4px; - position: relative; - overflow-x: hidden; - overflow-y: auto; -} -.chzn-container-multi .chzn-results { - margin: -1px 0 0; - padding: 0; -} -.chzn-container .chzn-results li { - display: none; - line-height: 15px; - padding: 5px 6px; - margin: 0; - list-style: none; -} -.chzn-container .chzn-results .active-result { - cursor: pointer; - display: list-item; -} -.chzn-container .chzn-results .highlighted { - background-color: #3875d7; - background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.1, #2a62bc), color-stop(0.8, #3875d7)); - background-image: -webkit-linear-gradient(center bottom, #2a62bc 10%, #3875d7 80%); - background-image: -moz-linear-gradient(center bottom, #2a62bc 10%, #3875d7 80%); - background-image: -o-linear-gradient(bottom, #2a62bc 10%, #3875d7 80%); - background-image: -ms-linear-gradient(top, #2a62bc 10%, #3875d7 80%); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2a62bc', endColorstr='#3875d7',GradientType=0 ); - background-image: linear-gradient(top, #2a62bc 10%, #3875d7 80%); - color: #fff; -} -.chzn-container .chzn-results li em { - background: #feffde; - font-style: normal; -} -.chzn-container .chzn-results .highlighted em { - background: transparent; -} -.chzn-container .chzn-results .no-results { - background: #f4f4f4; - display: list-item; -} -.chzn-container .chzn-results .group-result { - cursor: default; - color: #999; - font-weight: bold; -} -.chzn-container .chzn-results .group-option { - padding-left: 15px; -} -.chzn-container-multi .chzn-drop .result-selected { - display: none; -} -.chzn-container .chzn-results-scroll { - background: white; - margin: 0px 4px; - position: absolute; - text-align: center; - width: 321px; /* This should by dynamic with js */ - z-index: 1; -} -.chzn-container .chzn-results-scroll span { - display: inline-block; - height: 17px; - text-indent: -5000px; - width: 9px; -} -.chzn-container .chzn-results-scroll-down { - bottom: 0; -} -.chzn-container .chzn-results-scroll-down span { - background: url('../images/chosen-sprite.png') no-repeat -4px -3px; -} -.chzn-container .chzn-results-scroll-up span { - background: url('../images/chosen-sprite.png') no-repeat -22px -3px; -} -/* @end */ - -/* @group Active */ -.chzn-container-active .chzn-single { - -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3); - -moz-box-shadow : 0 0 5px rgba(0,0,0,.3); - -o-box-shadow : 0 0 5px rgba(0,0,0,.3); - box-shadow : 0 0 5px rgba(0,0,0,.3); - border: 1px solid #5897fb; -} -.chzn-container-active .chzn-single-with-drop { - border: 1px solid #aaa; - -webkit-box-shadow: 0 1px 0 #fff inset; - -moz-box-shadow : 0 1px 0 #fff inset; - -o-box-shadow : 0 1px 0 #fff inset; - box-shadow : 0 1px 0 #fff inset; - background-color: #eee; - background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.2, white), color-stop(0.8, #eeeeee)); - background-image: -webkit-linear-gradient(center bottom, white 20%, #eeeeee 80%); - background-image: -moz-linear-gradient(center bottom, white 20%, #eeeeee 80%); - background-image: -o-linear-gradient(bottom, white 20%, #eeeeee 80%); - background-image: -ms-linear-gradient(top, #ffffff 20%,#eeeeee 80%); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 ); - background-image: linear-gradient(top, #ffffff 20%,#eeeeee 80%); - -webkit-border-bottom-left-radius : 0; - -webkit-border-bottom-right-radius: 0; - -moz-border-radius-bottomleft : 0; - -moz-border-radius-bottomright: 0; - border-bottom-left-radius : 0; - border-bottom-right-radius: 0; -} -.chzn-container-active .chzn-single-with-drop div { - background: transparent; - border-left: none; -} -.chzn-container-active .chzn-single-with-drop div b { - background-position: -18px 1px; -} -.chzn-container-active .chzn-choices { - -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3); - -moz-box-shadow : 0 0 5px rgba(0,0,0,.3); - -o-box-shadow : 0 0 5px rgba(0,0,0,.3); - box-shadow : 0 0 5px rgba(0,0,0,.3); - border: 1px solid #5897fb; -} -.chzn-container-active .chzn-choices .search-field input { - color: #111 !important; -} -/* @end */ - -/* @group Disabled Support */ -.chzn-disabled { - cursor: default; - opacity:0.5 !important; -} -.chzn-disabled .chzn-single { - cursor: default; -} -.chzn-disabled .chzn-choices .search-choice .search-choice-close { - cursor: default; -} - -/* @group Right to Left */ -.chzn-rtl { direction:rtl;text-align: right; } -.chzn-rtl .chzn-single { padding-left: 0; padding-right: 8px; } -.chzn-rtl .chzn-single span { margin-left: 26px; margin-right: 0; } - -.chzn-rtl .chzn-single div { left: 3px; right: auto; } -.chzn-rtl .chzn-single abbr { - left: 26px; - right: auto; -} -.chzn-rtl .chzn-choices li { float: right; } -.chzn-rtl .chzn-choices .search-choice { padding: 3px 5px 3px 19px; margin: 3px 5px 3px 0; } -.chzn-rtl .chzn-choices .search-choice .search-choice-close { left: 4px; right: auto; background-position: right top;} -.chzn-rtl.chzn-container-single .chzn-results { margin-left: 4px; margin-right: 0; padding-left: 0; padding-right: 4px; } -.chzn-rtl .chzn-results .group-option { padding-left: 0; padding-right: 20px; } -.chzn-rtl.chzn-container-active .chzn-single-with-drop div { border-right: none; } -.chzn-rtl .chzn-search input { - background: url('../images/chosen-sprite.png') no-repeat -38px -22px, #ffffff; - background: url('../images/chosen-sprite.png') no-repeat -38px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee)); - background: url('../images/chosen-sprite.png') no-repeat -38px -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%); - background: url('../images/chosen-sprite.png') no-repeat -38px -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%); - background: url('../images/chosen-sprite.png') no-repeat -38px -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%); - background: url('../images/chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%); - background: url('../images/chosen-sprite.png') no-repeat -38px -22px, linear-gradient(top, #ffffff 85%,#eeeeee 99%); - padding: 4px 5px 4px 20px; -} -/* @end */ \ No newline at end of file diff --git a/ckan/public/css/forms.css b/ckan/public/css/forms.css deleted file mode 100644 index e1a6a46de91..00000000000 --- a/ckan/public/css/forms.css +++ /dev/null @@ -1,199 +0,0 @@ -/* Generated at 2010-03-25 16:44:39 from css@pearl.joyent.us commit 1d2b5cf. */ - -fieldset { - padding: 1em; - margin: 0 0 1.5em 0; - border-bottom: 1px solid #ccc; } - -legend { - font-weight: bold; - font-size: 1.2em; } - -textarea, select, -input[type=text], input.text, -input[type=password], input.password, -input[type=email], input.email, -input[type=url], input.url { - padding: 0.3em; - width: 30em; - margin: 0 0 0.5em 0; - background: #fff; - border: 1px solid #bbb; } - textarea:focus, select:focus, - input[type=text]:focus, input.text:focus, - input[type=password]:focus, input.password:focus, - input[type=email]:focus, input.email:focus, - input[type=url]:focus, input.url:focus { - border-color: #666; } - textarea.has-errors, select.has-errors, - textarea.fieldWithErrors, select.fieldWithErrors, - input[type=text].has-errors, input.text.has-errors, - input[type=text].fieldWithErrors, input.text.fieldWithErrors, - input[type=password].has-errors, input.password.has-errors, - input[type=password].fieldWithErrors, input.password.fieldWithErrors, - input[type=email].has-errors, input.email.has-errors, - input[type=email].fieldWithErrors, input.email.fieldWithErrors, - input[type=url].has-errors, input.url.has-errors, - input[type=url].fieldWithErrors, input.url.fieldWithErrors { - border-color: #d12f19; } - table textarea, table select, - table input[type=text], table input.text, - table input[type=password], table input.password, - table input[type=email], table input.email, - table input[type=url], table input.url { - margin: 0; } - -input.title { - font-size: 1.5em; } -input.short { - width: 15em; } -table input.short { - width: 12em; } -input.medium-width { - width: 25em; } -table input.medium-width { - width: 20em; } -input.long { - width: 100%; } - -select.short { - width: 14.5em; } - -textarea { - width: 30em; - height: 15em; } -textarea.short { - height: 1em; } -textarea.wide { - width: 55; - height: 1em; } - -select[multiple], select.multiple { - padding: 0; - height: 10em; } - -form dl { - *display: inline-block; - clear: left; - width: 100%; - background: transparent url(../images/dlbg.png) repeat-y 21% top; - padding: 0.5em 0; } - form dl:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; } - form dl dt { - width: 20%; - margin: 1em 0 0 0; - float: left; - clear: right; - text-align: right; } - form dl dt:first-child, form dl dt:first-child + dd { - margin-top: 0em; } - form dl dd { - float: right; - min-height: 1.5em; - width: 78%; - margin: 0 0 0 2%; } - form dl dt + dd { - margin-top: 1em; } - form dl dt, form dl dd { - font-size: 1em; - line-height: 1.5em; } - * html form dl { - height: 1px; } - form dl dd img { - vertical-align: middle; } - form dl dd ul { - margin: 0.5em 0 0 0; - padding-top: 0; - padding-right: 0; - padding-bottom: 0; - } - form dl dd.notes, form dl dd.hints, .hints { - padding: 0 0 0.3em 0; - color: #555; - font-size: 90%; - } - -label.has-errors, label.fieldWithErrors { - font-weight: bold; - color: #d12f19; } - -label { - display: block; - padding: 0.2em; -} - -form .field_error, form .error-explanation { - display: none; } -form.has-errors .field_error, form.has-errors .error-explanation { - display: block; } - -.field_error { - color: #d12f19; - left: 20px; - padding-left: 20px; - position: relative; - background: transparent url(../images/icons/error.png) left 3px no-repeat; } - -td.field_warning { - color: #d12f19; } - -.fieldset_button_error { - background: transparent url(../images/icons/error.png) left center no-repeat; } - -.error-explanation, -#errorExplanation { - background: #fff; - border: 1px solid #d12f19; - margin-bottom: 1em; - clear: left; } - .error-explanation h2, - #errorExplanation h2 { - margin: 0; - font-size: 1.1em; - font-weight: bold; - padding-left: 1em; - line-height: 2.6em; - background: #d12f19; - color: #fff; } - .error-explanation ul, .error-explanation p, - #errorExplanation ul, #errorExplanation p { - margin: 0.5em 1em; } - .error-explanation ul, - #errorExplanation ul { - margin-left: 2em; } - -.taglist { - margin-top: 0; } - .taglist li { - -moz-border-radius: 0.4em; - -webkit-border-radius: 0.4em; - border-radius: 0.4em; - margin: 0 0.3em 0 0; - padding: 0 0.5em; - background: #395ee8; - font-weight: bold; - color: white; - display: inline; - float: left; - line-height: 16px; } - .taglist li img { - opacity: 0.5; } - .taglist li img:hover { - opacity: 1; } - -#preview { - margin-bottom: 30px; - } - -#openid_form { - width: 100%; -} - -#openid_input_area { - padding: 0px; -} diff --git a/ckan/public/css/handheld.css b/ckan/public/css/handheld.css deleted file mode 100755 index 262416019fb..00000000000 --- a/ckan/public/css/handheld.css +++ /dev/null @@ -1,8 +0,0 @@ -* { - float: none; - background: #fff; - color: #000; -} - - -body { font-size: 80%; } \ No newline at end of file diff --git a/ckan/public/css/style.css b/ckan/public/css/style.css deleted file mode 100644 index 6df5b558884..00000000000 --- a/ckan/public/css/style.css +++ /dev/null @@ -1,1507 +0,0 @@ -body.no-sidebar .sidebar-outer { display: none; } -body.no-sidebar #content { padding-right: 0; border-right: none; } -body.no-sidebar .content-outer { - width: 940px; -} - -.header.outer { - background-color: #e2e2e2; - background-image: -webkit-gradient(linear, left top, left bottom, from(#e2e2e2), to(#cccccc)); - background-image: -webkit-linear-gradient(top, #e2e2e2, #cccccc); - background-image: -moz-linear-gradient(top, #e2e2e2, #cccccc); - background-image: -ms-linear-gradient(top, #e2e2e2, #cccccc); - background-image: -o-linear-gradient(top, #e2e2e2, #cccccc); - background-image: linear-gradient(top, #e2e2e2, #cccccc); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#e2e2e2', EndColorStr='#cccccc'); - - margin-bottom: 18px; - -moz-box-shadow: 0px 2px 15px #dddddd; - -webkit-box-shadow: 0px 2px 15px #dddddd; - box-shadow: 0px 2px 15px #dddddd; - border-bottom: 1px solid #ccc; -} - -header { - padding: 5px 0px 5px 0px; -} - -header #logo { - float: left; -} - -header #site-name { - font-size: 1.4em; - font-family: Ubuntu, sans-serif; - padding: 5px; - padding-left: 82px; - padding-bottom: 2px; - /*font-weight: bold;*/ - color: #333; - text-shadow: 1px 1px 3px #ccc; - line-height: 1.3; -} - -header #site-name a { - color: #000; -} - -header .menu form { - display: inline; -} - -header .menu input { - width: 200px; - margin-top: 2px; - height: 10px; -} - -header .menu a { - display: inline-block; - padding-top: 5px; - font-size: 1.1em; - text-decoration: none; - font-weight: bold; - margin-left: 1.5em; - text-shadow: 1px 1px 3px #ccc; -} - -header .menu #menusearch { - float: right; -} - -header .menu #mainmenu { - display: inline; -} - -header .account { - float: right; -} - -header .search { - margin: 1px; - margin-left: 1em; - border: 1px solid #ccc; - font-size: 1.1em; - padding: 0.4em; - font-weight: bold; - - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - border-radius: 5px; - -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -} - -.footer.outer { - border-top: 2px solid #ccc; - background-color: #dbdbdb; - background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#ffffff)); - background-image: -webkit-linear-gradient(top, #dbdbdb, #ffffff); - background-image: -moz-linear-gradient(top, #dbdbdb, #ffffff); - background-image: -ms-linear-gradient(top, #dbdbdb, #ffffff); - background-image: -o-linear-gradient(top, #dbdbdb, #ffffff); - background-image: linear-gradient(top, #dbdbdb, #ffffff); - fromilter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#dbdbdb', EndColorStr='#ffffff'); -} - -html, body { - height: 100%; -} - -#wrap { - height: auto !important; - height: 100%; - margin: 0 auto 1%; -} - -footer, #push { - height: auto; -} - -footer { - margin-top: 5px; - padding-top: 1em; -} - -footer a { - text-decoration: none; -} - -footer h3 { - font-size: 1.2em; -} - -h1, h2, h3, h4, h5 { - font-family: 'Ubuntu', Georgia; - font-weight: normal; - margin-bottom: 10px; -} - -a, a:visited { - color: #bb2222; - text-decoration: none; -} - -a:hover { - color: #183661; -} - -a.btn-primary:visited { - color: #fff; -} - -label.control-label { - font-weight: bold; -} - - -/* ====== */ -/* Tables */ -/* ====== */ -/* -table th { - border: 1px solid #e0e0e0; - background-color: #e2e2e2; - background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), to(#e2e2e2)); - background-image: -webkit-linear-gradient(top, #f0f0f0, #e2e2e2); - background-image: -moz-linear-gradient(top, #f0f0f0, #e2e2e2); - background-image: -ms-linear-gradient(top, #f0f0f0, #e2e2e2); - background-image: -o-linear-gradient(top, #f0f0f0, #e2e2e2); - background-image: linear-gradient(top, #f0f0f0, #e2e2e2); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f0f0f0', EndColorStr='#e2e2e2'); -} -table caption { - caption-side: bottom; - color: #888; - font-size: 0.9em; - background-color: white; -} -tbody tr:nth-child(even) td, tbody tr.even td { - background-color: #F9F9F9; -} -tbody tr:nth-child(odd) td, tbody tr.odd td { - background-color: #F2F2F2; -} -*/ - - -/* ==================== */ -/* Common page elements */ -/* ==================== */ -#content { - border-right: 1px solid #e0e0e0; - padding-right: 20px; -} -.page_heading { - margin-top: 0.9em; - margin-bottom: 0.7em; - font-size: 2.2em; - font-weight: normal; -} -#page-logo { - max-width: 36px; - max-height: 36px; - vertical-align: text-top; -} -.hover-for-help { - position: relative; -} -.hover-for-help > .help-text { - position: absolute; - top: 24px; - left: -90px; - display: none; - padding: 2px 8px; - font-size: 11px; - background: #333; - text-align: left; - width: 250px; - z-index: 3; - color: #fff; -} -.hover-for-help > .help-text > span { - display: block; - padding: 2px 0; -} -.hover-for-help > .help-text > span.fail { - color: #999; -} -.hover-for-help:hover > .help-text { - display: block; -} -.semi-link { - border-bottom: 1px dashed #000; -} - -img.gravatar { - margin: 0 5px -5px 0; - border-radius: 3px; - vertical-align: baseline; -} - -.inline-icon { - padding-right: 5px; - vertical-align: top; -} - -.drag-drop-list { - list-style-type: none; - margin: 0; - padding: 0; -} -.drag-drop-list li { - margin-bottom: 3px; - cursor: move; -} -.drag-drop-list li.drag-bars { - padding-left: 35px; - background-image: url('/images/dragbars.png'); - background-repeat: no-repeat; - background-position: top left; -} - -ul.no-break li { - white-space: nowrap; - overflow: hidden; -} - -/* =============== */ -/* MinorNavigation */ -/* =============== */ -#minornavigation .nav { - margin: 0 0 1em 0 ; - border: 1px solid #e0e0e0; - background-color: #e2e2e2; - background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), to(#e2e2e2)); - background-image: -webkit-linear-gradient(top, #f0f0f0, #e2e2e2); - background-image: -moz-linear-gradient(top, #f0f0f0, #e2e2e2); - background-image: -ms-linear-gradient(top, #f0f0f0, #e2e2e2); - background-image: -o-linear-gradient(top, #f0f0f0, #e2e2e2); - background-image: linear-gradient(top, #f0f0f0, #e2e2e2); - filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f0f0f0', EndColorStr='#e2e2e2'); - - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - border-radius: 5px; - -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; - padding: 2px 4px; - font-weight: bold; -} -#minornavigation .nav > li > a { - border: 1px solid transparent; - border-bottom: none; - border-right: none; - height: 14px; - margin-right: 5px; - padding-top: 7px; -} -#minornavigation .nav > li > a:hover { - border-color: #bbb; -} -#minornavigation .nav > li.active > a { - background: #fff; - border-color: #666; - color: #000; -} -#minornavigation .nav > li.open > a { - border-color: #666; -} -#minornavigation .nav > li.disabled > a, -#minornavigation .nav > li.disabled > a:hover { - color: #888; - border-color: transparent; - background: transparent; -} -#minornavigation .caret { - border-top-color: #555; - margin-left: 8px; -} -#minornavigation .nav > li.open .caret { - border-top-color: #fff; -} -#minornavigation .divider { - padding: 8px 10px; - font-size: 14px; - color: #888; -} -.dropdown-menu { - min-width: 250px; -} -.dropdown-menu a { - font-weight: bold; - padding: 5px 15px; - margin-bottom: 2px; - color: #bb2222; -} -.dropdown-menu hr { - margin: 4px 0; -} -.dropdown-menu li:last-child a { - margin-bottom: 0; -} -.dropdown-menu li:hover a { - color: #183661; - background: #eee; -} - - -/* ======= */ -/* Sidebar */ -/* ======= */ -#sidebar { - overflow: hidden; -} -#sidebar h2, -#sidebar h3 { - font-size: 1.3em; -} -#sidebar .widget-list { - list-style: none; - margin-left: 0px; -} -#sidebar .widget-list li.widget-container { - padding-bottom: 1em; - border-bottom: 1px solid #e0e0e0; - margin-bottom: 1em; -} -#sidebar .widget-list li.widget-container.boxed { - border-bottom: 0; - background-color: #FFF7C0; - padding: 15px; - padding-top: 10px; - -moz-border-radius: 15px; - -webkit-border-radius: 15px; - border-radius: 15px; -} - - -/* ============== */ -/* = Pagination = */ -/* ============== */ -.pagination-alphabet a { - padding: 0 6px; -} - -/* ====== */ -/* Facets */ -/* ====== */ -.facet-box h2 { - color: #000; - font-size: 1.2em; -} -.facet-box .facet-options { - margin-top: 0.5em; -} -.facet-box .facet-options li { - padding-top: 0.2em; - color: #000; -} - - -/* ======================= */ -/* = Generic Form Footer = */ -/* ======================= */ -div.form-actions p.hints { - width: 50%; - margin: 10px 0 0 0; -} - - -/* ============= */ -/* = Home Page = */ -/* ============= */ -body.index.home #sidebar { - display: none; -} -body.index.home .front-page .action-box h1 { - padding-top: 0.6em; - padding-bottom: 0.5em; - font-size: 2.1em; -} -body.index.home .front-page .action-box { - border-radius: 20px; - background: #FFF7C0; -} -body.index.home .front-page .action-box-inner { - padding: 0 20px 20px; - min-height: 13.4em; -} -body.index.home .front-page .action-box-inner :last-child { - margin-bottom: 0; -} -body.index.home .front-page .action-box-inner.collaborate { - background:url(../img/collaborate.png) no-repeat right top; -} -body.index.home .front-page .action-box-inner.share { - background:url(../img/share.png) no-repeat right top; -} -body.index.home .front-page .action-box-inner.find { - background:url(../img/find.png) no-repeat right top; -} -body.index.home .front-page .action-box-inner a { - font-weight: bold; -} -body.index.home .front-page .action-box-inner input { - font-family: 'Ubuntu'; - border-radius: 10px; - background-color: #fff; - font-size: 1.3em; - width: 90%; - border: 1px solid #999; - color: #666; - padding: 0.5em; - display: inline-block; - margin-right: 5px; - margin-bottom: 10px; - line-height: 16px; -} -body.index.home .front-page .action-box-inner .create-button { - display: block; - float: right; - font-weight: normal; - font-family: 'Ubuntu'; - border-radius: 10px; - background-color: #B22; - border: 0px; - font-size: 1.3em; - color: #fff; - padding: 0.5em; -} -body.index.home .front-page .action-box-inner .create-button:hover { - background-color: #822; -} -body.index.home .front-page .action-box-inner ul { - margin-top: 1em; - margin-bottom: 0; -} -body.index.home .front-page .whoelse { - margin-top: 1em; -} -body.index.home .front-page .group { - overflow: hidden; -} -body.index.home .front-page .group h3 { - margin-bottom: 0.5em; -} -body.index.home .front-page .group p { - margin-bottom: 0em; - min-height: 6em; -} -body.index.home .front-page .group strong { - display: block; - margin-bottom: 1.5em; -} - - -/* ======================== */ -/* Search Page: Filter List */ -/* ======================== */ -.filter-list { - display: inline-block; - margin-right: 5px; - margin-bottom: 10px; - padding: 2px 2px 4px 3px; - font-size: 14px; - background-color: #FFF7C0; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; - line-height: 16px; -} -.filter-list img { - margin-bottom: -3px; -} -.filter-list .name::after { - content: ":"; -} -.filter-list .value { - font-weight: bold; -} - - -/* ============== */ -/* = Login Form = */ -/* ============== */ -form.simple-form label { - display: inline-block; - float: left; - min-width: 40%; - padding-top: 0.5em; - padding-bottom: 1em; -} -form.simple-form input[type=text], -form.simple-form input[type=password] { - border: 1px solid #E7E7E7; - padding: 0.5em; - width: 40%; - margin-bottom: 1em -} - - -/* ================================== */ -/* = Dataset/Group View: Sidebar List */ -/* ================================== */ -.property-list { - list-style-type: none; - padding-left: 3em; -} -.property-list li { - margin-bottom: 0.2em; - list-style-type: none; -} -.property-list li ul { - margin-left: -1.5em; -} -.property-list li h3 { - font-size: 1.1em; - margin-bottom: 0.5em; - margin-left: -2em; -} -/* Fix the indented headings on the groups page */ -.group.read .property-list { - margin-left: 0; - padding-left: 0; -} -.group.read .property-list li h3, -.group.read .property-list li ul { - margin-left: 0; -} -.group-dataset-list { - margin: 2em 0; -} - -.group-search-box input[type="search"] { - width: 100%; - margin-bottom: 20px; -} -.group-search-box input[type="submit"] { - float: right; -} - - -/* ============== */ -/* = User Index = */ -/* ============== */ - -ul.userlist, -ul.userlist ul { - list-style-type: none; - margin: 0; - padding: 0; -} -ul.userlist li.user { - display: inline-block; - width: 200px; - margin-bottom: 15px; -} -ul.userlist li ul span.edits { - color: #333; - font-size: 1.1em; - font-weight: bold; - margin-left: 3px; -} -ul.userlist .username img { - margin: 0 5px -6px 0; - border-radius: 3px; -} -ul.userlist .created { - color: #888; -} -ul.userlist .badge { - color: #fc0; -} -.user-search input[type=text], -.user-search input[type=password] { - width: 70%; - margin-top: 5px; -} - -/* ================================= */ -/* = User Read and Dashboard pages = */ -/* ================================= */ - -body.user.read #sidebar { display: none; } -body.user.read #content { - border-right: 0; - width: 950px; -} - -.user.read .page_heading, .user.dashboard .page_heading { - font-weight: bold; -} - -.user.read .page_heading img.gravatar, .user.dashboard .page_heading img.gravatar { - padding: 2px; - border: solid 1px #ddd; - vertical-align: middle; - margin-right: 5px; - margin-top: -3px; -} - -.user.read .page_heading .fullname, .user.dashboard .page_heading .fullname { - font-weight: normal; - color: #999; -} - -.user.read .rule { - clear: both; - margin-bottom: 15px; - padding-top: 20px; - border-bottom: 1px solid #ddd; -} - -.vcard dt { - width: 115px; - float: left; - font-weight: normal; - color: #999; -} - -.vcard dd { - margin-left: 115px; -} - -.user.read ul.stats { - margin-left: 0; - padding-left: 0; -} - -.user.read ul.stats li { - display: inline-block; - color: inherit; - width: 115px; -} - -.user.read ul.stats li strong { - font-size: 36px; - display: block; - line-height: 35px; -} - -.user.read ul.stats li span { - color: #999; -} - -.user.read .listing div.datasets .datasets { - padding-right: 15px; -} - -.user.read .listing .changes { -} - - -/* ========================= */ -/* = Dataset Snapshot View = */ -/* ========================= */ -.state-deleted, .state-deleted a, .state-deleted * { - color: rgba(0, 0, 0, 0.4); -} -.state-deleted { - padding-left: 3px; -} -.state-deleted:hover * { - color: rgba(0, 0, 0, 0.8); -} -.state-notice { - text-transform: uppercase; - font-size: 120%; - background: #aaa; - padding: 15px; - text-align: center; - color: #fff; -} - - -/* =============== */ -/* = Search Page = */ -/* =============== */ -body.package.search #menusearch { - display: none; -} -.dataset-search { - margin-bottom: 35px; -} -input.search { - width: 380px; - float: left; - font-size: 1.2em; - margin: 0px; - border: 1px solid #ccc; - padding: 0.6em 0.5em 0.6em 5px; - font-weight: bold; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - border-radius: 5px; - -moz-background-clip: padding; - -webkit-background-clip: padding-box; - background-clip: padding-box; -} -.dataset-search input.button { - display: inline-block; - float: left; - margin-left: 9px; -} - - -/* ======================================== */ -/* = Dataset listing (eg. search results) = */ -/* ======================================== */ -/* TODO strip and use .search-result class in markup everywhere */ -ul.datasets { - padding-left: 0; - margin: 0 0 1em 0; -} -ul.datasets li { - list-style: none; - padding: 1em 0 0.2em 0.0em; - border-bottom: 1px solid #ececec; - overflow: hidden; -} -ul.datasets li .header { - padding-top: 0.5em; - font-weight: bold; - font-size: 1.1em; -} -ul.datasets li .extract { - padding-top: 0.3em; -} -ul.datasets li a { - text-decoration: none; -} -ul.datasets li img { - margin-bottom: -2px; -} -ul.datasets .search_meta { - float:right; -} -ul.datasets ul.dataset_formats { - float: right; - padding: 0 0 3px 0; - margin: 0; - font-family: monospace; -} -ul.datasets ul.dataset_formats li { - display: inline; - margin: 0; - padding: 0 5px 0 5px; - border: none; - font-weight: normal; - font-size: 0.9em; - color: #808080; - background:#ececec; -} -ul.datasets .openness { - clear:right; - float:right; - font-size:0.8em; -} -ul.datasets .openness img { - vertical-align:top; -} -ul.datasets .openness li { - margin:0; - padding:0; - border:none; -} - - -/* =================== */ -/* = Markdown Editor = */ -/* =================== */ -.markdown-editor { - background: #EEE; - border-radius: 5px 5px; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border: 1px solid #CCC; - padding: 0 5px 5px 10px; - width: 32em; -} -.markdown-editor .button-row { - padding-right: 40px; - text-align: center; -} -.markdown-editor div.markdown-preview { - background: white; - border: 1px solid #CCC; - padding: 5px; - margin-bottom: 5px; - overflow: auto; -} -.markdown-editor textarea.markdown-input { - display: block; - width: 360px; - height: 70px; - margin: 0 0 5px 0; - padding: 5px; -} - - - -/* ============= */ -/* = Mini-Tabs = */ -/* ============= */ -ul.button-row { - margin-top: 5px; - margin-bottom: 5px; -} -ul.button-row li { - display: inline; - margin-right: 10px; -} - - -/* ===================== */ -/* = Edit Dataset Page = */ -/* ===================== */ -.dataset-edit-form button.dataset-delete { - vertical-align: middle; -} -.dataset-edit-form fieldset#summary { - border-top: 1px solid #ccc; - padding-top: 15px; -} -.dataset-edit-tabs ul.nav { - min-width: 180px; - margin-right: -1px; - background: #fff; -} -.dataset-edit-tabs form { - border: 1px solid #DDD; -} -.dataset-edit-tabs form > div, -.dataset-edit-tabs form > fieldset { - padding: 18px; -} -hr.extras-divider { - border: none; - border-bottom: 1px dashed #ddd; -} -span.extras-label { - display: inline-block; - min-width: 50px; - text-align: right; -} - - -/* ======================= */ -/* = Edit Resources Page = */ -/* ======================= */ -.dataset-editresources-form fieldset { - display: none; -} -.dataset-editresources-form fieldset#resources, -.dataset-editresources-form fieldset#summary { - display: block; -} - -.dataset-editresources-form .resource-add .fileinfo { - margin: 7px 0; -} -.name-field { - padding-top: 0.2em; -} -.name-field p { - margin: 2px 0; -} -.description-field textarea { - width: 400px; - height: 70px; -} -.resource-add > .nav { - margin-bottom: 0; - width: 522px; -} -.resource-add .tab-pane { - padding: 20px; - background: #fff; - border: 1px solid #DDD; - border-top: none; - width: 480px; - -} - -/* ==================== */ -/* = Add Dataset Page = */ -/* ==================== */ -.dataset-create-form fieldset { - /* Show only one field */ - display: none; -} -.dataset-create-form fieldset#basic-information, -.dataset-create-form fieldset#resources, -.dataset-create-form fieldset#summary { - display: block; -} -.dataset-create-form .homepage-field, -.dataset-create-form .tags-field { - display: none; -} -#license-instructions { - font-size: 11px; -} - -.group-create-form dd.name-field { - padding-top: 0.2em; -} -.group-create-form dd.name-field p { - margin-bottom: 4px; -} - -a.url-edit { - font-weight: normal; - margin-left: 10px; -} -p.url-is-long { - color: #600; - display: none; - font-size: 11px; - font-weight: bold; -} -div.author-box, -label.edit-summary { - font-size: 11px; - color: #666; -} -#log_message { - height: 40px; - width: 400px; - color: #666; - font-size: 11px; -} -#log_message:focus { - color: #000; -} - - -/* ===================== */ -/* = Dataset View Page = */ -/* ===================== */ -body.package.read .sidebar-section { - margin-bottom: 2em; -} -body.package.read .tags, body.package.read .groups { - padding: 0; -} -body.package.read .tags li, body.package.read .groups li { - list-style-type: none; - display: inline-block; - padding: 3px 3px 3px 0px; - margin-right: 6px; - padding:0 5px 2px 5px; - border:none; - font-weight:normal; - font-size:0.8em; - background:#afc6e9; -} -body.package.read .tags a, body.package.read .groups a { - color: black; -} -body.package.read .tags li:hover, -body.package.read .groups li:hover { - background: #bdf; -} -body.package.read .related-datasets { - padding: 0; -} -body.package.read .related-datasets li { - list-style-type: none; -} - -img.open-data { margin: 1px 0 0 8px; vertical-align: top; } -#dataset-resources { - margin-top: 2em; - margin-bottom: 2em; -} -body.package.read h3 { - margin-bottom: 8px; -} -.search-result { - border-left: 2px solid #eee; - margin: 0; - padding: 8px; - margin-bottom: 16px; -} -.search-result:hover { - border-left: 2px solid #aaa; - background: #f7f7f7; -} - -.search-result .main-link { - font-size: 125%; -} -.search-result .extra-links { - float: right; - text-align: right; -} -.search-result .view-more-link { - color: #000; - display: block; - margin-top: 4px; - padding: 3px 22px 3px 10px; - background: url('../images/icons/arrow-right-16-black.png') no-repeat right; - opacity:0.4; - filter:alpha(opacity=40); /* For IE8 and earlier */ -} -.search-result .view-more-link:hover { - opacity:1.0; - filter:alpha(opacity=100); /* For IE8 and earlier */ - text-decoration: underline; -} - -.search-result .result-url, -.search-result .result-url a { - color: #888; -} -.search-result .result-lrl:hover, -.search-result .result-url:hover a { - color: #333; -} -.search-result .result-url:hover a { - text-decoration: underline; -} -.search-result .result-url img { - opacity: 0.5; -} -.search-result .result-url:hover img { - opacity: 1.0; -} -.search-result p { - margin: 0; -} -.resource-url-cached { - font-size: 0.9em; -} - -body.package.read .resource-information { - color: #808080; -} -.format-box { - border: 1px solid #EEE; - margin-left: 8px; - padding: 2px 8px; - box-shadow: 1px 1px 3px #f7f7f7; - color: #808080; -} -body.package.read #sidebar li.widget-container { - border: 0 -} -.notes { - background: url('../images/ldquo.png') no-repeat top left #f7f7f7; - border: 1px solid #eee; - border-radius: 5px; -} -.notes > div { - padding: 8px; -} -#notes-toggle { - padding: 0; - height: 23px; -} -.notes #notes-toggle button { - cursor: pointer; - width: 100%; - height: 23px; - padding: 4px; - border-radius: 0; - border: 0; - border-top: 1px solid #eee; -} -#notes-extract p { - margin-bottom: 0; -} -#notes-remainder { - overflow: hidden; - padding: 0 8px; -} -#notes-remainder p:last-child { - margin-bottom: 0; -} -.dataset-label { - font-weight: bold; - min-width: 10em; -} - - -/* ====================== */ -/* = Resource View Page = */ -/* ====================== */ - -body.package.resource_read #sidebar { display: none; } -body.package.resource_read #content { - border-right: 0; - width: 940px; -} - -.resource_read .notes { - margin-bottom: 1em; - font-size: 110%; -} - -.resource_read .quick-info dt { - width: 115px; - float: left; - font-weight: normal; - color: gray; -} - -.resource_read .resource-actions { - float: right; - text-align: right; -} - -body.package.resource_read #dataset-description { margin-bottom: 2em; } -body.package.resource_read #resource-explore { margin-bottom: 2em; } - - -/* ================== */ -/* = Add Group Page = */ -/* ================== */ -.group-create-form .state-field, -.group-create-form fieldset { - display: none; -} -.group-create-form fieldset#basic-information, -.group-create-form fieldset#summary { - display: block; -} - - -/* ============== */ -/* = About Page = */ -/* ============== */ -body.about #content { border-right: 0; } - - -/* ============== */ -/* = Admin Page = */ -/* ============== */ -body.admin form#form-purge-packages, -body.admin form#form-purge-revisions { - margin-bottom: 30px; - text-align: right; -} - - -/* ======================= */ -/* = Authorization Pages = */ -/* ======================= */ -body.authz form { - margin-bottom: 30px; - text-align: right; -} -body.authz form button { - min-width: 120px; -} - - -/* ================== */ -/* :: QUESTIONABLE :: */ -/* ================== */ -.dataset .api div { - background:#f0f0f0; - padding:10px; -} -.dataset .api h5 { - font-weight:bold; - margin-bottom:1em!important; - font-size:1em; -} -.dataset .api code { - background:#444; - color:#fff; - padding:3px 10px ; - margin-bottom:1em; - display:block; -} -.dataset .api code a { - color:#fff; -} - -/* ==================== */ -/* = Activity Streams = */ -/* ==================== */ -.activity-stream .activity { - padding-bottom:1em; -} -.activity-stream .activity a { - font-weight:bold; -} -.activity-stream .activity .verb { - background-color:PapayaWhip; - padding:.25em; - margin:.25em; -} -.activity-stream .activity .date { - color:#999; -} - -/* ===================== */ -/* == Resource Editor == */ -/* ===================== */ -fieldset#resources { - margin-bottom: 40px; - padding: 0; -} -body.editresources fieldset#resources > legend, -body.editresources fieldset#resources > .instructions { - display: none; -} -fieldset#resources > .instructions { - padding: 12px 12px 2px 12px; -} -.resource-list { - list-style-type: none; - padding: 0; - margin: 0; -} -.resource-list li { - white-space: nowrap; - overflow: hidden; - background: #fff; - border-right: 1px solid transparent; - border-left: 1px solid transparent; - border-top: 1px solid transparent; - border-bottom: 1px solid #eee; - margin-bottom: 0; - position: relative; - z-index: 1; -} -.resource-list li:hover { - background-color: #f7f7f7; -} -.resource-list li:last-child { - border-bottom-color: transparent; -} -.resource-list li.active { - border-color: #888; - border-right-color: #f9f9f9; - background-color: #f9f9f9; - margin-right: -21px; -} -/**/ -.resource-list li a { - display: block; - padding: 5px 10px; - color: #333; - border-right: 0; - font-weight: bold; -} -.resource-list li a:hover { - color: #B22; - text-decoration: none; -} - -/* Resource-list-edit */ -.resource-list-edit { - padding-top: 10px; -} -/* While dragging.... */ -.resource-list-edit li.ui-sortable-helper { - border-color: #888; - box-shadow: 2px 2px 8px rgba(0,0,0,0.1); -} - -/* Resource-list-add */ -.resource-list-add { - margin-top: 20px; -} -.resource-list-add li { - border-top: 1px solid #eee; - padding-left: 43px; -} - -/* Right-hand-side edit resource panel */ -.resource-panel { - background: #f9f9f9; - border: 1px solid #888; - padding: 10px 20px; - position: relative; -} -.resource-panel .resource-panel-close { - position: absolute; - right: -8px; - top: -12px; - width: 20px; - padding: 0; - text-align: center; -} -.resource-panel input[type="text"] { - width: 397px; -} -.resource-panel .markdown-editor { - width: 390px; -} -.resource-panel textarea { - height: 90px; -} -.resource-panel .control-group { - margin-bottom: 3px; -} -.resource-panel .hint { - font-size: 11px; -} -.resource-panel .resource-add { - min-height: 140px; - margin-bottom: 30px; -} -.resource-panel .resource-add input[type="text"] { - width: 280px; -} - -/* Resource extra fields */ -/* --------------------- */ -.dynamic-extras .dynamic-extra { - margin: 1px 15px; -} -.dynamic-extras .remove-resource-extra { - padding: 0 7px; - font-size: 8px; -} -.dynamic-extras input.strikethrough { - text-decoration: line-through; -} -.dynamic-extras input[type="text"] { - width: 164px; -} - - -button.resource-edit-delete { - margin-top: 10px; - float: right; -} - - - -/* HasErrors */ -.resource-list li.hasErrors { - border-color: #c00; - border-right: 1px solid #c00; -} -.resource-list li.active.hasErrors { - border-right: 0; -} -.resource-list li.hasErrors a { - color: #c00; -} -.resource-errors { - display: none; -} -.resource-errors dl { - margin-bottom: 0; -} -body.editresources .error-explanation { - /* Let JS render the resource errors inline */ - display: none; -} - -/* Modal Dialog Styles */ - -.modal-header .heading { - margin-bottom: 0; -} - -.modal-body form { - margin-bottom: 0; -} - -.popover-title { - margin-bottom: 0; -} - -.popover-inner { - background: #aaa; -} - -.popover.right .arrow { - border-right-color: #aaa; -} - -/* Chosen Form Styles */ - -.chzn-container-single { - margin-bottom: 9px; /* Keep Chosen inline with Bootstrap */ -} - -.form-inline .chzn-container-single, -.form-horizontal .chzn-select { - margin-bottom: 0; -} - -.required { - color: #808080; -} - -.related-help { - opacity: 0.3; - position: relative; - top: 2px; - cursor: pointer; -} - -.thumbnails li { - z-index: 0; - position: relative; - background-color: #fff; -} - -.thumbnails li:nth-of-type(5n) { - clear: left; -} - -.thumbnails li.expanded-description { - z-index: 1; -} - -.thumbnail .heading { - font-weight: bold; -} - -.thumbnail .image { - display: block; - width: 210px; - height: 180px; - overflow: hidden; - background: #ececec; - border: 1px solid #dedede; - margin: -1px; -} - -.thumbnail .image img { - max-width: 100%; - width: auto; - height: auto; -} - -.thumbnail .close { - padding-bottom: 7px; - padding-top: 2px; - position: relative; - top: -1px; - right: -1px; - display: none; -} - -.thumbnail:hover .close { - display: block; -} - -.thumbnail .empty { - color: #ccc; -} - -.thumbnail .read-more { - margin-top: 10px; - margin-bottom: 0; -} - -.no-related-items { - font-size: 16px; - color: #666; - background: #EBEBEB; - border: 1px solid #DBDBDB; - padding: 20px; - border-radius: 5px; - margin: 40px auto; - float: none; - text-align: center; -} diff --git a/ckan/public/images/bullet_separator.png b/ckan/public/images/bullet_separator.png deleted file mode 100644 index aa368638fa3..00000000000 Binary files a/ckan/public/images/bullet_separator.png and /dev/null differ diff --git a/ckan/public/images/button-shadow.png b/ckan/public/images/button-shadow.png deleted file mode 100644 index e842365ddcc..00000000000 Binary files a/ckan/public/images/button-shadow.png and /dev/null differ diff --git a/ckan/public/images/chevron-down.png b/ckan/public/images/chevron-down.png deleted file mode 100644 index 8d6c121eb9b..00000000000 Binary files a/ckan/public/images/chevron-down.png and /dev/null differ diff --git a/ckan/public/images/chevron-up.png b/ckan/public/images/chevron-up.png deleted file mode 100644 index 78b0290d06d..00000000000 Binary files a/ckan/public/images/chevron-up.png and /dev/null differ diff --git a/ckan/public/images/chosen-sprite.png b/ckan/public/images/chosen-sprite.png deleted file mode 100644 index 231fe905534..00000000000 Binary files a/ckan/public/images/chosen-sprite.png and /dev/null differ diff --git a/ckan/public/images/ckan_logo_fullname_long.png b/ckan/public/images/ckan_logo_fullname_long.png deleted file mode 100644 index 182a288da48..00000000000 Binary files a/ckan/public/images/ckan_logo_fullname_long.png and /dev/null differ diff --git a/ckan/public/images/dlbg.png b/ckan/public/images/dlbg.png deleted file mode 100644 index f77e7ada640..00000000000 Binary files a/ckan/public/images/dlbg.png and /dev/null differ diff --git a/ckan/public/images/dragbars.png b/ckan/public/images/dragbars.png deleted file mode 100644 index ef6a8d60dff..00000000000 Binary files a/ckan/public/images/dragbars.png and /dev/null differ diff --git a/ckan/public/images/icons/add.png b/ckan/public/images/icons/add.png deleted file mode 100644 index 6332fefea4b..00000000000 Binary files a/ckan/public/images/icons/add.png and /dev/null differ diff --git a/ckan/public/images/icons/arrow-closed.gif b/ckan/public/images/icons/arrow-closed.gif deleted file mode 100644 index b247824e904..00000000000 Binary files a/ckan/public/images/icons/arrow-closed.gif and /dev/null differ diff --git a/ckan/public/images/icons/arrow-down-16.png b/ckan/public/images/icons/arrow-down-16.png deleted file mode 100644 index 2b9732a9cc6..00000000000 Binary files a/ckan/public/images/icons/arrow-down-16.png and /dev/null differ diff --git a/ckan/public/images/icons/arrow-down-32.png b/ckan/public/images/icons/arrow-down-32.png deleted file mode 100644 index 00c085f6def..00000000000 Binary files a/ckan/public/images/icons/arrow-down-32.png and /dev/null differ diff --git a/ckan/public/images/icons/arrow-open.gif b/ckan/public/images/icons/arrow-open.gif deleted file mode 100644 index e1c60aa558e..00000000000 Binary files a/ckan/public/images/icons/arrow-open.gif and /dev/null differ diff --git a/ckan/public/images/icons/arrow-right-16-black.png b/ckan/public/images/icons/arrow-right-16-black.png deleted file mode 100644 index 5096d9e2b29..00000000000 Binary files a/ckan/public/images/icons/arrow-right-16-black.png and /dev/null differ diff --git a/ckan/public/images/icons/arrow-right-16.png b/ckan/public/images/icons/arrow-right-16.png deleted file mode 100644 index 102269baf89..00000000000 Binary files a/ckan/public/images/icons/arrow-right-16.png and /dev/null differ diff --git a/ckan/public/images/icons/arrow-right-32.png b/ckan/public/images/icons/arrow-right-32.png deleted file mode 100644 index f68956e02a5..00000000000 Binary files a/ckan/public/images/icons/arrow-right-32.png and /dev/null differ diff --git a/ckan/public/images/icons/arrow_down.png b/ckan/public/images/icons/arrow_down.png deleted file mode 100644 index 2c4e279377b..00000000000 Binary files a/ckan/public/images/icons/arrow_down.png and /dev/null differ diff --git a/ckan/public/images/icons/arrow_down_grey.png b/ckan/public/images/icons/arrow_down_grey.png deleted file mode 100644 index 2443111c7a9..00000000000 Binary files a/ckan/public/images/icons/arrow_down_grey.png and /dev/null differ diff --git a/ckan/public/images/icons/arrow_up.png b/ckan/public/images/icons/arrow_up.png deleted file mode 100644 index 1ebb1932437..00000000000 Binary files a/ckan/public/images/icons/arrow_up.png and /dev/null differ diff --git a/ckan/public/images/icons/atom_feed.png b/ckan/public/images/icons/atom_feed.png deleted file mode 100644 index c7ea44727d0..00000000000 Binary files a/ckan/public/images/icons/atom_feed.png and /dev/null differ diff --git a/ckan/public/images/icons/ckan.ico b/ckan/public/images/icons/ckan.ico deleted file mode 100644 index 0d9295c77aa..00000000000 Binary files a/ckan/public/images/icons/ckan.ico and /dev/null differ diff --git a/ckan/public/images/icons/comments.png b/ckan/public/images/icons/comments.png deleted file mode 100644 index 39433cf78a3..00000000000 Binary files a/ckan/public/images/icons/comments.png and /dev/null differ diff --git a/ckan/public/images/icons/delete.png b/ckan/public/images/icons/delete.png deleted file mode 100755 index 1514d51a3cf..00000000000 Binary files a/ckan/public/images/icons/delete.png and /dev/null differ diff --git a/ckan/public/images/icons/door.png b/ckan/public/images/icons/door.png deleted file mode 100644 index 369fc46ed25..00000000000 Binary files a/ckan/public/images/icons/door.png and /dev/null differ diff --git a/ckan/public/images/icons/door_grey.png b/ckan/public/images/icons/door_grey.png deleted file mode 100644 index aaf93184261..00000000000 Binary files a/ckan/public/images/icons/door_grey.png and /dev/null differ diff --git a/ckan/public/images/icons/door_open.png b/ckan/public/images/icons/door_open.png deleted file mode 100644 index 64bab57ddd0..00000000000 Binary files a/ckan/public/images/icons/door_open.png and /dev/null differ diff --git a/ckan/public/images/icons/drive_web.png b/ckan/public/images/icons/drive_web.png deleted file mode 100644 index 8850a83557e..00000000000 Binary files a/ckan/public/images/icons/drive_web.png and /dev/null differ diff --git a/ckan/public/images/icons/edit-collapse.png b/ckan/public/images/icons/edit-collapse.png deleted file mode 100755 index cee4c74bda4..00000000000 Binary files a/ckan/public/images/icons/edit-collapse.png and /dev/null differ diff --git a/ckan/public/images/icons/edit-expand.png b/ckan/public/images/icons/edit-expand.png deleted file mode 100755 index 72a5235d004..00000000000 Binary files a/ckan/public/images/icons/edit-expand.png and /dev/null differ diff --git a/ckan/public/images/icons/error.png b/ckan/public/images/icons/error.png deleted file mode 100644 index 628cf2dae3d..00000000000 Binary files a/ckan/public/images/icons/error.png and /dev/null differ diff --git a/ckan/public/images/icons/followers.png b/ckan/public/images/icons/followers.png deleted file mode 100644 index 7fb4e1f1e1c..00000000000 Binary files a/ckan/public/images/icons/followers.png and /dev/null differ diff --git a/ckan/public/images/icons/group.png b/ckan/public/images/icons/group.png deleted file mode 100755 index abcd93689a0..00000000000 Binary files a/ckan/public/images/icons/group.png and /dev/null differ diff --git a/ckan/public/images/icons/group_add.png b/ckan/public/images/icons/group_add.png deleted file mode 100755 index 2a3e5c4df14..00000000000 Binary files a/ckan/public/images/icons/group_add.png and /dev/null differ diff --git a/ckan/public/images/icons/group_edit.png b/ckan/public/images/icons/group_edit.png deleted file mode 100755 index bfcb0249afd..00000000000 Binary files a/ckan/public/images/icons/group_edit.png and /dev/null differ diff --git a/ckan/public/images/icons/key.png b/ckan/public/images/icons/key.png deleted file mode 100644 index 4ec1a928140..00000000000 Binary files a/ckan/public/images/icons/key.png and /dev/null differ diff --git a/ckan/public/images/icons/lock.png b/ckan/public/images/icons/lock.png deleted file mode 100644 index 2ebc4f6f966..00000000000 Binary files a/ckan/public/images/icons/lock.png and /dev/null differ diff --git a/ckan/public/images/icons/magnifier.png b/ckan/public/images/icons/magnifier.png deleted file mode 100644 index cf3d97f75e9..00000000000 Binary files a/ckan/public/images/icons/magnifier.png and /dev/null differ diff --git a/ckan/public/images/icons/note.png b/ckan/public/images/icons/note.png deleted file mode 100644 index 244e6ca045c..00000000000 Binary files a/ckan/public/images/icons/note.png and /dev/null differ diff --git a/ckan/public/images/icons/openid.png b/ckan/public/images/icons/openid.png deleted file mode 100644 index 2829b00358e..00000000000 Binary files a/ckan/public/images/icons/openid.png and /dev/null differ diff --git a/ckan/public/images/icons/package-disabled.png b/ckan/public/images/icons/package-disabled.png deleted file mode 100644 index beac3e99cd0..00000000000 Binary files a/ckan/public/images/icons/package-disabled.png and /dev/null differ diff --git a/ckan/public/images/icons/package.png b/ckan/public/images/icons/package.png deleted file mode 100644 index da3c2a2d74b..00000000000 Binary files a/ckan/public/images/icons/package.png and /dev/null differ diff --git a/ckan/public/images/icons/package_add.png b/ckan/public/images/icons/package_add.png deleted file mode 100755 index 9c8a9da4ae4..00000000000 Binary files a/ckan/public/images/icons/package_add.png and /dev/null differ diff --git a/ckan/public/images/icons/package_edit.png b/ckan/public/images/icons/package_edit.png deleted file mode 100644 index 96b9a24896f..00000000000 Binary files a/ckan/public/images/icons/package_edit.png and /dev/null differ diff --git a/ckan/public/images/icons/page_stack.png b/ckan/public/images/icons/page_stack.png deleted file mode 100644 index a6c8e5c6777..00000000000 Binary files a/ckan/public/images/icons/page_stack.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white.png b/ckan/public/images/icons/page_white.png deleted file mode 100755 index 8b8b1ca0000..00000000000 Binary files a/ckan/public/images/icons/page_white.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_add.png b/ckan/public/images/icons/page_white_add.png deleted file mode 100755 index aa23dde3746..00000000000 Binary files a/ckan/public/images/icons/page_white_add.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_code.png b/ckan/public/images/icons/page_white_code.png deleted file mode 100755 index 0c76bd12977..00000000000 Binary files a/ckan/public/images/icons/page_white_code.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_compressed.png b/ckan/public/images/icons/page_white_compressed.png deleted file mode 100755 index 2b6b1007f33..00000000000 Binary files a/ckan/public/images/icons/page_white_compressed.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_cup.png b/ckan/public/images/icons/page_white_cup.png deleted file mode 100755 index 0a7d6f4a6f6..00000000000 Binary files a/ckan/public/images/icons/page_white_cup.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_database.png b/ckan/public/images/icons/page_white_database.png deleted file mode 100755 index bddba1f98ca..00000000000 Binary files a/ckan/public/images/icons/page_white_database.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_error.png b/ckan/public/images/icons/page_white_error.png deleted file mode 100755 index 9fc5a0a103d..00000000000 Binary files a/ckan/public/images/icons/page_white_error.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_excel.png b/ckan/public/images/icons/page_white_excel.png deleted file mode 100755 index b977d7e52e2..00000000000 Binary files a/ckan/public/images/icons/page_white_excel.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_gear.png b/ckan/public/images/icons/page_white_gear.png deleted file mode 100755 index 106f5aa3611..00000000000 Binary files a/ckan/public/images/icons/page_white_gear.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_json.png b/ckan/public/images/icons/page_white_json.png deleted file mode 100644 index 237ae52abb1..00000000000 Binary files a/ckan/public/images/icons/page_white_json.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_link.png b/ckan/public/images/icons/page_white_link.png deleted file mode 100755 index bf7bd1c9bfd..00000000000 Binary files a/ckan/public/images/icons/page_white_link.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_rdf.png b/ckan/public/images/icons/page_white_rdf.png deleted file mode 100644 index d623d8abc06..00000000000 Binary files a/ckan/public/images/icons/page_white_rdf.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_stack.png b/ckan/public/images/icons/page_white_stack.png deleted file mode 100644 index 44084add79b..00000000000 Binary files a/ckan/public/images/icons/page_white_stack.png and /dev/null differ diff --git a/ckan/public/images/icons/page_white_text.png b/ckan/public/images/icons/page_white_text.png deleted file mode 100755 index 813f712f726..00000000000 Binary files a/ckan/public/images/icons/page_white_text.png and /dev/null differ diff --git a/ckan/public/images/icons/pencil.png b/ckan/public/images/icons/pencil.png deleted file mode 100755 index 0bfecd50ee9..00000000000 Binary files a/ckan/public/images/icons/pencil.png and /dev/null differ diff --git a/ckan/public/images/icons/remove.png b/ckan/public/images/icons/remove.png deleted file mode 100644 index 08f249365af..00000000000 Binary files a/ckan/public/images/icons/remove.png and /dev/null differ diff --git a/ckan/public/images/icons/star.png b/ckan/public/images/icons/star.png deleted file mode 100755 index 8cea494e2fa..00000000000 Binary files a/ckan/public/images/icons/star.png and /dev/null differ diff --git a/ckan/public/images/icons/tag_blue.png b/ckan/public/images/icons/tag_blue.png deleted file mode 100644 index 9757fc6ed65..00000000000 Binary files a/ckan/public/images/icons/tag_blue.png and /dev/null differ diff --git a/ckan/public/images/icons/unfilter.png b/ckan/public/images/icons/unfilter.png deleted file mode 100755 index bd6271b2467..00000000000 Binary files a/ckan/public/images/icons/unfilter.png and /dev/null differ diff --git a/ckan/public/images/icons/user.png b/ckan/public/images/icons/user.png deleted file mode 100644 index 79f35ccbdad..00000000000 Binary files a/ckan/public/images/icons/user.png and /dev/null differ diff --git a/ckan/public/images/icons/user_grey.png b/ckan/public/images/icons/user_grey.png deleted file mode 100644 index 8fd539e9cb0..00000000000 Binary files a/ckan/public/images/icons/user_grey.png and /dev/null differ diff --git a/ckan/public/images/icons/world_go.png b/ckan/public/images/icons/world_go.png deleted file mode 100644 index aee9c97f823..00000000000 Binary files a/ckan/public/images/icons/world_go.png and /dev/null differ diff --git a/ckan/public/images/ldquo.png b/ckan/public/images/ldquo.png deleted file mode 100644 index 286f719f3a1..00000000000 Binary files a/ckan/public/images/ldquo.png and /dev/null differ diff --git a/ckan/public/images/photo-placeholder.png b/ckan/public/images/photo-placeholder.png deleted file mode 100644 index efdea70ea20..00000000000 Binary files a/ckan/public/images/photo-placeholder.png and /dev/null differ diff --git a/ckan/public/images/stars.png b/ckan/public/images/stars.png deleted file mode 100644 index 21e3b7fee19..00000000000 Binary files a/ckan/public/images/stars.png and /dev/null differ diff --git a/ckan/public/img/collaborate.png b/ckan/public/img/collaborate.png deleted file mode 100644 index dff90f1d890..00000000000 Binary files a/ckan/public/img/collaborate.png and /dev/null differ diff --git a/ckan/public/img/find.png b/ckan/public/img/find.png deleted file mode 100644 index 133102ada8c..00000000000 Binary files a/ckan/public/img/find.png and /dev/null differ diff --git a/ckan/public/img/glyphicons-halflings-white.png b/ckan/public/img/glyphicons-halflings-white.png deleted file mode 100644 index 3bf6484a29d..00000000000 Binary files a/ckan/public/img/glyphicons-halflings-white.png and /dev/null differ diff --git a/ckan/public/img/glyphicons-halflings.png b/ckan/public/img/glyphicons-halflings.png deleted file mode 100644 index 79bc568c213..00000000000 Binary files a/ckan/public/img/glyphicons-halflings.png and /dev/null differ diff --git a/ckan/public/img/lod2.png b/ckan/public/img/lod2.png deleted file mode 100644 index 9cdf946c6de..00000000000 Binary files a/ckan/public/img/lod2.png and /dev/null differ diff --git a/ckan/public/img/logo.png b/ckan/public/img/logo.png deleted file mode 100644 index b759085234a..00000000000 Binary files a/ckan/public/img/logo.png and /dev/null differ diff --git a/ckan/public/img/logo_64px_wide.png b/ckan/public/img/logo_64px_wide.png deleted file mode 100644 index 967144ee0ff..00000000000 Binary files a/ckan/public/img/logo_64px_wide.png and /dev/null differ diff --git a/ckan/public/img/share.png b/ckan/public/img/share.png deleted file mode 100644 index a97a0317980..00000000000 Binary files a/ckan/public/img/share.png and /dev/null differ diff --git a/ckan/public/scripts/application.js b/ckan/public/scripts/application.js deleted file mode 100644 index f61a1a3ac51..00000000000 --- a/ckan/public/scripts/application.js +++ /dev/null @@ -1,1869 +0,0 @@ -var CKAN = CKAN || {}; - -CKAN.View = CKAN.View || {}; -CKAN.Model = CKAN.Model || {}; -CKAN.Utils = CKAN.Utils || {}; - -/* ================================= */ -/* == Initialise CKAN Application == */ -/* ================================= */ -(function ($) { - $(document).ready(function () { - CKAN.Utils.relatedSetup($("#form-add-related")); - CKAN.Utils.setupUserAutocomplete($('input.autocomplete-user')); - CKAN.Utils.setupOrganizationUserAutocomplete($('input.autocomplete-organization-user')); - CKAN.Utils.setupGroupAutocomplete($('input.autocomplete-group')); - CKAN.Utils.setupPackageAutocomplete($('input.autocomplete-dataset')); - CKAN.Utils.setupTagAutocomplete($('input.autocomplete-tag')); - $('input.autocomplete-format').live('keyup', function(){ - CKAN.Utils.setupFormatAutocomplete($(this)); - }); - CKAN.Utils.setupMarkdownEditor($('.markdown-editor')); - // bootstrap collapse - $('.collapse').collapse({toggle: false}); - - // Buttons with href-action should navigate when clicked - $('input.href-action').click(function(e) { - e.preventDefault(); - window.location = ($(e.target).attr('action')); - }); - - var isGroupView = $('body.group.read').length > 0; - if (isGroupView) { - // Show extract of notes field - CKAN.Utils.setupNotesExtract(); - } - - var isDatasetView = $('body.package.read').length > 0; - if (isDatasetView) { - // Show extract of notes field - CKAN.Utils.setupNotesExtract(); - } - - var isResourceView = false; //$('body.package.resource_read').length > 0; - if (isResourceView) { - CKAN.DataPreview.loadPreviewDialog(preload_resource); - } - - var isEmbeddedDataviewer = false;//$('body.package.resource_embedded_dataviewer').length > 0; - if (isEmbeddedDataviewer) { - CKAN.DataPreview.loadEmbeddedPreview(preload_resource, reclineState); - } - - if ($(document.body).hasClass('search')) { - // Calculate the optimal width for the search input regardless of the - // width of the submit button (which can vary depending on translation). - (function resizeSearchInput() { - var form = $('#dataset-search'), - input = form.find('[name=q]'), - button = form.find('[type=submit]'), - offset = parseFloat(button.css('margin-left')); - - // Grab the horizontal properties of the input that affect the width. - $.each(['padding-left', 'padding-right', 'border-left-width', 'border-right-width'], function (i, prop) { - offset += parseFloat(input.css(prop)) || 0; - }); - - input.width(form.outerWidth() - button.outerWidth() - offset); - })(); - } - - var isDatasetNew = $('body.package.new').length > 0; - if (isDatasetNew) { - // Set up magic URL slug editor - var urlEditor = new CKAN.View.UrlEditor({ - slugType: 'package' - }); - $('#save').val(CKAN.Strings.addDataset); - $("#title").focus(); - } - var isGroupNew = $('body.group.new').length > 0; - if (isGroupNew) { - // Set up magic URL slug editor - var urlEditor = new CKAN.View.UrlEditor({ - slugType: 'group' - }); - $('#save').val(CKAN.Strings.addGroup); - $("#title").focus(); - } - - var isDatasetEdit = $('body.package.edit').length > 0; - if (isDatasetEdit) { - CKAN.Utils.warnOnFormChanges($('form#dataset-edit')); - var urlEditor = new CKAN.View.UrlEditor({ - slugType: 'package' - }); - - // Set up dataset delete button - CKAN.Utils.setupDatasetDeleteButton(); - } - var isDatasetResourceEdit = $('body.package.editresources').length > 0; - if (isDatasetNew || isDatasetResourceEdit) { - // Selectively enable the upload button - var storageEnabled = $.inArray('storage',CKAN.plugins)>=0; - if (storageEnabled) { - $('li.js-upload-file').show(); - } - // Backbone collection class - var CollectionOfResources = Backbone.Collection.extend({model: CKAN.Model.Resource}); - // 'resources_json' was embedded into the page - var view = new CKAN.View.ResourceEditor({ - collection: new CollectionOfResources(resources_json), - el: $('form#dataset-edit') - }); - view.render(); - - $( ".drag-drop-list" ).sortable({ - distance: 10 - }); - $( ".drag-drop-list" ).disableSelection(); - } - - var isGroupEdit = $('body.group.edit').length > 0; - if (isGroupEdit) { - var urlEditor = new CKAN.View.UrlEditor({ - slugType: 'group' - }); - } - // OpenID hack - // We need to remember the language we are using whilst logging in - // we set this in the user session so we don't forget then - // carry on as before. - if (window.openid && openid.signin){ - openid._signin = openid.signin; - openid.signin = function (arg) { - $.get(CKAN.SITE_URL + '/user/set_lang/' + CKAN.LANG, function (){openid._signin(arg);}) - }; - } - if ($('#login').length){ - $('#login').submit( function () { - $.ajax(CKAN.SITE_URL + '/user/set_lang/' + CKAN.LANG, {async:false}); - }); - } - }); -}(jQuery)); - -/* =============================== */ -/* jQuery Plugins */ -/* =============================== */ - -jQuery.fn.truncate = function (max, suffix) { - return this.each(function () { - var element = jQuery(this), - isTruncated = element.hasClass('truncated'), - cached, length, text, expand; - - if (isTruncated) { - element.html(element.data('truncate:' + (max === 'expand' ? 'original' : 'truncated'))); - return; - } - - cached = element.text(); - length = max || element.data('truncate') || 30; - text = cached.slice(0, length); - expand = jQuery('').text(suffix || '»'); - - // Bail early if there is nothing to truncate. - if (cached.length < length) { - return; - } - - // Try to truncate to nearest full word. - while ((/\S/).test(text[text.length - 1])) { - text = text.slice(0, text.length - 1); - } - - element.html(jQuery.trim(text)); - expand.appendTo(element.append(' ')); - expand.click(function (event) { - event.preventDefault(); - element.html(cached); - }); - - element.addClass('truncated'); - element.data('truncate:original', cached); - element.data('truncate:truncated', element.html()); - }); -}; - -/* =============================== */ -/* Backbone Model: Resource object */ -/* =============================== */ -CKAN.Model.Resource = Backbone.Model.extend({ - constructor: function Resource() { - Backbone.Model.prototype.constructor.apply(this, arguments); - }, - toTemplateJSON: function() { - var obj = Backbone.Model.prototype.toJSON.apply(this, arguments); - obj.displaytitle = obj.description ? obj.description : 'No description ...'; - return obj; - } -}); - - - -/* ============================== */ -/* == Backbone View: UrlEditor == */ -/* ============================== */ -CKAN.View.UrlEditor = Backbone.View.extend({ - initialize: function() { - _.bindAll(this,'titleToSlug','titleChanged','urlChanged','checkSlugIsValid','apiCallback'); - - // Initial state - var self = this; - this.updateTimer = null; - this.titleInput = $('.js-title'); - this.urlInput = $('.js-url-input'); - this.validMsg = $('.js-url-is-valid'); - this.lengthMsg = $('.url-is-long'); - this.lastTitle = ""; - this.disableTitleChanged = false; - - // Settings - this.regexToHyphen = [ new RegExp('[ .:/_]', 'g'), - new RegExp('[^a-zA-Z0-9-_]', 'g'), - new RegExp('-+', 'g')]; - this.regexToDelete = [ new RegExp('^-*', 'g'), - new RegExp('-*$', 'g')]; - - // Default options - if (!this.options.apiUrl) { - this.options.apiUrl = CKAN.SITE_URL + '/api/2/util/is_slug_valid'; - } - if (!this.options.MAX_SLUG_LENGTH) { - this.options.MAX_SLUG_LENGTH = 90; - } - this.originalUrl = this.urlInput.val(); - - // Hook title changes to the input box - CKAN.Utils.bindInputChanges(this.titleInput, this.titleChanged); - CKAN.Utils.bindInputChanges(this.urlInput, this.urlChanged); - - // If you've bothered typing a URL, I won't overwrite you - function disable() { - self.disableTitleChanged = true; - }; - this.urlInput.keyup (disable); - this.urlInput.keydown (disable); - this.urlInput.keypress(disable); - - // Set up the form - this.urlChanged(); - }, - - titleToSlug: function(title) { - var slug = title; - $.each(this.regexToHyphen, function(idx,regex) { slug = slug.replace(regex, '-'); }); - $.each(this.regexToDelete, function(idx,regex) { slug = slug.replace(regex, ''); }); - slug = slug.toLowerCase(); - - if (slug.length'+CKAN.Strings.urlIsTooShort+''); - } - else if (slug==this.originalUrl) { - this.validMsg.html(''+CKAN.Strings.urlIsUnchanged+''); - } - else { - this.validMsg.html(''+CKAN.Strings.checking+''); - var self = this; - this.updateTimer = setTimeout(function () { - self.checkSlugIsValid(slug); - }, 200); - } - if (slug.length>20) { - this.lengthMsg.show(); - } - else { - this.lengthMsg.hide(); - } - }, - - checkSlugIsValid: function(slug) { - $.ajax({ - url: this.options.apiUrl, - data: 'type='+this.options.slugType+'&slug=' + slug, - dataType: 'jsonp', - type: 'get', - jsonpCallback: 'callback', - success: this.apiCallback - }); - }, - - /* Called when the slug-validator gets back to us */ - apiCallback: function(data) { - if (data.valid) { - this.validMsg.html(''+CKAN.Strings.urlIsAvailable+''); - } else { - this.validMsg.html(''+CKAN.Strings.urlIsNotAvailable+''); - } - } -}); - - -/* =================================== */ -/* == Backbone View: ResourceEditor == */ -/* =================================== */ -CKAN.View.ResourceEditor = Backbone.View.extend({ - initialize: function() { - // Init bindings - _.bindAll(this, 'resourceAdded', 'resourceRemoved', 'sortStop', 'openFirstPanel', 'closePanel', 'openAddPanel'); - this.collection.bind('add', this.resourceAdded); - this.collection.bind('remove', this.resourceRemoved); - this.collection.each(this.resourceAdded); - this.el.find('.resource-list-edit').bind("sortstop", this.sortStop); - - // Delete the barebones editor. We will populate our own form. - this.el.find('.js-resource-edit-barebones').remove(); - - // Warn on form changes - var flashWarning = CKAN.Utils.warnOnFormChanges(this.el); - this.collection.bind('add', flashWarning); - this.collection.bind('remove', flashWarning); - - // Trigger the Add Resource pane - this.el.find('.js-resource-add').click(this.openAddPanel); - - // Tabs for adding resources - new CKAN.View.ResourceAddUrl({ - collection: this.collection, - el: this.el.find('.js-add-url-form'), - mode: 'file' - }); - new CKAN.View.ResourceAddUrl({ - collection: this.collection, - el: this.el.find('.js-add-api-form'), - mode: 'api' - }); - new CKAN.View.ResourceAddUpload({ - collection: this.collection, - el: this.el.find('.js-add-upload-form') - }); - - - // Close details button - this.el.find('.resource-panel-close').click(this.closePanel); - - // Did we embed some form errors? - if (typeof global_form_errors == 'object') { - if (global_form_errors.resources) { - var openedOne = false; - for (i in global_form_errors.resources) { - var resource_errors = global_form_errors.resources[i]; - if (CKAN.Utils.countObject(resource_errors) > 0) { - var resource = this.collection.at(i); - resource.view.setErrors(resource_errors); - if (!openedOne) { - resource.view.openMyPanel(); - openedOne = true; - } - } - } - } - } - else { - // Initial state - this.openFirstPanel(); - } - }, - /* - * Called when the page loads or the current resource is deleted. - * Reset page state to the first available edit panel. - */ - openFirstPanel: function() { - if (this.collection.length>0) { - this.collection.at(0).view.openMyPanel(); - } - else { - this.openAddPanel(); - } - }, - /* - * Open the 'Add New Resource' special-case panel on the right. - */ - openAddPanel: function(e) { - if (e) { e.preventDefault(); } - var panel = this.el.find('.resource-panel'); - var addLi = this.el.find('.resource-list-add > li'); - this.el.find('.resource-list > li').removeClass('active'); - $('.resource-details').hide(); - this.el.find('.resource-details.resource-add').show(); - addLi.addClass('active'); - panel.show(); - }, - /* - * Close the panel on the right. - */ - closePanel: function(e) { - if (e) { e.preventDefault(); } - this.el.find('.resource-list > li').removeClass('active'); - this.el.find('.resource-panel').hide(); - }, - /* - * Update the resource__N__field names to match - * new sort order. - */ - sortStop: function(e,ui) { - this.collection.each(function(resource) { - // Ask the DOM for the new sort order - var index = resource.view.li.index(); - resource.view.options.position = index; - // Update the form element names - var table = resource.view.table; - $.each(table.find('input,textarea,select'), function(input_index, input) { - var name = $(input).attr('name'); - if (name) { - name = name.replace(/(resources__)\d+(.*)/, '$1'+index+'$2'); - $(input).attr('name',name); - } - }); - }); - }, - /* - * Calculate id of the next resource to create - */ - nextIndex: function() { - var maxId=-1; - var root = this.el.find('.resource-panel'); - root.find('input').each(function(idx,input) { - var name = $(input).attr('name') || ''; - var splitName=name.split('__'); - if (splitName.length>1) { - var myId = parseInt(splitName[1],10); - maxId = Math.max(myId, maxId); - } - }); - return maxId+1; - }, - /* - * Create DOM elements for new resource. - */ - resourceAdded: function(resource) { - var self = this; - resource.view = new CKAN.View.Resource({ - position: this.nextIndex(), - model: resource, - callback_deleteMe: function() { self.collection.remove(resource); } - }); - this.el.find('.resource-list-edit').append(resource.view.li); - this.el.find('.resource-panel').append(resource.view.table); - if (resource.isNew()) { - resource.view.openMyPanel(); - } - }, - /* - * Destroy DOM elements for deleted resource. - */ - resourceRemoved: function(resource) { - resource.view.removeFromDom(); - delete resource.view; - this.openFirstPanel(); - } -}); - - -/* ============================== */ -/* == Backbone View: Resource == */ -/* ============================== */ - -CKAN.View.Resource = Backbone.View.extend({ - initialize: function() { - this.el = $(this.el); - _.bindAll(this,'updateName','updateIcon','name','askToDelete','openMyPanel','setErrors','setupDynamicExtras','addDynamicExtra' ); - this.render(); - }, - render: function() { - this.raw_resource = this.model.toTemplateJSON(); - var resource_object = { - resource: this.raw_resource, - num: this.options.position, - resource_icon: '/images/icons/page_white.png', - resourceTypeOptions: [ - ['file', CKAN.Strings.dataFile], - ['api', CKAN.Strings.api], - ['visualization', CKAN.Strings.visualization], - ['image', CKAN.Strings.image], - ['metadata', CKAN.Strings.metadata], - ['documentation', CKAN.Strings.documentation], - ['code', CKAN.Strings.code], - ['example', CKAN.Strings.example] - ] - }; - // Generate DOM elements - this.li = $($.tmpl(CKAN.Templates.resourceEntry, resource_object)); - this.table = $($.tmpl(CKAN.Templates.resourceDetails, resource_object)); - - // Hook to changes in name - this.nameBox = this.table.find('input.js-resource-edit-name'); - this.descriptionBox = this.table.find('textarea.js-resource-edit-description'); - CKAN.Utils.bindInputChanges(this.nameBox,this.updateName); - CKAN.Utils.bindInputChanges(this.descriptionBox,this.updateName); - // Hook to changes in format - this.formatBox = this.table.find('input.js-resource-edit-format'); - CKAN.Utils.bindInputChanges(this.formatBox,this.updateIcon); - // Hook to open panel link - this.li.find('.resource-open-my-panel').click(this.openMyPanel); - this.table.find('.js-resource-edit-delete').click(this.askToDelete); - // Hook to markdown editor - CKAN.Utils.setupMarkdownEditor(this.table.find('.markdown-editor')); - - // Set initial state - this.updateName(); - this.updateIcon(); - this.setupDynamicExtras(); - this.hasErrors = false; - }, - /* - * Process a JSON object of errors attached to this resource - */ - setErrors: function(obj) { - if (CKAN.Utils.countObject(obj) > 0) { - this.hasErrors = true; - this.errors = obj; - this.li.addClass('hasErrors'); - var errorList = $('
    ').addClass('errorList'); - $.each(obj,function(k,v) { - var errorText = ''; - var newLine = false; - $.each(v,function(index,value) { - if (newLine) { errorText += '
    '; } - errorText += value; - newLine = true; - }); - errorList.append($('
    ').html(k)); - errorList.append($('
    ').html(errorText)); - }); - this.table.find('.resource-errors').append(errorList).show(); - } - }, - /* - * Work out what I should be called. Rough-match - * of helpers.py:resource_display_name. - */ - name: function() { - var name = this.nameBox.val(); - if (!name) { - name = this.descriptionBox.val(); - if (!name) { - if (this.model.isNew()) { - name = '[new resource]'; - } - else { - name = '[no name] ' + this.model.id; - } - } - } - if (name.length>45) { - name = name.substring(0,45)+'...'; - } - return name; - }, - /* - * Called when the user types to update the name in - * my
  • to match the values. - */ - updateName: function() { - // Need to structurally modify the DOM to force a re-render of text - var $link = this.li.find('.js-resource-edit-name'); - $link.html(''+this.name()+''); - }, - /* - * Called when the user types to update the icon - * tags. Uses server API to select icon. - */ - updateIcon: function() { - var self = this; - if (self.updateIconTimer) { - clearTimeout(self.updateIconTimer); - } - self.updateIconTimer = setTimeout(function() { - // AJAX to server API - $.getJSON(CKAN.SITE_URL + '/api/2/util/resource/format_icon?format='+encodeURIComponent(self.formatBox.val()), function(data) { - if (data && data.icon && data.format==self.formatBox.val()) { - self.li.find('.js-resource-icon').attr('src',data.icon); - self.table.find('.js-resource-icon').attr('src',data.icon); - } - }); - delete self.updateIconTimer; - }, - 100); - }, - /* - * Closes all other panels on the right and opens my editor panel. - */ - openMyPanel: function(e) { - if (e) { e.preventDefault(); } - // Close all tables - var panel = this.table.parents('.resource-panel'); - panel.find('.resource-details').hide(); - this.li.parents('fieldset#resources').find('.resource-list > li').removeClass('active'); - panel.show(); - this.table.show(); - this.table.find('.js-resource-edit-name').focus(); - this.li.addClass('active'); - }, - /* - * Called when my delete button is clicked. Calls back to the parent - * resource editor. - */ - askToDelete: function(e) { - e.preventDefault(); - var confirmMessage = CKAN.Strings.deleteThisResourceQuestion.replace('%name%', this.name()); - if (confirm(confirmMessage)) { - this.options.callback_deleteMe(); - } - }, - /* - * Set up the dynamic-extras section of the table. - */ - setupDynamicExtras: function() { - var self = this; - $.each(this.raw_resource, function(key,value) { - // Skip the known keys - if (self.reservedWord(key)) { return; } - self.addDynamicExtra(key,value); - }); - this.table.find('.add-resource-extra').click(function(e) { - e.preventDefault(); - self.addDynamicExtra('',''); - }); - }, - addDynamicExtra: function(key,value) { - // Create elements - var dynamicExtra = $($.tmpl(CKAN.Templates.resourceExtra, { - num: this.options.position, - key: key, - value: value})); - this.table.find('.dynamic-extras').append(dynamicExtra); - // Captured values - var inputKey = dynamicExtra.find('.extra-key'); - var inputValue = dynamicExtra.find('.extra-value'); - // Callback function - var self = this; - var setExtraName = function() { - var _key = inputKey.val(); - var key = $.trim(_key).replace(/\s+/g,''); - // Don't allow you to create an extra called mimetype (etc) - if (self.reservedWord(key)) { key=''; } - // Set or unset the field's name - if (key.length) { - var newName = 'resources__'+self.options.position+'__'+key; - inputValue.attr('name',newName); - inputValue.removeClass('strikethrough'); - } - else { - inputValue.removeAttr('name'); - inputValue.addClass('strikethrough'); - } - }; - // Callback function - var clickRemove = function(e) { - e.preventDefault(); - dynamicExtra.remove(); - }; - // Init with bindings - CKAN.Utils.bindInputChanges(dynamicExtra.find('.extra-key'), setExtraName); - dynamicExtra.find('.remove-resource-extra').click(clickRemove); - setExtraName(); - }, - - - - reservedWord: function(word) { - return word=='cache_last_updated' || - word=='cache_url' || - word=='dataset' || - word=='description' || - word=='displaytitle' || - word=='extras' || - word=='format' || - word=='hash' || - word=='id' || - word=='created' || - word=='last_modified' || - word=='mimetype' || - word=='mimetype_inner' || - word=='name' || - word=='package_id' || - word=='position' || - word=='resource_type' || - word=='revision_id' || - word=='revision_timestamp' || - word=='size' || - word=='size_extra' || - word=='state' || - word=='url' || - word=='webstore_last_updated' || - word=='webstore_url'; - }, - /* - * Called when my model is destroyed. Remove me from the page. - */ - removeFromDom: function() { - this.li.remove(); - this.table.remove(); - } -}); - - -/* ============================================= */ -/* Backbone View: Add Resource by uploading file */ -/* ============================================= */ -CKAN.View.ResourceAddUpload = Backbone.View.extend({ - tagName: 'div', - - initialize: function(options) { - this.el = $(this.el); - _.bindAll(this, 'render', 'updateFormData', 'setMessage', 'uploadFile'); - $(CKAN.Templates.resourceUpload).appendTo(this.el); - this.$messages = this.el.find('.alert'); - this.setupFileUpload(); - }, - - events: { - 'click input[type="submit"]': 'uploadFile' - }, - - setupFileUpload: function() { - var self = this; - this.el.find('.fileupload').fileupload({ - // needed because we are posting to remote url - forceIframeTransport: true, - replaceFileInput: false, - autoUpload: false, - fail: function(e, data) { - alert('Upload failed'); - }, - add: function(e,data) { - self.fileData = data; - self.fileUploadData = data; - self.key = self.makeUploadKey(data.files[0].name); - self.updateFormData(self.key); - }, - send: function(e, data) { - self.setMessage(CKAN.Strings.uploadingFile +' '); - }, - done: function(e, data) { - self.onUploadComplete(self.key); - } - }) - }, - - ISODateString: function(d) { - function pad(n) {return n<10 ? '0'+n : n}; - return d.getUTCFullYear()+'-' - + pad(d.getUTCMonth()+1)+'-' - + pad(d.getUTCDate())+'T' - + pad(d.getUTCHours())+':' - + pad(d.getUTCMinutes())+':' - + pad(d.getUTCSeconds()); - }, - - // Create an upload key/label for this file. - // - // Form: {current-date}/file-name. Do not just use the file name as this - // would lead to collisions. - // (Could add userid/username and/or a small random string to reduce - // collisions but chances seem very low already) - makeUploadKey: function(fileName) { - // google storage replaces ' ' with '+' which breaks things - // See http://trac.ckan.org/ticket/1518 for more. - var corrected = fileName.replace(/ /g, '-'); - // note that we put hh mm ss as hhmmss rather hh:mm:ss (former is 'basic - // format') - var now = new Date(); - // replace ':' with nothing - var str = this.ISODateString(now).replace(':', '').replace(':', ''); - return str + '/' + corrected; - }, - - updateFormData: function(key) { - var self = this; - self.setMessage(CKAN.Strings.checkingUploadPermissions + ' '); - self.el.find('.fileinfo').text(key); - $.ajax({ - url: CKAN.SITE_URL + '/api/storage/auth/form/' + key, - async: false, - success: function(data) { - self.el.find('form').attr('action', data.action); - _tmpl = ''; - var $hidden = $(self.el.find('form div.hidden-inputs')[0]); - $.each(data.fields, function(idx, item) { - $hidden.append($.tmpl(_tmpl, item)); - }); - self.hideMessage(); - }, - error: function(jqXHR, textStatus, errorThrown) { - // TODO: more graceful error handling (e.g. of 409) - self.setMessage(CKAN.Strings.failedToGetCredentialsForUpload, 'error'); - self.el.find('input[name="add-resource-upload"]').hide(); - } - }); - }, - - uploadFile: function(e) { - e.preventDefault(); - if (!this.fileData) { - alert('No file selected'); - return; - } - var jqXHR = this.fileData.submit(); - }, - - onUploadComplete: function(key) { - var self = this; - $.ajax({ - url: CKAN.SITE_URL + '/api/storage/metadata/' + self.key, - success: function(data) { - var name = data._label; - if (name && name.length > 0 && name[0] === '/') { - name = name.slice(1); - } - var d = new Date(data._last_modified); - var lastmod = self.ISODateString(d); - var newResource = new CKAN.Model.Resource({}); - newResource.set({ - url: data._location - , name: name - , size: data._content_length - , last_modified: lastmod - , format: data._format - , mimetype: data._format - , resource_type: 'file.upload' - , owner: data['uploaded-by'] - , hash: data._checksum - , cache_url: data._location - , cache_url_updated: lastmod - } - , { - error: function(model, error) { - var msg = 'Filed uploaded OK but error adding resource: ' + error + '.'; - msg += 'You may need to create a resource directly. Uploaded file at: ' + data._location; - self.setMessage(msg, 'error'); - } - } - ); - self.collection.add(newResource); - self.setMessage('File uploaded OK and resource added', 'success'); - } - }); - }, - - setMessage: function(msg, category) { - var category = category || 'alert-info'; - this.$messages.removeClass('alert-info alert-success alert-error'); - this.$messages.addClass(category); - this.$messages.show(); - this.$messages.html(msg); - }, - - hideMessage: function() { - this.$messages.hide('slow'); - } -}); - -/* ======================================== */ -/* == Backbone View: Add resource by URL == */ -/* ======================================== */ -CKAN.View.ResourceAddUrl = Backbone.View.extend({ - initialize: function(options) { - _.bindAll(this, 'clickSubmit'); - }, - - clickSubmit: function(e) { - e.preventDefault(); - - var self = this; - var newResource = new CKAN.Model.Resource({}); - - this.el.find('input[name="add-resource-save"]').addClass("disabled"); - var urlVal = this.el.find('input[name="add-resource-url"]').val(); - var qaEnabled = $.inArray('qa',CKAN.plugins)>=0; - - if(qaEnabled && this.options.mode=='file') { - $.ajax({ - url: CKAN.SITE_URL + '/qa/link_checker', - context: newResource, - data: {url: urlVal}, - dataType: 'json', - error: function(){ - newResource.set({url: urlVal, resource_type: 'file'}); - self.collection.add(newResource); - self.resetForm(); - }, - success: function(data){ - data = data[0]; - newResource.set({ - url: urlVal, - resource_type: 'file', - format: data.format, - size: data.size, - mimetype: data.mimetype, - last_modified: data.last_modified, - url_error: (data.url_errors || [""])[0] - }); - self.collection.add(newResource); - self.resetForm(); - } - }); - } - else { - newResource.set({url: urlVal, resource_type: this.options.mode}); - this.collection.add(newResource); - this.resetForm(); - } - }, - - resetForm: function() { - this.el.find('input[name="add-resource-save"]').removeClass("disabled"); - this.el.find('input[name="add-resource-url"]').val(''); - }, - - events: { - 'click .btn': 'clickSubmit' - } -}); - - - -/* ================ */ -/* == CKAN.Utils == */ -/* ================ */ -CKAN.Utils = function($, my) { - // Animate the appearance of an element by expanding its height - my.animateHeight = function(element, animTime) { - if (!animTime) { animTime = 350; } - element.show(); - var finalHeight = element.height(); - element.height(0); - element.animate({height:finalHeight}, animTime); - }; - - my.bindInputChanges = function(input, callback) { - input.keyup(callback); - input.keydown(callback); - input.keypress(callback); - input.change(callback); - }; - - my.setupDatasetDeleteButton = function() { - var select = $('select.dataset-delete'); - select.attr('disabled','disabled'); - select.css({opacity: 0.3}); - $('button.dataset-delete').click(function(e) { - select.removeAttr('disabled'); - select.fadeTo('fast',1.0); - $(e.target).css({opacity:0}); - $(e.target).attr('disabled','disabled'); - return false; - }); - }; - - // Attach dataset autocompletion to provided elements - // - // Requires: jquery-ui autocomplete - my.setupPackageAutocomplete = function(elements) { - elements.autocomplete({ - minLength: 0, - source: function(request, callback) { - var url = '/dataset/autocomplete?q=' + request.term; - $.ajax({ - url: url, - success: function(data) { - // atm is a string with items broken by \n and item = title (name)|name - var out = []; - var items = data.split('\n'); - $.each(items, function(idx, value) { - var _tmp = value.split('|'); - var _newItem = { - label: _tmp[0], - value: _tmp[1] - }; - out.push(_newItem); - }); - callback(out); - } - }); - } - , select: function(event, ui) { - var input_box = $(this); - input_box.val(''); - var old_name = input_box.attr('name'); - var field_name_regex = /^(\S+)__(\d+)__(\S+)$/; - var split = old_name.match(field_name_regex); - - var new_name = split[1] + '__' + (parseInt(split[2],10) + 1) + '__' + split[3]; - - input_box.attr('name', new_name); - input_box.attr('id', new_name); - - var $new = $('

    '); - $new.append($('').attr('name', old_name).val(ui.item.value)); - $new.append(' '); - $new.append(ui.item.label); - input_box.after($new); - - // prevent setting value in autocomplete box - return false; - } - }); - }; - - // Attach tag autocompletion to provided elements - // - // Requires: jquery-ui autocomplete - my.setupTagAutocomplete = function(elements) { - // don't navigate away from the field on tab when selecting an item - elements.bind( "keydown", - function( event ) { - if ( event.keyCode === $.ui.keyCode.TAB && $( this ).data( "autocomplete" ).menu.active ) { - event.preventDefault(); - } - } - ).autocomplete({ - minLength: 1, - source: function(request, callback) { - // here request.term is whole list of tags so need to get last - var _realTerm = $.trim(request.term.split(',').pop()); - var url = CKAN.SITE_URL + '/api/2/util/tag/autocomplete?incomplete=' + _realTerm; - $.getJSON(url, function(data) { - // data = { ResultSet: { Result: [ {Name: tag} ] } } (Why oh why?) - var tags = $.map(data.ResultSet.Result, function(value, idx) { - return value.Name; - }); - callback( $.ui.autocomplete.filter(tags, _realTerm) ); - }); - }, - focus: function() { - // prevent value inserted on focus - return false; - }, - select: function( event, ui ) { - var terms = this.value.split(','); - // remove the current input - terms.pop(); - // add the selected item - terms.push( " "+ui.item.value ); - // add placeholder to get the comma-and-space at the end - terms.push( " " ); - this.value = terms.join( "," ); - return false; - } - }); - }; - - // Attach tag autocompletion to provided elements - // - // Requires: jquery-ui autocomplete - my.setupFormatAutocomplete = function(elements) { - elements.autocomplete({ - minLength: 1, - source: function(request, callback) { - var url = CKAN.SITE_URL + '/api/2/util/resource/format_autocomplete?incomplete=' + request.term; - $.getJSON(url, function(data) { - // data = { ResultSet: { Result: [ {Name: tag} ] } } (Why oh why?) - var formats = $.map(data.ResultSet.Result, function(value, idx) { - return value.Format; - }); - callback(formats); - }); - } - }); - }; - - my.setupOrganizationUserAutocomplete = function(elements) { - elements.autocomplete({ - minLength: 2, - source: function(request, callback) { - var url = '/api/2/util/user/autocomplete?q=' + request.term; - $.getJSON(url, function(data) { - $.each(data, function(idx, userobj) { - var label = userobj.name; - if (userobj.fullname) { - label += ' [' + userobj.fullname + ']'; - } - userobj.label = label; - userobj.value = userobj.name; - }); - callback(data); - }); - }, - select: function(event, ui) { - var input_box = $(this); - input_box.val(''); - var parent_dd = input_box.parent('dd'); - var old_name = input_box.attr('name'); - var field_name_regex = /^(\S+)__(\d+)__(\S+)$/; - var split = old_name.match(field_name_regex); - - var new_name = split[1] + '__' + (parseInt(split[2],10) + 1) + '__' + split[3]; - input_box.attr('name', new_name); - input_box.attr('id', new_name); - - parent_dd.before( - '' + - '' + - '
    ' + ui.item.label + '
    ' - ); - - return false; // to cancel the event ;) - } - }); - }; - - - // Attach user autocompletion to provided elements - // - // Requires: jquery-ui autocomplete - my.setupUserAutocomplete = function(elements) { - elements.autocomplete({ - minLength: 2, - source: function(request, callback) { - var url = CKAN.SITE_URL + '/api/2/util/user/autocomplete?q=' + request.term; - $.getJSON(url, function(data) { - $.each(data, function(idx, userobj) { - var label = userobj.name; - if (userobj.fullname) { - label += ' [' + userobj.fullname + ']'; - } - userobj.label = label; - userobj.value = userobj.name; - }); - callback(data); - }); - } - }); - }; - - - my.relatedSetup = function(form) { - $('[rel=popover]').popover(); - - function addAlert(msg) { - $('
    ').html(msg).hide().prependTo(form).fadeIn(); - } - - function relatedRequest(action, method, data) { - return $.ajax({ - type: method, - dataType: 'json', - contentType: 'application/json', - url: CKAN.SITE_URL + '/api/3/action/related_' + action, - data: data ? JSON.stringify(data) : undefined, - error: function(err, txt, w) { - // This needs to be far more informative. - addAlert('Error: Unable to ' + action + ' related item'); - } - }); - } - - // Center thumbnails vertically. - var relatedItems = $('.related-items'); - relatedItems.find('li').each(function () { - var item = $(this), description = item.find('.description'); - - function vertiallyAlign() { - var img = $(this), - height = img.height(), - parent = img.parent().height(), - top = (height - parent) / 2; - - if (parent < height) { - img.css('margin-top', -top); - } - } - - item.find('img').load(vertiallyAlign); - description.data('height', description.height()).truncate(); - }); - - relatedItems.on('mouseenter mouseleave', '.description.truncated', function (event) { - var isEnter = event.type === 'mouseenter' - description = $(this) - timer = description.data('hover-intent'); - - function update() { - var parent = description.parents('li:first'), - difference = description.data('height') - description.height(); - - description.truncate(isEnter ? 'expand' : 'collapse'); - parent.toggleClass('expanded-description', isEnter); - - // Adjust the bottom margin of the item relative to it's current value - // to allow the description to expand without breaking the grid. - parent.css('margin-bottom', isEnter ? '-=' + difference + 'px' : ''); - description.removeData('hover-intent'); - } - - if (!isEnter && timer) { - // User has moused out in the time set so cancel the action. - description.removeData('hover-intent'); - return clearTimeout(timer); - } else if (!isEnter && !timer) { - update(); - } else { - // Delay the hover action slightly to wait to see if the user mouses - // out again. This prevents unwanted actions. - description.data('hover-intent', setTimeout(update, 200)); - } - }); - - // Add a handler for the delete buttons. - relatedItems.on('click', '[data-action=delete]', function (event) { - var id = $(this).data('relatedId'); - relatedRequest('delete', 'POST', {id: id}).done(function () { - $('#related-item-' + id).remove(); - }); - event.preventDefault(); - }); - - $(form).submit(function (event) { - event.preventDefault(); - - // Validate the form - var form = $(this), data = {}; - jQuery.each(form.serializeArray(), function () { - data[this.name] = this.value; - }); - - form.find('.alert').remove(); - form.find('.error').removeClass('error'); - if (!data.title) { - addAlert('Missing field: A title is required'); - $('[name=title]').parent().addClass('error'); - return; - } - if (!data.url) { - addAlert('Missing field: A url is required'); - $('[name=url]').parent().addClass('error'); - return; - } - - relatedRequest('create', this.method, data).done(function () { - // TODO: Insert item dynamically. - window.location.reload(); - }); - }); - }; - - my.setupGroupAutocomplete = function(elements) { - elements.autocomplete({ - minLength: 2, - source: function(request, callback) { - var url = CKAN.SITE_URL + '/api/2/util/group/autocomplete?q=' + request.term; - $.getJSON(url, function(data) { - $.each(data, function(idx, userobj) { - var label = userobj.name; - userobj.label = label; - userobj.value = userobj.name; - }); - callback(data); - }); - } - }); - }; - - my.setupMarkdownEditor = function(markdownEditor) { - // Markdown editor hooks - markdownEditor.find('button, div.markdown-preview').live('click', function(e) { - e.preventDefault(); - var $target = $(e.target); - // Extract neighbouring elements - var markdownEditor=$target.closest('.markdown-editor'); - markdownEditor.find('button').removeClass('depressed'); - var textarea = markdownEditor.find('.markdown-input'); - var preview = markdownEditor.find('.markdown-preview'); - // Toggle the preview - if ($target.is('.js-markdown-preview')) { - $target.addClass('depressed'); - raw_markdown=textarea.val(); - preview.html(""+CKAN.Strings.loading+""); - $.post(CKAN.SITE_URL + "/api/util/markdown", { q: raw_markdown }, - function(data) { preview.html(data); } - ); - preview.width(textarea.width()); - preview.height(textarea.height()); - textarea.hide(); - preview.show(); - } else { - markdownEditor.find('.js-markdown-edit').addClass('depressed'); - textarea.show(); - preview.hide(); - textarea.focus(); - } - return false; - }); - }; - - // If notes field is more than 1 paragraph, just show the - // first paragraph with a 'Read more' link that will expand - // the div if clicked - my.setupNotesExtract = function() { - var notes = $('#content div.notes'); - var paragraphs = notes.find('#notes-extract > *'); - if (paragraphs.length===0) { - notes.hide(); - } - else if (paragraphs.length > 1) { - var remainder = notes.find('#notes-remainder'); - $.each(paragraphs,function(i,para) { - if (i > 0) { remainder.append($(para).remove()); } - }); - var finalHeight = remainder.height(); - remainder.height(0); - notes.find('#notes-toggle').show(); - notes.find('#notes-toggle button').click( - function(event){ - notes.find('#notes-toggle button').toggle(); - if ($(event.target).hasClass('more')) { - remainder.animate({'height':finalHeight}); - } - else { - remainder.animate({'height':0}); - } - return false; - } - ); - } - }; - - my.warnOnFormChanges = function() { - var boundToUnload = false; - return function($form) { - var flashWarning = function() { - if (boundToUnload) { return; } - boundToUnload = true; - // Bind to the window departure event - window.onbeforeunload = function () { - return CKAN.Strings.youHaveUnsavedChanges; - }; - }; - // Hook form modifications to flashWarning - $form.find('input,select').live('change', function(e) { - $target = $(e.target); - // Entering text in the 'add' box does not represent a change - if ($target.closest('.resource-add').length===0) { - flashWarning(); - } - }); - // Don't stop us leaving - $form.submit(function() { - window.onbeforeunload = null; - }); - // Calling functions might hook to flashWarning - return flashWarning; - }; - }(); - - my.countObject = function(obj) { - var count=0; - $.each(obj, function() { - count++; - }); - return count; - }; - - function followButtonClicked(event) { - var button = event.currentTarget; - if (button.id === 'user_follow_button') { - var object_type = 'user'; - } else if (button.id === 'dataset_follow_button') { - var object_type = 'dataset'; - } - else { - // This shouldn't happen. - return; - } - var object_id = button.getAttribute('data-obj-id'); - if (button.getAttribute('data-state') === "follow") { - if (object_type == 'user') { - var url = '/api/action/follow_user'; - } else if (object_type == 'dataset') { - var url = '/api/action/follow_dataset'; - } else { - // This shouldn't happen. - return; - } - var data = JSON.stringify({ - id: object_id - }); - var nextState = 'unfollow'; - var nextString = CKAN.Strings.unfollow; - } else if (button.getAttribute('data-state') === "unfollow") { - if (object_type == 'user') { - var url = '/api/action/unfollow_user'; - } else if (object_type == 'dataset') { - var url = '/api/action/unfollow_dataset'; - } else { - // This shouldn't happen. - return; - } - var data = JSON.stringify({ - id: object_id - }); - var nextState = 'follow'; - var nextString = CKAN.Strings.follow; - } - else { - // This shouldn't happen. - return; - } - $.ajax({ - contentType: 'application/json', - url: url, - data: data, - dataType: 'json', - processData: false, - type: 'POST', - success: function(data) { - button.setAttribute('data-state', nextState); - button.innerHTML = nextString; - } - }); - }; - - // This only needs to happen on dataset pages, but it doesn't seem to do - // any harm to call it anyway. - $('#user_follow_button').on('click', followButtonClicked); - $('#dataset_follow_button').on('click', followButtonClicked); - - return my; -}(jQuery, CKAN.Utils || {}); - - - -/* ==================== */ -/* == Data Previewer == */ -/* ==================== */ -CKAN.DataPreview = function ($, my) { - my.jsonpdataproxyUrl = 'http://jsonpdataproxy.appspot.com/'; - my.dialogId = 'ckanext-datapreview'; - my.$dialog = $('#' + my.dialogId); - - // **Public: Loads a data previewer for an embedded page** - // - // Uses the provided reclineState to restore the Dataset. Creates a single - // view for the Dataset (the one defined by reclineState.currentView). And - // then passes the constructed Dataset, the constructed View, and the - // reclineState into the DataExplorer constructor. - my.loadEmbeddedPreview = function(resourceData, reclineState) { - my.$dialog.html('

    Loading ...

    '); - - // Restore the Dataset from the given reclineState. - var datasetInfo = _.extend({ - url: reclineState.url, - backend: reclineState.backend - }, - reclineState.dataset - ); - var dataset = new recline.Model.Dataset(datasetInfo); - - // Only create the view defined in reclineState.currentView. - // TODO: tidy this up. - var views = null; - if (reclineState.currentView === 'grid') { - views = [ { - id: 'grid', - label: 'Grid', - view: new recline.View.SlickGrid({ - model: dataset, - state: reclineState['view-grid'] - }) - }]; - } else if (reclineState.currentView === 'graph') { - views = [ { - id: 'graph', - label: 'Graph', - view: new recline.View.Graph({ - model: dataset, - state: reclineState['view-graph'] - }) - }]; - } else if (reclineState.currentView === 'map') { - views = [ { - id: 'map', - label: 'Map', - view: new recline.View.Map({ - model: dataset, - state: reclineState['view-map'] - }) - }]; - } - - // Finally, construct the DataExplorer. Again, passing in the reclineState. - var dataExplorer = new recline.View.MultiView({ - el: my.$dialog, - model: dataset, - state: reclineState, - views: views - }); - - }; - - // **Public: Creates a link to the embeddable page. - // - // For a given DataExplorer state, this function constructs and returns the - // url to the embeddable view of the current dataexplorer state. - my.makeEmbedLink = function(explorerState) { - var state = explorerState.toJSON(); - state.state_version = 1; - - var queryString = '?'; - var items = []; - $.each(state, function(key, value) { - if (typeof(value) === 'object') { - value = JSON.stringify(value); - } - items.push(key + '=' + escape(value)); - }); - queryString += items.join('&'); - return embedPath + queryString; - }; - - // **Public: Loads a data preview** - // - // Fetches the preview data object from the link provided and loads the - // parsed data from the webstore displaying it in the most appropriate - // manner. - // - // link - Preview button. - // - // Returns nothing. - my.loadPreviewDialog = function(resourceData) { - my.$dialog.html('

    Loading ...

    '); - - function showError(msg){ - msg = msg || CKAN.Strings.errorLoadingPreview; - return $('#ckanext-datapreview') - .append('
    ') - .addClass('alert alert-error fade in') - .html(msg); - } - - function initializeDataExplorer(dataset) { - var views = [ - { - id: 'grid', - label: 'Grid', - view: new recline.View.SlickGrid({ - model: dataset - }) - }, - { - id: 'graph', - label: 'Graph', - view: new recline.View.Graph({ - model: dataset - }) - }, - { - id: 'map', - label: 'Map', - view: new recline.View.Map({ - model: dataset - }) - } - ]; - - var dataExplorer = new recline.View.MultiView({ - el: my.$dialog, - model: dataset, - views: views, - config: { - readOnly: true - } - }); - - // Hide the fields control by default - // (This should be done in recline!) - $('.menu-right a[data-action="fields"]').click(); - - // ----------------------------- - // Setup the Embed modal dialog. - // ----------------------------- - - // embedLink holds the url to the embeddable view of the current DataExplorer state. - var embedLink = $('.embedLink'); - - // embedIframeText contains the '', - { - link: link.replace(/"/g, '"'), - width: width, - height: height - })); - embedLink.attr('href', link); - } - - // Bind changes to the DataExplorer, or the two width and height inputs - // to re-calculate the url. - dataExplorer.state.bind('change', updateLink); - for (var i=0; i 1) { - resourceData.formatNormalized = ext[ext.length-1]; - } - } - - // Set recline CKAN backend API endpoint to right location (so it can locate - // CKAN DataStore) - recline.Backend.Ckan.API_ENDPOINT = CKAN.SITE_URL + '/api'; - - if (resourceData.datastore_active) { - resourceData.backend = 'ckan'; - var dataset = new recline.Model.Dataset(resourceData); - var errorMsg = CKAN.Strings.errorLoadingPreview + ': ' + CKAN.Strings.errorDataStore; - dataset.fetch() - .done(function(dataset){ - initializeDataExplorer(dataset); - }) - .fail(function(error){ - if (error.message) errorMsg += ' (' + error.message + ')'; - showError(errorMsg); - }); - - } - else if (resourceData.formatNormalized in {'csv': '', 'xls': '', 'tsv':''}) { - // set format as this is used by Recline in setting format for DataProxy - resourceData.format = resourceData.formatNormalized; - resourceData.backend = 'dataproxy'; - var dataset = new recline.Model.Dataset(resourceData); - var errorMsg = CKAN.Strings.errorLoadingPreview + ': ' +CKAN.Strings.errorDataProxy; - dataset.fetch() - .done(function(dataset){ - - dataset.bind('query:fail', function(error) { - $('#ckanext-datapreview .data-view-container').hide(); - $('#ckanext-datapreview .header').hide(); - $('.preview-header .btn').hide(); - }); - - initializeDataExplorer(dataset); - $('.recline-query-editor .text-query').hide(); - }) - .fail(function(error){ - if (error.message) errorMsg += ' (' + error.message + ')'; - showError(errorMsg); - }); - } - else if (resourceData.formatNormalized in { - 'rdf+xml': '', - 'owl+xml': '', - 'xml': '', - 'n3': '', - 'n-triples': '', - 'turtle': '', - 'plain': '', - 'atom': '', - 'tsv': '', - 'rss': '', - 'txt': '' - }) { - // HACK: treat as plain text / csv - // pass url to jsonpdataproxy so we can load remote data (and tell dataproxy to treat as csv!) - var _url = my.jsonpdataproxyUrl + '?type=csv&url=' + resourceData.url; - my.getResourceDataDirect(_url, function(data) { - my.showPlainTextData(data); - }); - } - else if (resourceData.formatNormalized in {'html':'', 'htm':''} - || resourceData.url.substring(0,23)=='http://docs.google.com/') { - // we displays a fullscreen dialog with the url in an iframe. - my.$dialog.empty(); - var el = $(''); - el.attr('src', resourceData.url); - el.attr('width', '100%'); - el.attr('height', '100%'); - my.$dialog.append(el); - } - // images - else if (resourceData.formatNormalized in {'png':'', 'jpg':'', 'gif':''} - || resourceData.resource_type=='image') { - // we displays a fullscreen dialog with the url in an iframe. - my.$dialog.empty(); - var el = $(''); - el.attr('src', resourceData.url); - el.css('max-width', '100%'); - el.css('border', 'solid 4px black'); - my.$dialog.append(el); - } - else { - // Cannot reliably preview this item - with no mimetype/format information, - // can't guarantee it's not a remote binary file such as an executable. - my.showError({ - title: CKAN.Strings.previewNotAvailableForDataType + resourceData.formatNormalized, - message: '' - }); - } - }; - - // Public: Requests the formatted resource data from the webstore and - // passes the data into the callback provided. - // - // preview - A preview object containing resource metadata. - // callback - A Function to call with the data when loaded. - // - // Returns nothing. - my.getResourceDataDirect = function(url, callback) { - // $.ajax() does not call the "error" callback for JSONP requests so we - // set a timeout to provide the callback with an error after x seconds. - var timeout = 5000; - var timer = setTimeout(function error() { - callback({ - error: { - title: 'Request Error', - message: 'Dataproxy server did not respond after ' + (timeout / 1000) + ' seconds' - } - }); - }, timeout); - - // have to set jsonp because webstore requires _callback but that breaks jsonpdataproxy - var jsonp = '_callback'; - if (url.indexOf('jsonpdataproxy') != -1) { - jsonp = 'callback'; - } - - // We need to provide the `cache: true` parameter to prevent jQuery appending - // a cache busting `={timestamp}` parameter to the query as the webstore - // currently cannot handle custom parameters. - $.ajax({ - url: url, - cache: true, - dataType: 'jsonp', - jsonp: jsonp, - success: function(data) { - clearTimeout(timer); - callback(data); - } - }); - }; - - // Public: Displays a String of data in a fullscreen dialog. - // - // data - An object of parsed CSV data returned by the webstore. - // - // Returns nothing. - my.showPlainTextData = function(data) { - if(data.error) { - my.showError(data.error); - } else { - var content = $('
    ');
    -      for (var i=0; i<%= title %>
    <%= message %>
    ', - error - ); - my.$dialog.html(_html); - }; - - my.normalizeFormat = function(format) { - var out = format.toLowerCase(); - out = out.split('/'); - out = out[out.length-1]; - return out; - }; - - my.normalizeUrl = function(url) { - if (url.indexOf('https') === 0) { - return 'http' + url.slice(5); - } else { - return url; - } - } - - // Public: Escapes HTML entities to prevent broken layout and XSS attacks - // when inserting user generated or external content. - // - // string - A String of HTML. - // - // Returns a String with HTML special characters converted to entities. - my.escapeHTML = function (string) { - return string.replace(/&(?!\w+;|#\d+;|#x[\da-f]+;)/gi, '&') - .replace(//g, '>') - .replace(/"/g, '"') - .replace(/'/g, ''') - .replace(/\//g,'/'); - }; - - - // Export the CKANEXT object onto the window. - $.extend(true, window, {CKANEXT: {}}); - CKANEXT.DATAPREVIEW = my; - return my; -}(jQuery, CKAN.DataPreview || {}); - diff --git a/ckan/public/scripts/dataexplorer/icon-sprite.png b/ckan/public/scripts/dataexplorer/icon-sprite.png deleted file mode 100644 index c0799191dac..00000000000 Binary files a/ckan/public/scripts/dataexplorer/icon-sprite.png and /dev/null differ diff --git a/ckan/public/scripts/dataexplorer/loading.gif b/ckan/public/scripts/dataexplorer/loading.gif deleted file mode 100644 index e14a0487dc6..00000000000 Binary files a/ckan/public/scripts/dataexplorer/loading.gif and /dev/null differ diff --git a/ckan/public/scripts/dataexplorer/table-view-template.js b/ckan/public/scripts/dataexplorer/table-view-template.js deleted file mode 100644 index 91a5cce6b40..00000000000 --- a/ckan/public/scripts/dataexplorer/table-view-template.js +++ /dev/null @@ -1,49 +0,0 @@ -DATAEXPLORER.TABLEVIEW.template.html = ' \ -
    \ -
    \ - \ - \ - \ - \ - \ - \ - \ - \ -
    \ -
    \ -
    \ -

    Help

    \ -

    To create a chart select a column (group) to use as the x-axis \ - then another column (Series A) to plot against it.

    \ -

    You can add add \ - additional series by clicking the "Add series" button

    \ -

    Please note you must be logged in to save charts.

    \ -
    \ -
    \ -
      \ -
    • \ - \ - \ -
    • \ -
    • \ - \ - \ -
    • \ -
    • \ - \ - \ -
    • \ -
    \ -
    \ - \ -
    \ -
    \ - \ - \ -
    \ -
    \ -
    \ -
    \ -
    \ -
    \ -'; diff --git a/ckan/public/scripts/dataexplorer/table-view.css b/ckan/public/scripts/dataexplorer/table-view.css deleted file mode 100644 index 2f89967a076..00000000000 --- a/ckan/public/scripts/dataexplorer/table-view.css +++ /dev/null @@ -1,247 +0,0 @@ -#dataexplorer-tableview-dialog table td { - background: #fff; - border: 1px solid #eee; - padding: 6px; - color: #555; -} - -#dataexplorer-tableview-dialog table thead td { - background: #444; - color: #fff; - border-color: #444; - border-bottom: none; -} - -.dataexplorer-tableview-viewer { - position: relative; - height: 100%; - overflow: hidden; -} - -.dataexplorer-tableview-nav { - list-style-type: none; - margin: 0; - padding: 0; - height: 30px; -} - -.dataexplorer-tableview-nav-toggle { - float: left; -} - -.dataexplorer-tableview-nav li { - float: left; -} - -#dataexplorer-tableview-nav-editor, -label[for=dataexplorer-tableview-nav-editor] { - float: right; -} - -.dataexplorer-tableview-grid { - border-left: 1px solid #ccc; -} - -.dataexplorer-tableview-graph { - z-index: 1; - background-color: #fff; - margin-right: 220px; -} - -.dataexplorer-tableview-editor { - z-index: 1; - background-color: #efefef; - width: 198px; - padding: 5px 10px; - border: 1px solid #ccc; - overflow: auto; - overflow-x: hidden; - float: right; -} - -.dataexplorer-tableview-editor ul { - list-style-type: none; - margin: 0; - padding: 0; - overflow: hidden; -} - -.dataexplorer-tableview-editor li { - margin-bottom: 10px; -} - -.dataexplorer-tableview-editor .dataexplorer-tableview-editor-group { - padding-bottom: 10px; - margin-bottom: 10px; - border-bottom: 1px solid #ddd; -} - -.dataexplorer-tableview-editor label { - display: block; - font-weight: bold; - color: #555; - line-height: 1.4; -} - -.dataexplorer-tableview-editor label a { - float: right; - font-size: 11px; - color: #999; - font-weight: normal; -} - -.dataexplorer-tableview-editor select { - width: 100%; -} - -.dataexplorer-tableview-editor button { - float: right; -} - -.dataexplorer-tableview-editor-buttons { - clear: right; - overflow: hidden; -} - -.dataexplorer-tableview-editor-submit { - margin-top: 10px; - padding-top: 10px; - border-top: 1px solid #ddd; -} - -.dataexplorer-tableview-editor-info { - border-bottom: 1px solid #ddd; - margin-bottom: 10px; -} - -.dataexplorer-tableview-editor-info h1, -.dataexplorer-tableview-editor-info p { - font-size: 12px; - margin: 0 0 10px; - color: #555; -} - -.dataexplorer-tableview-editor-info h1 { - line-height: 16px; - cursor: pointer; - font-family: sans-serif; - font-size: 13px; - font-weight: bold; - margin: 0 0 4px; -} - -.dataexplorer-tableview-editor-info h1 span { - position: relative; - top: 1px; - display: inline-block; - width: 12px; - height: 12px; - background: url(jquery-ui/css/ckan/images/ui-icons_444444_256x240.png) no-repeat -68px -17px; -} - -.dataexplorer-tableview-editor-hide-info h1 span { - background-position: -36px -18px; -} - -.dataexplorer-tableview-editor-hide-info p { - display: none; -} - -.dataexplorer-tableview-hide-editor .dataexplorer-tableview-editor { - display: none; -} - -.dataexplorer-tableview-hide-editor .dataexplorer-tableview-panel { - right: 0; -} - -/* Style the preview buttons */ -.preview { - width: 65px; -} - -.preview .resource-preview-button { - border: 1px solid #eaeaea; - color: #444; - padding: 3px 6px 2px 21px; - font-size: 12px; - font-weight: bold; - background: #fff url(./icon-sprite.png) no-repeat 5px 6px; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - -ms-border-radius: 4px; - -o-border-radius: 4px; - border-radius: 4px; - display: block; - margin: 0 -5px; -} - -.preview .resource-preview-button:hover { - color: #000; - text-decoration: none; - border-color: #aaa; - background-color: #fafafa; - background-position: 5px -24px; -} - -.preview .resource-preview-button:active { - color: #b22; - border-color: #b22; - background-position: 5px -54px; -} - -.preview .resource-preview-chart { - background-position: 5px -83px; -} - -.preview .resource-preview-chart:hover { - background-position: 5px -113px; -} - -.preview .resource-preview-chart:active { - background-position: 5px -143px; -} - -.preview .resource-preview-loading, -.preview .resource-preview-loading:hover, -.preview .resource-preview-loading:active { - color: #aaa; - border: 1px solid #eaeaea; - background-image: url(./loading.gif); - background-position: 3px 5px; - cursor: default; -} - -/* Reduce the default size of the alert dialog */ -.ui-dialog .ui-button-text-only .ui-button-text { - padding: 3px 16px 1px; -} - -/* Extend the resize handle into the adjacent column */ -.slick-resizable-handle { - width: 12px; - right: -6px; -} - -/* Fix to crop the text correctly */ -.slick-header-wrapper { - overflow: hidden; - display: inline-block; - width: 100%; - text-overflow: ellipsis; -} - -.slick-columnpicker { - border-color: #888; - z-index: 99999!important; -} - -.slick-columnpicker label, -.slick-columnpicker input { - cursor: pointer; -} - -.dataexplorer-tableview-graph .legend table { - width: auto; -} - diff --git a/ckan/public/scripts/dataexplorer/table-view.js b/ckan/public/scripts/dataexplorer/table-view.js deleted file mode 100644 index dc70b0400fd..00000000000 --- a/ckan/public/scripts/dataexplorer/table-view.js +++ /dev/null @@ -1,177 +0,0 @@ -(function ($) { - var dp = {}; - - // Set up in DOM ready. - dp.$dialog = null; - - // Time to wait for a JSONP request to timeout. - dp.timeout = 5000; - - // Template url. The html property is populated from data-preview-templates.js - dp.template = { - html: '' - }; - - // Public: Sets up the dialog for displaying a full screen of data. - // - // dialogTitle - title for dialog window. - // - // Returns nothing. - // - dp.setupFullscreenDialog = function (dialogTitle) { - var dialog = dp.$dialog; - dialog.empty(); - } - - // Public: Displays a smaller alert style dialog with an error message. - // - // error - An error object to display. - // - // Returns nothing. - // - dp.showError = function (error) { - var _html = '

    ' + $.trim(error.title) + '
    ' + $.trim(error.message) + '

    '; - dp.$dialog.html(_html); - }; - - // Public: Displays the datapreview UI in a fullscreen dialog. - // - // This method also parses the data returned by the webstore for use in - // the data preview UI. - // - // data - An object of parsed CSV data returned by the webstore. - // - // Returns nothing. - // - dp.showData = function(data) { - dp.setupFullscreenDialog(); - - if(data.error) { - return dp.showError(data.error); - } - var tabular = dp.convertData(data); - - // dp.loadTableView(tabular.columns, tabular.data); - var columns = tabular.columns; - var data = tabular.data; - - var element = $(dp.template.html).appendTo(dp.$dialog); - // set plot height explicitly or flot is not happy - // also for grid - var height = $(window).height(); - // $('.dataexplorer-tableview-viewer').height(height); - $('.dataexplorer-tableview-grid').height(height); - $('.dataexplorer-tableview-graph').height(height); - var viewer = new dp.createTableView(element, columns, data); - - // Load chart data from external source - // TODO: reinstate - // this used to load chart info from related CKAN dataset - viewer.editor.loading(); - viewer.editor.loading(false).disableSave(); - - // Save chart data to the client provided callback - // TODO: implement - viewer.editor.bind('save', function (chart) { - viewer.editor.saving(); - viewer.editor.saving(false); - }); - }; - - // **Public: parse data from webstore or other source into form for data - // preview UI** - // - // :param data: An object of parsed CSV data returned by the webstore. - // - // :return: parsed data. - dp.convertData = function(data) { - var tabular = { - columns: [], - data: [] - }; - isNumericRegex = (/^[-+]?[0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?$/); - - // two types of data: that from webstore and that from jsonpdataproxy - // if fields then from dataproxy - if (data.fields) { - tabular.columns = $.map(data.fields || [], function (column, i) { - return {id: 'header-' + i, name: column, field: 'column-' + i, sortable: true}; - }); - - tabular.data = $.map(data.data || [], function (row, id) { - var cells = {id: id}; - for (var i = 0, c = row.length; i < c; i++) { - var isNumeric = isNumericRegex.test(row[i]); - cells['column-' + i] = isNumeric ? parseFloat(row[i]) : row[i]; - } - return cells; - }); - } else { - tabular.columns = $.map(data.keys, function(key, idx) { - return {id: 'header-' + key, name: key, field: 'column-' + key, sortable: true}; - }); - tabular.data = $.map(data.data, function(row, id) { - var cells = {id: id}; - for(i in row) { - var val = row[i]; - var isNumeric = isNumericRegex.test(val); - cells['column-' + tabular.columns[i].name] = isNumeric ? parseFloat(val) : val; - } - return cells; - }); - } - return tabular; - }; - - // Public: Kickstarts the plugin. - // - // dialogId - The id of the dialog Element in the page. - // options - An object containing aditional options. - // timeout: Time in seconds to wait for a JSONP timeout. - // - // Returns nothing. - // - dp.initialize = function(dialogId, options) { - dp.$dialog = $('#' + dialogId); - options = options || {}; - - dp.timeout = options.timeout || dp.timeout; - - var _height = Math.round($(window).height() * 0.6); - - // Large stylable dialog for displaying data. - dp.dialogOptions = { - autoOpen: false, - // does not seem to work for width ... - position: ['center', 'center'], - buttons: [], - width: $(window).width() - 20, - height: $(window).height() - 20, - resize: 'auto', - modal: false, - draggable: true, - resizable: true - }; - - // Smaller alert style dialog for error messages. - dp.errorDialogOptions = { - title: 'Unable to Preview - Had an error from dataproxy', - position: ['center', 'center'], - buttons: [{ - text: "OK", - click: function () { $(this).dialog("close"); } - }], - width: 360, - height: 180, - resizable: false, - draggable: false, - modal: true, - position: 'fixed' - }; - }; - - // Export the DATAEXPLORER object onto the window. - $.extend(true, window, {DATAEXPLORER: {}}); - DATAEXPLORER.TABLEVIEW = dp; - -})(jQuery); diff --git a/ckan/public/scripts/dataexplorer/table-view.ui.js b/ckan/public/scripts/dataexplorer/table-view.ui.js deleted file mode 100644 index 1d0c540dff9..00000000000 --- a/ckan/public/scripts/dataexplorer/table-view.ui.js +++ /dev/null @@ -1,1154 +0,0 @@ -// This file contains all of the UI elements aside from the containing element -// (ie. lightbox) used to build the datapreview widget. The MainView should -// be initiated with an element containing the elements required by the -// subviews. -// -// Use TABLEVIEW.createTableView() to create new instances of MainView. -// -// Examples -// -// var $element = $(templateString); -// var datapreview = TABLEVIEW.createTableView($element); -// -// -(function ($, undefined) { - - var ui = {}; - - // Binds methods on an object to always be called with the object as the - // method context. - // - // context - An object with methods to bind. - // arguments* - Following arguments should be method names to bind. - // - // Examples - // - // var object = { - // method1: function () { - // return this; - // }, - // method2: function () {} - // }; - // - // bindAll(object, 'method1', 'method2'); - // - // object.method1.call(window) === object //=> true; - // - // Returns the context argument. - // - function bindAll(context) { - var args = [].slice.call(arguments, 0), i = 0, count = args.length; - for (; i < count; i += 1) { - context[args[i]] = $.proxy(context[args[i]], context); - } - return context; - } - - // Creates a new object that inherits from the proto argument. - // - // Source: http://github.com/aron/inheritance.js - // - // This function will use Object.create() if it exists otherwise falls back - // to using a dummy constructor function to create a new object instance. - // Unlike Object.create() this function will always return a new object even - // if a non object is provided as an argument. - // - // proto - An object to use for the new objects internal prototype. - // - // Examples - // - // var appleObject = {color: 'green'} - // var appleInstance = create(appleObject); - // - // appleInstance.hasOwnProperty('color'); //=> false - // appleInstance.color === appleObject.color; //=> true - // - // Returns a newly created object. - // - function create(proto) { - if (typeof proto !== 'object') { - return {}; - } - else if (Object.create) { - return Object.create(proto); - } - function DummyObject() {} - DummyObject.prototype = proto; - return new DummyObject(); - } - - // Public: Creates a new constructor function that inherits from a parent. - // - // Source: http://github.com/aron/inheritance.js - // - // Instance and static methods can also be provided as additional arguments. - // if the methods argument has a property called "constructor" this will be - // used as the constructor function. - // - // Static methods will also be copied over from the parent object. However - // these will not be inheritied prototypally as with the instance methods. - // - // parent - A constructor Function to inherit from. - // methods - An Object literal of instance methods that are added to the - // constructors prototype. - // properties - An Object literal of static/class methods to add to the - // constructor itself. - // - // Examples - // - // function MyObject() {}; - // - // var SubClass = inherit(MyObject, {method: function () {}}); - // var instance = new SubClass(); - // - // instance instanceof MyObject //=> true - // - // Returns the new constructor Function. - // - function inherit(parent, methods, properties) { - methods = methods || {}; - - var Child = methods.hasOwnProperty('constructor') ? - methods.constructor : inherit.constructor(parent); - - Child.prototype = create(parent.prototype); - Child.prototype.constructor = Child; - - delete methods.constructor; - $.extend(Child.prototype, methods, {__super__: parent.prototype}); - - return $.extend(Child, parent, properties); - } - - // Public: Base view object that other views should inherit from. - // - // A wrapper around a dom element (itself wrapped in jQuery). Provides useful - // features such as pub/sub methods, and show/hide toggling of the element. - // - // Implements Ben Allman's Tiny PubSub, https://gist.github.com/661855 - // - // element - A jQuery wrapper, DOM Element or selector String. - // - // Examples - // - // var myView = new View('my-element'); - // - // Returns a new View instance. - // - ui.View = inherit({}, { - constructor: function View(element) { - this.el = element instanceof $ ? element : $(element); - - // Use a custom empty jQuery wrapper rather than this.el to prevent - // browser events being triggered. - this.events = $({}); - }, - - // Public: Performs a jQuery lookup within the views element. - // - // selector - A selector String to query. - // - // Examples - // - // this.$('.some-child-class'); - // - // Returns a jQuery collection. - // - $: function (selector) { - return this.el.find(selector); - }, - - // Public: Registers a listener for a topic that will be called when the - // event is triggered. Optionally an Object of topic/callback pairs can - // be passed to the method. Built on top of the jQuery .bind() method - // so other features like namespaces can also be used. - // - // topic - Topic string to subscribe to. - // fn - Callback function to be called when the topic is triggered. - // - // Examples - // - // view.bind('my-event', onMyEvent); - // view.bind({ - // 'my-event', onMyEvent, - // 'my-other-events': onMyOtherEvent - // }); - // - // Returns itself for chaining. - // - bind: function (topic, fn) { - if (arguments.length === 1) { - for (var key in topic) { - if (topic.hasOwnProperty(key)) { - this.bind(key, topic[key]); - } - } - return this; - } - - function wrapper() { - return fn.apply(this, Array.prototype.slice.call(arguments, 1)); - } - wrapper.guid = fn.guid = fn.guid || ($.guid ? $.guid++ : $.event.guid++); - this.events.bind(topic, wrapper); - return this; - }, - - // Public: Unbinds a callback for a topic. - // - // Accepts the same arguments as jQuery's .unbind(). - // - // topic - The topic to unbind. - // fn - A specific function to unbind from the topic. - // - // Examples - // - // view.unbind('my-event'); - // - // Returns itself for chaining. - // - unbind: function () { - this.events.unbind.apply(this.events, arguments); - return this; - }, - - // Public: Triggers a topic providing an array of arguments to all listeners. - // - // topic - A topic to publish. - // args - An Array of arguments to pass into registered listeners. - // - // Examples - // - // view.trigger('my-event', [anArg, anotherArg]); - // - // Returns itself. - // - trigger: function () { - this.events.triggerHandler.apply(this.events, arguments); - return this; - }, - - // Public: Shows the element if hidden. - // - // Returns itself. - // - show: function () { - this.el.show(); - return this.trigger('show'); - }, - - // Public: Hides the element if shown. - // - // Returns itself. - // - hide: function () { - this.el.hide(); - return this.trigger('hide'); - } - }); - - // Public: Main view object for the data preview plugin. - // - // Contains the main interface elements and acts as a controller binding - // them together. - // - // element - The main DOM Element used for the plugin. - // columns - The columns array for the data rows formatted for SlickGrid. - // data - A data object formatted for use in SlickGrid. - // chart - A chart object to load. - // - // Examples - // - // new MainView($('.datapraview-wrapper'), columns, data); - // - // Returns a new instance of MainView. - // - ui.MainView = inherit(ui.View, { - constructor: function MainView(element, columns, data, chart) { - this.__super__.constructor.apply(this, arguments); - - bindAll(this, 'redraw', 'onNavChange', 'onNavToggleEditor', 'onEditorSubmit'); - - var view = this; - this.nav = new ui.NavigationView(this.$('.dataexplorer-tableview-nav')); - this.grid = new ui.GridView(this.$('.dataexplorer-tableview-grid'), columns, data); - this.chart = new ui.ChartView(this.$('.dataexplorer-tableview-graph'), columns, data); - this.editor = new ui.EditorView(this.$('.dataexplorer-tableview-editor'), columns, chart); - - this.nav.bind({ - 'change': this.onNavChange, - 'toggle-editor': this.onNavToggleEditor - }); - this.editor.bind({ - 'show hide': this.redraw, - 'submit': this.onEditorSubmit - }); - - this.$('.dataexplorer-tableview-editor-info h1').click(function () { - $(this).parent().toggleClass('dataexplorer-tableview-editor-hide-info'); - }); - - this.chart.hide(); - }, - - // Public: Redraws the both the grid and chart views. - // - // Useful if the viewport changes or is resized. - // - // Examples - // - // view.resize(); - // - // Returns itself. - // - redraw: function () { - this.chart.redraw(); - this.grid.redraw(); - return this; - }, - - // Public: Toggles the display of the grid and chart views. - // - // Used as a callback function for the NavigationView "change" event. - // - // selected - The name of the newly selected view. - // - // Returns nothing. - // - onNavChange: function (selected) { - var isGrid = selected === 'grid'; - this.grid[isGrid ? 'show' : 'hide'](); - this.chart[isGrid ? 'hide' : 'show'](); - }, - - // Public: Toggles the display of the editor panel. - // - // Used as a callback function for the NavigationView "toggle-editor" event. - // - // showEditor - True if the editor should be visible. - // - // Returns nothing. - // - onNavToggleEditor: function (showEditor) { - this.el.toggleClass('dataexplorer-tableview-hide-editor', !showEditor); - this.redraw(); - }, - - // Public: Updates the chart view when the editor is submitted. - // - // chart - The chart object to render. - // - // Returns nothing. - // - onEditorSubmit: function (chart) { - this.nav.toggle('chart'); - this.chart.update(chart); - } - }); - - // Public: Navigation element for switching between views. - // - // Handles the toggling of views within the plugin by firing events when - // buttons are clicked within the view. - // - // element - The Element to use as navigation. - // - // Examples - // - // var nav = new NavigationView($('.dataexplorer-tableview-nav')); - // - // // Recieve events when the navigation buttons are clicked. - // nav.bind('change', onNavigationChangeHandler); - // - // Returns a new instance of NavigationView. - // - ui.NavigationView = inherit(ui.View, { - constructor: function NavigationView(element) { - this.__super__.constructor.apply(this, arguments); - - bindAll(this, 'onEditorToggleChange', 'onPanelToggleChange'); - - this.panelButtons = this.$('.dataexplorer-tableview-nav-toggle').buttonset(); - this.panelButtons.change(this.onPanelToggleChange); - - this.editorButton = this.$('#dataexplorer-tableview-nav-editor').button(); - this.editorButton.change(this.onEditorToggleChange); - }, - - // Public: Toggles a navigation button. - // - // Triggers the "change" event with the panel name provided. - // - // panel - The name of a button to be selected. - // - // Examples - // - // nav.toggle("grid"); - // - // Returns itself. - // - toggle: function (panel) { - // Need to fire all these events just to get jQuery UI to change state. - this.$('input[value="' + panel + '"]').click().change().next().click(); - return this; - }, - - // Public: Triggers the "change" event when the navgation changes. - // - // Passes the name of the selected item into all callbacks. - // - // event - An event object. - // - // Returns nothing - // - onPanelToggleChange: function (event) { - this.trigger('change', [event.target.value]); - }, - - // Public: Triggers the "toggle-editor" event when the editor button is - // clicked. Passes true into callbacks if the button is active. - // - // event - An event object. - // - // Returns nothing - // - onEditorToggleChange: function (event) { - this.trigger('toggle-editor', [event.target.checked]); - } - }); - - // Public: Creates and manages a SlickGrid instance for displaying the - // resource data in a useful grid. - // - // SlickGrid documentation: http://github.com/mleibman/SlickGrid/wiki - // - // element - The Element to use as a container for the SlickGrid. - // columns - Column options formatted for use in the SlickGrid container. - // data - Data Object formatted for use in the SlickGrid. - // options - Additional instance and SlickGrid options. - // - // Examples - // - // var grid = new GridView($('.dataexplorer-tableview-grid'), columns, data); - // - // Returns a new instance of GridView. - // - ui.GridView = inherit(ui.View, { - constructor: function GridView(element, columns, data, options) { - this.__super__.constructor.apply(this, arguments); - - bindAll(this, '_onSort', 'redraw'); - - this.dirty = false; - this.columns = columns; - this.data = data; - this.grid = new Slick.Grid(element, data, columns, $.extend({ - enableColumnReorder: false, - forceFitColumns: true, - syncColumnCellResize: true, - enableCellRangeSelection: false - }, options)); - - this.grid.onSort = this._onSort; - - // In order to extend the resize handles across into the adjacent column - // we need to disable overflow hidden and increase each cells z-index. - // We then wrap the contents in order to reapply the overflow hidden. - this.$('.slick-header-column') - .wrapInner('
    ') - .css('overflow', 'visible') - .css('z-index', function (index) { - return columns.length - index; - }); - - new Slick.Controls.ColumnPicker(this.columns, this.grid); - }, - - // Public: Reveals the view. - // - // If the dirty property is true then it will redraw the grid. - // - // Examples - // - // grid.show(); - // - // Returns itself. - // - show: function () { - this.__super__.show.apply(this, arguments); - if (this.dirty) { - this.redraw(); - this.dirty = false; - } - return this; - }, - - // Public: Redraws the grid. - // - // The grid will only be drawn if the element is visible. If hidden the - // dirty property will be set to true and the grid redrawn the next time - // the view is shown. - // - // Examples - // - // grid.redraw(); - // - // Returns itself. - // - redraw: function () { - if (this.el.is(':visible')) { - this.grid.resizeCanvas(); - this.grid.autosizeColumns(); - } else { - this.dirty = true; - } - }, - - // Public: Sort callback for the SlickGrid grid. - // - // Called when the grids columns are re-ordered. Accepts the selected - // column and the direction and should sort the data property. - // - // column - The column object being sorted. - // sortAsc - True if the solumn should be sorted by ascending items. - // - // Returns nothing. - // - _onSort: function (column, sortAsc) { - this.data.sort(function (a, b) { - var x = a[column.field], - y = b[column.field]; - - if (x == y) { - return 0; - } - return (x > y ? 1 : -1) * (sortAsc ? 1 : -1); - }); - this.grid.invalidate(); - } - }); - - // Public: Creates a wrapper around a jQuery.Flot() chart. - // - // Currently a very basic implementation that accepts data prepared for the - // SlickGrid, ie columns and data objects and uses them to generate a canvas - // chart. - // - // Flot documentation: http://people.iola.dk/olau/flot/API.txt - // - // element - Element to use as a container for the Flot canvas. - // columns - Array of column data. - // data - Data Object. - // chart - Optional chart data to load. - // - // Examples - // - // new ChartView($('.dataexplorer-tableview-chart'), columns, data, { - // id: 'my-chart-id', // Any unique id for the chart used for storage. - // type: 'line', // ID of one of the ChartView.TYPES. - // groups: 'column-2', // The column to use as the x-axis. - // series: ['column-3', 'column-4'] // Columns to use as the series. - // }); - // - // Returns a new instance of ChartView. - // - ui.ChartView = inherit(ui.View, { - constructor: function ChartView(element, columns, data, chart) { - this.__super__.constructor.apply(this, arguments); - this.data = data; - this.columns = columns; - this.chart = chart; - this.createPlot((chart && chart.type) || 'line'); - this.draw(); - }, - - // Public: Creates a new Flot chart and assigns it to the plot property. - // - // typeId - The id String of the grid to create used to load chart - // specific options on creation. - // - // Examples - // - // chart.createPlot('line'); - // - // Returns itself. - // - createPlot: function (typeId) { - var type = ui.ChartView.findTypeById(typeId), - options = type && type.getOptions ? type.getOptions(this) : {}; - - this.plot = $.plot(this.el, this.createSeries(), options); - return this; - }, - - // Public: Creates the series/data Array required by jQuery.plot() - // - // Examples - // - // $.plot(editor.el, editor.createSeries(), options); - // - // Returns an Array containing points for each series in the chart. - // - createSeries: function () { - var series = [], view = this; - if (this.chart) { - $.each(this.chart.series, function (seriesIndex, field) { - var points = []; - $.each(view.data, function (index) { - var x = this[view.chart.groups], y = this[field]; - if (typeof x === 'string') { - x = index; - } - points.push([x, y]); - }); - series.push({data: points, label: view._getColumnName(field)}); - }); - } - return series; - }, - - // Public: Redraws the chart with regenerated series data. - // - // Usually .update() will be called instead. - // - // Returns itself. - // - draw: function () { - this.plot.setData(this.createSeries()); - return this.redraw(); - }, - - // Public: Updates the current plot with a new chart Object. - // - // chart - A chart Object usually provided by the EditorView. - // - // Examples - // - // editor.bind('submit', function (chart) { - // chart.update(chart); - // }); - // - // Returns itself. - // - update: function (chart) { - if (!this.chart || chart.type !== this.chart.type) { - this.createPlot(chart.type); - } - this.chart = chart; - this.draw(); - return this; - }, - - // Public: Redraws the current chart in the canvas. - // - // Used if the chart data has changed or the viewport has been resized. - // - // Examples - // - // $(window).resize(function () { - // chart.redraw(); - // }); - // - // Returns itself. - // - redraw: function () { - this.plot.resize(); - this.plot.setupGrid(); - this.plot.draw(); - return this; - }, - - // Public: Gets the human readable column name for the field id. - // - // field - A field id String used in the data object. - // - // Examples - // - // chart._getColumnName('column-1'); - // - // Returns the String column name. - // - _getColumnName: function (field) { - for (var i = 0, count = this.columns.length; i < count; i += 1) { - if (this.columns[i].field === field) { - return this.columns[i].name; - } - } - return name; - } - }, { - // Array of chart formatters. They require an id and name attribute and - // and optional getOptions() method. Used to generate different chart types. - // - // id - A unique id String for the chart type. - // name - A human readable name for the type. - // getOptions - Function that accepts an instance of ChartView and returns - // an options object suitable for use in $.plot(); - // - TYPES: [{ - id: 'line', - name: 'Line Chart' - }, { - id: 'bar', - name: 'Bar Chart (draft)', - getOptions: function (view) { - return { - series: { - lines: {show: false}, - bars: { - show: true, - barWidth: 1, - align: "left", - fill: true - } - }, - xaxis: { - tickSize: 1, - tickLength: 1, - tickFormatter: function (val) { - if (view.data[val]) { - return view.data[val][view.chart.groups]; - } - return ''; - } - } - }; - } - }], - - // Public: Helper method for findind a chart type by id key. - // - // id - The id key to search for in the ChartView.TYPES Array. - // - // Examples - // - // var type = ChartView.findTypeById('line'); - // - // Returns the type object or null if not found. - // - findTypeById: function (id) { - var filtered = $.grep(this.TYPES, function (type) { - return type.id === id; - }); - return filtered.length ? filtered[0] : null; - } - }); - - // Public: Creates a form for editing chart metadata. - // - // Publishes "submit" and "save" events providing a chart Obejct to all - // registered callbacks. - // - // element - The Element to use as the form wrapper. - // columns - Array of columns that are used by the data set. - // chart - Optional chart Object to display on load. - // - // Examples - // - // new EditorView($('.dataexplorer-tableview-editor'), columns, { - // id: 'my-chart-id', - // type: 'line', - // groups: 'column-2', - // series: ['column-3', 'column-4'] - // }); - // - // Returns a new instance of EditorView. - // - ui.EditorView = inherit(ui.View, { - constructor: function EditorView(element, columns, chart) { - this.__super__.constructor.apply(this, arguments); - - bindAll(this, 'onAdd', 'onRemove', 'onSubmit', 'onSave'); - - this.columns = columns; - this.type = this.$('.dataexplorer-tableview-editor-type select'); - this.groups = this.$('.dataexplorer-tableview-editor-group select'); - this.series = this.$('.dataexplorer-tableview-editor-series select'); - this.id = this.$('.dataexplorer-tableview-editor-id'); - - this.$('button').button(); - this.save = this.$('.dataexplorer-tableview-editor-save').click(this.onSave); - this.el.bind('submit', this.onSubmit); - this.el.delegate('a[href="#remove"]', 'click', this.onRemove); - this.el.delegate('select', 'change', this.onSubmit); - - this.$('.dataexplorer-tableview-editor-add').click(this.onAdd); - - this.setupTypeOptions().setupColumnOptions(); - - this.seriesClone = this.series.parent().clone(); - - if (chart) { - this.load(chart); - } - }, - - // Public: Fills the "type" select box with options. - // - // Returns itself. - // - setupTypeOptions: function () { - var types = {}; - // TODO: This shouldn't be referenced directly but passed in as an option. - $.each(ui.ChartView.TYPES, function () { - types[this.id] = this.name; - }); - - this.type.html(this._createOptions(types)); - return this; - }, - - // Public: Fills the groups and series select elements with options. - // - // Returns nothing. - // - setupColumnOptions: function () { - var options = {}, optionsString = ''; - $.each(this.columns, function (index, column) { - options[column.field] = column.name; - }); - optionsString = this._createOptions(options); - - this.groups.html(optionsString); - this.series.html(optionsString); - return this; - }, - - // Public: Adds a new empty series select box to the editor. - // - // All but the first select box will have a remove button that allows them - // to be removed. - // - // Examples - // - // editor.addSeries(); - // - // Returns itself. - // - addSeries: function () { - var element = this.seriesClone.clone(), - label = element.find('label'), - index = this.series.length; - - this.$('ul').append(element); - this.updateSeries(); - - label.append('Remove'); - label.find('span').text(String.fromCharCode(this.series.length + 64)); - - return this; - }, - - // Public: Removes a series list item from the editor. - // - // Also updates the labels of the remianing series elements. - // - // element - A jQuery wrapped list item Element to remove. - // - // Examples - // - // // Remove the third series element. - // editor.removeSeries(editor.series.eq(2).parent()); - // - // Returns itself. - // - removeSeries: function (element) { - element.remove(); - this.updateSeries(); - this.series.each(function (index) { - if (index > 0) { - var labelSpan = $(this).prev().find('span'); - labelSpan.text(String.fromCharCode(index + 65)); - } - }); - return this.submit(); - }, - - // Public: Resets the series property to reference the select elements. - // - // Returns itself. - // - updateSeries: function () { - this.series = this.$('.dataexplorer-tableview-editor-series select'); - return this; - }, - - // Public: Loads a chart into the editor. - // - // For an example of the chart object structure see the ChartView docs. - // - // chart - A chart Object to be loaded. - // - // Examples - // - // editor.load(chart); - // - // Returns itself. - // - load: function (chart) { - var editor = this; - this._selectOption(this.type, chart.type); - this._selectOption(this.groups, chart.groups); - - this.id.val(chart.id); - this.type.val(chart.type); - $.each(chart.series, function update(index, option) { - var element = editor.series.eq(index); - if (!element.length) { - editor.addSeries(); - return update(index, option); - } - editor._selectOption(element, option); - }); - - return this; - }, - - // Public: Submits the current form. - // - // Triggers the "submit" event providing a chart object to all listeners. - // - // Examples - // - // editor.bind("submit", chart.update); - // editor.submit(); - // - // Returns itself. - // - submit: function () { - return this._triggerChartData('submit'); - }, - - // Public: Toggles the loading state on the view. - // - // Freezes all interface elements and displays a loading message. - // - // show - If false disables the loading state. - // - // Examples - // - // // Set the state to loading. - // editor.loading(); - // - // // Disable the loading state. - // editor.loading(false); - // - // Returns itself. - // - loading: function (show) { - var action = show === false ? 'enable' : 'disable'; - - this.$('select').attr('disabled', show !== false); - this.save.button(action); - - this._updateSaveText(show === false ? null : 'Loading...'); - - return this; - }, - - // Public: Toggles the saving state on the view. - // - // show - If false disables the saving state. - // - // Examples - // - // // Set the state to saving. - // editor.saving(); - // - // // Disable the saving state. - // editor.saving(false); - // - // Returns itself. - // - saving: function (show) { - this.disableSave(show); - this._updateSaveText(show === false ? null : 'Saving...'); - return this; - }, - - // Public: Toggles the save button state between enabled/disabled. - // - // disable - If false enables the button. - // - // Returns itself. - // - disableSave: function (disable) { - this.save.button(disable === false ? 'enable' : 'disable'); - return this; - }, - - // Public: Event callback for the "Add series" button. - // - // event - A jQuery Event object. - // - // Examples - // - // $('button').click(event.onAdd); - // - // Returns nothing. - // - onAdd: function (event) { - event.preventDefault(); - this.addSeries(); - }, - - // Public: Event callback for the "Remove series" button. - // - // event - A jQuery Event object. - // - // Examples - // - // $('button').click(event.onRemove); - // - // Returns nothing. - // - onRemove: function (event) { - event.preventDefault(); - var element = $(event.target).parents('.dataexplorer-tableview-editor-series'); - this.removeSeries(element); - }, - - // Public: Event callback for the "Save" button. - // - // Triggers the "save" event passing a chart object to all registered - // callbacks. - // - // event - A jQuery Event object. - // - // Examples - // - // $('button.save').click(editor.onSave); - // - // Returns nothing. - // - onSave: function (event) { - event.preventDefault(); - this._triggerChartData('save'); - }, - - // Public: Event callback for the editor form. - // - // event - A jQuery Event object. - // - // Examples - // - // $('form.editor').submit(editor.onSubmit); - // - // Returns nothing. - // - onSubmit: function (event) { - event && event.preventDefault(); - this.submit(); - }, - - // Updates the text on the save button. - // - // If no text is provided reverts to the original button text. - // - // text - A text String to use in the button. - // - // Examples - // - // editor._updateSaveText('Now saving!'); - // - // Returns nothing. - // - _updateSaveText: function (text) { - var span = this.save.find('span'), - original = span.data('default'); - - if (!original) { - span.data('default', span.text()); - } - - span.text(text || original); - }, - - // Triggers an event on the editor and passes a chart object to callbacks. - // - // topic - Topic String for the event to fire. - // - // Examples - // - // editor.bind('save', function (chart) { - // // DO something with the chart. - // }); - // editor._triggerChartData('save'); - // - // Returns - // - _triggerChartData: function (topic) { - var series = this.series.map(function () { - return $(this).val(); - }); - - return this.trigger(topic, [{ - id: this.id.val(), - type: this.type.val(), - groups: this.groups.val(), - series: $.makeArray(series) - }]); - }, - - // Finds an option by "value" in a select element and makes it selected. - // - // select - A jQuery wrapped select Element. - // option - The String value of the options "value" attribute. - // - // Examples - // - // // For - // editor._selectOption(mySelect, 'bill'); - // - // Returns nothing. - // - _selectOption: function (select, option) { - select.find('[value="' + option + '"]').attr('selected', 'selected'); - }, - - // Creates a String of option elements. - // - // options - An object of value/text pairs. - // - // Examples - // - // var html = editor._createOptions({ - // value1: 'Value 1', - // value2: 'Value 2' - // }); - // - // Returns a String of HTML. - // - _createOptions: function (options) { - var html = []; - $.each(options, function (value, text) { - html.push(''); - }); - return html.join(''); - } - }); - - // Exports the UI and createTableView() methods onto the plugin object. - $.extend(true, this, {DATAEXPLORER: {TABLEVIEW: { - - UI: ui, - - // Public: Helper method for creating a new view. - // - // element - The main DOM Element used for the plugin. - // columns - The columns array for the data rows formatted for SlickGrid. - // data - A data object formatted for use in SlickGrid. - // chart - An optional chart object to load. - // - // Examples - // - // TABLEVIEW.createTableView($('my-view'), columns, data); - // - // Returns a new instance of MainView. - // - createTableView: function (element, columns, data, chart) { - return new ui.MainView(element, columns, data, chart); - } - }}}); - -})(jQuery); diff --git a/ckan/public/scripts/outside.js b/ckan/public/scripts/outside.js deleted file mode 100644 index 12f3ce33058..00000000000 --- a/ckan/public/scripts/outside.js +++ /dev/null @@ -1,66 +0,0 @@ -var CKAN = CKAN || {}; - -(function ($) { - $(document).ready(function () { - CKAN.DataPreviewIframe.attachToIframe(); - }); -}(jQuery)); - -/* =========================== */ -/* == Data Previewer Iframe == */ -/* =========================== */ -CKAN.DataPreviewIframe = function ($, my) { - // ** Public: resizes a data preview iframe to match the content - var resize = function(iframe) { - var self = iframe; - offset = 0; - var height = iframe.contents().height(); - iframe.animate({height: height+offset}, height); - }; - my.$iframes = $('.ckanext-datapreview-iframe'); - - // **Public: Attaches lad listener to preview iframes** - // - // Returns nothing. - my.attachToIframe = function() { - $.each(my.$iframes, function(index, iframe) { - var recalibrate = function() { - resizeTimer = setTimeout(function() { - resize(iframe); - }, 100); - }; - iframe = $(iframe); - iframe.load(function() { - loc = window.location.protocol+'//'+window.location.host; - if (iframe.attr('src').substring(0, loc.length) === loc) { - recalibrate(); - iframe.contents().find('body').resize(function() { - recalibrate(); - }); - } - else { - iframe.animate({height: 600}, 600); - } - }); - - var resizeTimer; - // firefox caches iframes so force it to get fresh content - if(/#$/.test(this.src)){ - this.src = this.src.substr(0, this.src.length - 1); - } else { - this.src = this.src + '#'; - } - }); - }; - - - // ** Public: connect to child iframe context - my.getChild = function(iframe) { - return $(iframe)[0].contentWindow; - }; - - // Export the CKANEXT object onto the window. - $.extend(true, window, {CKANEXT: {}}); - CKANEXT.DATAPREVIEW = my; - return my; -}(jQuery, CKAN.DataPreview || {}); diff --git a/ckan/public/scripts/templates.js b/ckan/public/scripts/templates.js deleted file mode 100644 index 8256567345c..00000000000 --- a/ckan/public/scripts/templates.js +++ /dev/null @@ -1,158 +0,0 @@ -var CKAN = CKAN || {}; -CKAN.Templates = CKAN.Templates || {}; - -CKAN.Templates.resourceUpload = ' \ -
    \ -
    \ - \ -
    \ - \ -
    \ -
    \ - \ -
    \ - \ -
    '; - - - -CKAN.Templates.resourceEntry = ' \ -
  • \ - \ - \ - ${resource.name}\ - \ -
  • '; - -var youCanUseMarkdownString = CKAN.Strings.youCanUseMarkdown.replace('%a', '').replace('%b', ''); -var datesAreInISOString = CKAN.Strings.datesAreInISO.replace('%a', '').replace('%b', '').replace('%c', '').replace('%d', ''); - -// TODO it would be nice to unify this with the markdown editor specified in helpers.py -CKAN.Templates.resourceDetails = ' \ -