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 " "
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 " "
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 " "
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.
"
@@ -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 " "
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 " "
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.
"
@@ -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 " "
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.
"
@@ -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 " "
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 +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 " "
-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 "Παρακαλούμε ενημερώστε το προφίλ σας a> και προσθέστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας."
-#: 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 "Παρακαλούμε ενημερώστε το προφίλ σας a> και προσθέστε το ονοματεπώνυμό σας."
-
-#: 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 " Σχετικά Μέσα είναι κάθε εφαρμογή, άρθρο, απεικόνιση ή ιδέα σχετική με αυτό το σύνολο δεδομένων. p> Για παράδειγμα, θα μπορούσε να είναι μια προσαρμοσμένη απεικόνιση, ένα γράφημα, μια εφαρμογή που χρησιμοποιεί το σύνολο ή μέρος των δεδομένων ή ακόμα και μια είδηση που αναφέρεται σε αυτό το σύνολο δεδομένων. p>"
-
-#: 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 " "
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 " "
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.
"
@@ -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 " "
-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 " "
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.
"
@@ -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 " "
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.
"
@@ -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 " "
-msgstr ""
+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.
"
-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 " "
-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 " "
-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 " "
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 " "
-msgstr " "
+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.
"
-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 i> 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 i> 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 " "
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 "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 " "
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 " "
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 +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 " "
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 " "
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 " "
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 +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 " "
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.
"
@@ -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 " "
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 " "
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 " "
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 " "
-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 " "
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 +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 " "
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 " "
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 " "
-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 " "
-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 ""
"